| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Gimp-Forum.net has not be...
Forum: Gimp-Forum.net
Last Post: Tas_mania
19 minutes ago
» Replies: 4
» Views: 575
|
Thank you for Gimp
Forum: Watercooler
Last Post: denzjos
1 hour ago
» Replies: 1
» Views: 1,326
|
Beginner question - setti...
Forum: General questions
Last Post: rich2005
Yesterday, 06:17 PM
» Replies: 3
» Views: 567
|
Rotating a layer against ...
Forum: General questions
Last Post: rich2005
Yesterday, 09:58 AM
» Replies: 3
» Views: 657
|
Extracting a "Dotted Netw...
Forum: General questions
Last Post: rich2005
04-20-2026, 07:16 PM
» Replies: 11
» Views: 972
|
How to correct Gimp save ...
Forum: General questions
Last Post: Christophe.Maso@gmail.com
04-20-2026, 06:35 PM
» Replies: 2
» Views: 720
|
Batcher and simple animat...
Forum: Tutorials and tips
Last Post: MrsP-from-C
04-19-2026, 07:16 AM
» Replies: 2
» Views: 999
|
Background - Foreground -...
Forum: General questions
Last Post: saint_m
04-16-2026, 04:28 PM
» Replies: 12
» Views: 1,607
|
2.10.38---Dock sizes and ...
Forum: Windows
Last Post: IndiePubber
04-15-2026, 06:21 PM
» Replies: 2
» Views: 1,014
|
Scanner menu missing
Forum: General questions
Last Post: CmykStudent_
04-15-2026, 11:26 AM
» Replies: 9
» Views: 1,321
|
|
|
| Burn tool Glitch with layers |
|
Posted by: GorFrag - 10-09-2018, 11:13 PM - Forum: General questions
- Replies (6)
|
 |
When I start an image I can use the Dodge/Burn tool as normal. However once I use a layer of any sort, even once I merge all layers the Burn tool now can only give me hard edges.
I can find no way to reset that.
I run it on a Asus windows ten rig.
|
|
|
| Newbie Layer Question |
|
Posted by: hrdwirk1 - 10-08-2018, 06:14 PM - Forum: General questions
- Replies (1)
|
 |
I am trying to change the color of a pair of white shoes in GIMP before I actually do it in real life.
I have looked at several videos on youtube and searched this forum as well and haventh been able to find my answer.
I am trying to change the color by using the new layer option. However when I got to color the section of the shoe it doesnt show it applying. I can see what I have done by looking at the new layer with the checkered background but the color isnt applying to the actual image.
Any help would be appreciated.
|
|
|
| Can I create a selection from the lone object on a layer? |
|
Posted by: Ritergeek - 10-08-2018, 02:22 AM - Forum: General questions
- Replies (3)
|
 |
I have a single object with multiple colors and a complex shape isolated on a layer with no background or other elements. How can I transform this layer into a selection without going through the tedious process of using the imprecise scissors or foreground select tools? I've spent nearly twenty minutes trying to word a search query to find the answer with no luck. Is it even possible?
|
|
|
| gimp.image_list() vs pdb.gimp_image_list() |
|
Posted by: DebianFanatic - 10-07-2018, 09:57 PM - Forum: Scripting questions
- Replies (7)
|
 |
