| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 4,895
» Latest member: nekcab
» Forum threads: 7,953
» Forum posts: 43,272
Full Statistics
|
| Latest Threads |
resynthesizer 1.0
Forum: Windows
Last Post: nekcab
1 hour ago
» Replies: 1
» Views: 22
|
Picture Frame Glass Effec...
Forum: General questions
Last Post: sallyanne
3 hours ago
» Replies: 6
» Views: 399
|
Resynthesizer for Windows...
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 05:19 PM
» Replies: 6
» Views: 34,216
|
Is there a gimp plugin th...
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 10:43 AM
» Replies: 10
» Views: 20,460
|
Excellent Tutoriols for b...
Forum: Tutorials and tips
Last Post: rich2005
08-10-2026, 08:30 AM
» Replies: 3
» Views: 344
|
add links for one dot to ...
Forum: General questions
Last Post: saint_m
08-10-2026, 07:44 AM
» Replies: 4
» Views: 347
|
GIMP for win xp 32 bit pr...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: MrsP-from-C
08-10-2026, 07:18 AM
» Replies: 9
» Views: 528
|
imgur blocked
Forum: Watercooler
Last Post: R Soul
08-09-2026, 12:51 AM
» Replies: 5
» Views: 2,728
|
Layers
Forum: General questions
Last Post: TeckyWalla
08-08-2026, 09:07 PM
» Replies: 2
» Views: 290
|
fill bucket bug?
Forum: General questions
Last Post: rich2005
08-07-2026, 05:42 PM
» Replies: 1
» Views: 203
|
|
|
| Thumbnails never appear in file manager |
|
Posted by: thesun - 05-02-2023, 08:58 PM - Forum: General questions
- Replies (6)
|
 |
I'm using Linux, Lubuntu 20.04LTS, but I don't think I've ever seen GIMP .xcf files show as thumbnails, regardless of the flavor or file manager. I'm wondering if there's any possible way to make this happen. Tried this but only got blank transparent images...no thumbnails.
Also curious if there is a setting that allows me to enlarge the thumbnails in the Layer window. They're just too darn small for me and I can't tell which is which.
Thank you in advance for any tips and suggestions.
|
|
|
| Math problem |
|
Posted by: Ofnuts - 05-02-2023, 08:45 AM - Forum: Watercooler
- Replies (18)
|
 |
Given a pattern of regularly spaced lines of equal width, over which moves a sliding window, can you compute the total visible width of the lines (or of the spaces), based on:
- Window width
- Spaces width
- Lines width
- Position of window (as an offset to the first space, for instance, but any other measure of you choice is OK
Iterating is prohibited (that's the hard part)
|
|
|
| android |
|
Posted by: DearDeparted - 05-02-2023, 12:18 AM - Forum: General questions
- Replies (2)
|
 |
Hi GIMPies!
Is there an official gimp for android?
I was searching google play store and then i found a suspicious gimp from 'userland technologies' that costs 2.19 euro...
If it's not on the official website, it meand it's not official?
|
|
|
| Photoshop skin tone matching help |
|
Posted by: kidbwapo - 05-01-2023, 08:41 AM - Forum: General questions
- Replies (7)
|
 |
Hi
I need some photoshopping help. I have a beach pic with a bunch of people in it and I need to photoshop another person in from a different picture. I'm having real trouble matching the skin tones from the photoshopped image to make it look reasonably authentic.
Is there an easy way to do this or a good guide anywhere?
Thanks
KB
|
|
|
| file_png_save2 gives Permission Denied error, but can save through File menu |
|
Posted by: Leonide - 04-29-2023, 09:15 PM - Forum: Scripting questions
- Replies (5)
|
 |
I'm trying to write a script to automate some things for a project I'm working on, and one of the steps is saving a file as a png. I'm using file_png_save2. When running the script, it errors out with a "Permission Denied" message. However, I can save files to the same folder with no issue if I go through File->Export.
I'm running Gimp 2.10 on Windows 11. Here is the code for the script so far:
#!/usr/bin/python
from gimpfu import *
baseURL = "C:\\Users\\MyID\\OneDrive\\Pictures\\ScriptTest\\"
def char_img_164(image, drawable, imgid):
pdb.gimp_edit_copy(image.layers[0])
newImg = pdb.gimp_edit_paste_as_new_image()
pdb.gimp_image_scale(newImg, 164, 164)
dispImg = pdb.gimp_display_new(newImg)
layer = pdb.gimp_image_merge_visible_layers(newImg, CLIP_TO_IMAGE)
pdb.file_png_save2(newImg, layer, baseURL + "test1",imgid+".png",0,9,0,0,0,0,0,0,0)
register(
"char_img_164",
"Image test",
"Test script",
"MyID",
"MyID",
"2023",
"<Image>/Image/ScriptTest/IMG164",
"*",
[
(PF_STRING, "imgid", "Enter ID", "hello")
],
[],
char_img_164)
main()
|
|
|
|