Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
How to make a watermark o...
Forum: General questions
Last Post: kyolim
9 hours ago
» Replies: 5
» Views: 13,933
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
Yesterday, 06:06 PM
» Replies: 1
» Views: 292
|
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
Yesterday, 05:20 PM
» Replies: 2
» Views: 209
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 07:53 AM
» Replies: 15
» Views: 11,820
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
Yesterday, 07:32 AM
» Replies: 24
» Views: 21,675
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 587
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 246
|
How do you make text circ...
Forum: General questions
Last Post: rich2005
09-12-2025, 07:18 AM
» Replies: 12
» Views: 3,310
|
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 2,984
|
Trouble changing backgrou...
Forum: General questions
Last Post: tomatoSauce23
09-11-2025, 12:50 PM
» Replies: 6
» Views: 1,492
|
|
|
Where are 2.10 thumbnails? |
Posted by: gimp_thumbnails - 03-20-2020, 10:56 AM - Forum: General questions
- Replies (3)
|
 |
Hello everybody,
I recently switched from 2.8 to 2.10 (Windows 8.1). Everything works just fine but :
- In 2.8, all the thumbnails generated by GIMP were stored in C:/Users/MyName/.thumbnails/normal
I used to manually get rid of the many useless thumbnails from time to time.
- But in 2.10.18, the thumbnails seem to be stored somewhere else, and I can't find where.
Can anybody help me ?
Thanks in advance.
|
|
|
Make grid look like Inkscape |
Posted by: meetdilip - 03-20-2020, 07:26 AM - Forum: General questions
- Replies (5)
|
 |
I like Inkscape grid colours. They look very clean and crisp. When I tired GIMP the grid colours were as if it had a tone of sepia to it.
It will great if anyone can teach me how to make GIMP grid as in Inkscape. Thanks.
|
|
|
Retain RGB values on 0 alpha pixels? |
Posted by: ReeceGames - 03-16-2020, 12:06 AM - Forum: General questions
- Replies (1)
|
 |
I am making a Minecraft texture pack for bedrock edition, and the grass overlay system puts the overlay color on top of the RGB value of a given pixel, with the transparency of that pixels alpha channel. What this means is, to make a proper texture, you need to put the dirt part of the grass with an alpha of 0.
Unfortunately GIMP replaces the RGB values of a 0 alpha pixel with black.
Does anyone have a way to make a completely transparent pixel that still has a chosen RGB value?
|
|
|
PyGimp;Change color;Bucket fill selected |
Posted by: FloppaDisk - 03-15-2020, 07:08 AM - Forum: Scripting questions
- Replies (2)
|
 |
Hi. Trying to change the color of the bucket fill function in python gimp, but due to my inexperience with python and the structure between gimp and python i have not been successful.
Information im looking for is:
How to swap the pre-selected colors
How to set new color
How to fill and selected area
How to select and area
All of which needs to take place in pyGimp
The bellow code is what i have so far, but the result is what i expect.
Expected result should be an grid (almost like a chess board) where pyGimp color individual squares in one of the two colors (foreground and background)
#Select and square
pdb.gimp_rect_select(img, gPosX+pX, gPosY+pY, wid, hig, CHANNEL_OP_REPLACE, False, 0.0)
#Fill the square
draw.fill(FILL_FOREGROUND)
|
|
|
color wheel in gimp method? |
Posted by: marigolden - 03-12-2020, 03:59 PM - Forum: General questions
- Replies (14)
|
 |
Any idea on how to make a color wheel in gimp?
Just a simple pie visual, except instead of for the purpose of percentages it's just to show the rainbow +3 other colors (white, brown, and black) so 9 colors in all
|
|
|
Parametric curves |
Posted by: Ottia Tuota - 03-12-2020, 01:21 PM - Forum: Extending the GIMP
- Replies (16)
|
 |
Hello!
Here are my first two plugins. With them you can draw parametric curves (or polar curves) in Gimp, approximately as Bézier curves. If you go to
http://kmarkku.arkku.net/
and click the link Simple Parametric Curves, and scroll down to the bottom, you find a button to download a .zip file. The items in the .zip file are:
- simple_parametric_curve.py (this is the plugins)
- doc.pdf (the documentation)
- example_files (this is a folder; see the site for explanation).
To install do:
1. Download the .zip file.
2. Unzip it.
3. Put the file simple_parametric_curve.py in your Gimp's plug-ins folder.
4. Restart Gimp.
5. Then the two plugins should appear in Gimp's menu at
Filters / Render / Parametric curves.
Their names are 'Simple parametric curve' and 'Simple polar curve'.
You had better then start by glancing through what the site tells. Then glance at the file doc.pdf. If the plugins interest you, you had better read doc.pdf more thoroughly at some point.
The task is to draw a parametric curve. That is what the first plugin, Simple parametric curve, does. The second, Simple polar curve, draws a curve given in polar form. (I assume here that you have some idea what those mean, so I don't explain). By "drawing" I mean that the plugin constructs the curve as a Bézier curve. In Gimp that means a path or a vectors object. So, if you want to stroke the curve, you have to do it yourself.
Since only very few curves can be faithfully represented as a Bézier curve, the produced path is just an approximation of the requested parametric curve.
Inkscape has a tool for such job. But it is even more simple than my plugins. To get an accurate result with it, one often has to make it to put control points densely on the curve. My plugin works in the opposite way: It tries to use only a sparse set of control points. That makes the problem of approximation quite non-trivial. The algorithms are my own.
You may wonder why I call my plugins simple. The reason is that I shall soon be sharing with you a third plugin which is developed much further, works much better, but is more difficult to use. (Though, if you feed the inputs in the GUI and not in an input file, there is not much difference. What these words mean, please see the explanations on the site or in doc.pdf.) I believe that in practice the simple plugins will be the ones most used.
I was hoping to include a picture but it seems that it cannot be uploaded here, only a link to somewhere else. So, please download the .zip file and look at the file doc.pdf there. It has some pictures.
Now I'd like to say a little of my background. I am a mathematician, already retired, who knows very little about computers or coding. Making such plugins came to me as a hobby some years ago. I was hooked and still am. I have been learning Python along the way. I used a much older version of my plugin when I wrote some lecture notes in mathematics as my last task before retirement in 2016. All curves I draw using my own plugin. So the plugin has been applied in a useful job even before publication.
If you have questions or problems with the plugins, please just ask.
|
|
|
|