➤> pdb.gimp_image_list()
(1, (1,))
➤> gimp.image_list()
[<gimp.Image '[KentsHouse-FamInDen] (imported)'>]
Obviously two different commands (procedures? attributes? properties?), despite their similar names.
The Python Console "Browse" button shows info about pdb.gimp_image_list(), but seems to know nothing about the other. Where is this other command coming from (if not GIMP's internal Procedure DataBase), and how would I know about it if I hadn't just stumbled onto it?
--
Kent
|
|
|
| Is there a function or filter |
|
Posted by: trandoductin - 10-07-2018, 02:40 PM - Forum: General questions
- Replies (2)
|
 |
That will help me pixelize an image with varying sizes dependent on similar colors.
Like pixelize just does constant size.
I want it to get varying possible pixelize dependent on similar colors for example if the area of similar colors is larger it'll return the larger size that i can pixelize on and if an area of similar colors is smaller it'll return the smaller size that i can pixelize on?
I hope I explained that right.
|
|
|
| Python-Fu - pdb.query ; how to filter to readable output |
|
Posted by: DebianFanatic - 10-06-2018, 11:23 PM - Forum: Scripting questions
- Replies (5)
|
 |
Caveat: I'm new to Python & Object-Oriented Programming (and not particularly skilled with GIMP)
I'm trying to learn a little about automating GIMP, and found this tutorial:
https://www.gimp.org/tutorials/Automate_Editing_in_GIMP
I was able to do the first little example, finding the python console within GIMP, and learned quite a bit, enough to do some experimenting on my own.
One thing I wanted to experiment with was setting the grid color, and I guessed at several properties ("attributes"?) of the object (?) "pdb" (which I googled to discover was GIMP's "procedural database", which I take to mean the database of scriptable procedures within GIMP), but none of my attempts (like "pdb.gimp_image_grid_set_fgcolor()" or pdb.gimp_image_grid_set_foreground_color()", etc) worked. So I figured there must be a way to list all the attributes ("properties"?) of an object, and after quite a bit of googling, came up with two [relatively easy, one-liner) possibilities:
dir(pdb)
and
pdb.query()
(I see they produce different info, so I'm unclear as to which, if either, will be my better option, but that's a question for later).
The problem is that both commands give too much information to look through efficiently.
So I did yet more googling, and came up with:
re.findall("grid",str(pdb.query()))
hoping to just get the items mentioning "grid", but all that returned was a bunch of "grid"s.
In bash, I'd try something like "pdb.query() | grep grid" (which might or might not give me usable results).
So, my questions:
1. Which is better and why, pdb.query() or dir(pdb), or are neither of these suitable for learning about the attributes/properties of an object?
2. Is there a better way of learning about the properties/attributes of an object (to figure out what attribute/property to tinker with to change the color of the grid a la the tutorial mentioned above?
3. How do I list all the attributes/properties of an object that has a lot of these attributes/properties and filter the results or present them in a way that is digestible, particularly as it relates to the output of "pdb.query" or "dir(pdb)"?
Thanks!
--
Kent
|
|
|
| macros vs script-fu vs python-fu |
|
Posted by: DebianFanatic - 10-06-2018, 08:22 PM - Forum: Scripting questions
- Replies (5)
|
 |
Absolute Beginner here, to python & to scripting/macroing/extending GIMP.
I had a vague remembrance that GIMP is "scriptable", and the term "macro" came to my mind.
After considerable googling, I've about decided that "macro" is an inaccurate term, and "extending GIMP" is the correct terminology (although I tend to think of "extending" as adding new features more then simply automating the features that already exist).
I've also about decided that "script-fu" and "python-fu" are "the" automating options; I'm unsure if either is built-in, but I didn't notice these options in my Gimp's "Filter" menu until I did, on my Debian box, "aptitude install gimp-python". Not saying they weren't there; I just didn't know to look for them until after I added gimp-python to my computer.
So my first question (with more to come under different posts): Am I getting close to understanding the terminology/concepts for automating steps in GIMP? To give you an idea of where I'm trying to head, I just added a bunch of numbered labels to 28 people in a photo:
![[Image: 0?ui=2&ik=02ec0251fe&attid=0.2&permmsgid..._jmw7lnq11]](https://mail.google.com/mail/u/0?ui=2&ik=02ec0251fe&attid=0.2&permmsgid=msg-a:r8476813384032369947&th=1664502915a05655&view=fimg&sz=s0-l75-ft&attbid=ANGjdJ9jhPuL2hYzzYQFXlfHE4aBSRL5yDEjyExkZp4huF0PqaUdwT3DLnwM_pY_DfSmjwvwikiPq1TR1isqijXUabTqMw_zhOw-Jnukr5h7bMhvPWrzkTySeCrv6l8&disp=emb&realattid=ii_jmw7lnq11)
I did this manually by creating 28 layer groups, one for each label, and then on one layer drawing an ellipse and bucket-filling it, and then creating a text layer centered on the white ellipse. Afterward I realized that this repetitive process could probably be automated. My next questions will tackle various aspects of this task, but first I just want to make sure I'm understanding the concepts/terminology.
Thanks!
--
Kent
|
|
|
|