| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
logo for website profile ...
Forum: General questions
Last Post: CmykStudent_
25 minutes ago
» Replies: 4
» Views: 113
|
GIMP 3.2 in the User CP
Forum: Gimp-Forum.net
Last Post: Ofnuts
05-01-2026, 08:29 AM
» Replies: 1
» Views: 189
|
Gimp-Forum.net has not be...
Forum: Gimp-Forum.net
Last Post: Tas_mania
04-30-2026, 10:53 PM
» Replies: 15
» Views: 1,622
|
Aligner des yeux sur plus...
Forum: General questions
Last Post: vmiarrg
04-30-2026, 07:47 PM
» Replies: 5
» Views: 317
|
How to create custom comp...
Forum: General questions
Last Post: VulpineVisions
04-30-2026, 06:16 PM
» Replies: 4
» Views: 405
|
Gimp3 ubuntu 24.04 favour...
Forum: Extending the GIMP
Last Post: rich2005
04-30-2026, 05:52 PM
» Replies: 0
» Views: 161
|
Off-Line Documentation
Forum: General questions
Last Post: LGLDSR73
04-30-2026, 02:39 PM
» Replies: 2
» Views: 227
|
Beginner question - setti...
Forum: General questions
Last Post: rich2005
04-30-2026, 10:35 AM
» Replies: 10
» Views: 1,244
|
key-mon don't want to ins...
Forum: Watercooler
Last Post: PixLab
04-30-2026, 06:08 AM
» Replies: 4
» Views: 356
|
GIMP: The Movie | Officia...
Forum: Gallery
Last Post: MurilloR
04-29-2026, 01:19 PM
» Replies: 4
» Views: 2,853
|
|
|
| Noob needs a hand... |
|
Posted by: vndep - 06-21-2019, 08:32 PM - Forum: Scripting questions
- Replies (2)
|
 |
Hi, All,
Noob here. I am trying to write a very simple GIMP-python script; all I want to do is:
(a) starting with a clean background
(b) read a .jpg file from my disk into an image object (e.g., a blue sky with clouds)
© have the image appear on top of the background
(d) write some text in black on top of the image (e.g., "Sample Text")
(e) save the whole thing as a new .png file somewhere on my disk.
I am almost all the way there; I am getting an error when I save (noted below) using this line:
pdb.gimp_file_save(1, new_img, layer, outputpath, 'AAA_TEST.png')
Thanks in advance! All help is welcome!
CODE FOLLOWS:
def python_sample_scriptC(image, layer) : #FUNCTION DEFINITION
pdb.gimp_image_undo_group_start(image)
pdb.gimp_context_push()
imagepath = 'G:/Users/Star/Dropbox/Projects/Stock photos/blue-clouds-day-53594.jpg'
outputpath = 'G:/Users/Star/Dropbox/Projects/Stock photos/AAA_TEST.png'
text = 'SAMPLE TEXT'
drawableFLAG = None
xval = 10
yval = 10
borderval = 0
antialiasFLAG = FALSE
sizeval = 100
sizetypeval = 1
fontnameval = 'Arial Heavy'
pdb.gimp_message('LOAD IMAGE')
imageobj = pdb.file_jpeg_load(imagepath, imagepath)
pdb.gimp_display_new(imageobj)
pdb.gimp_message('CREATE TEXT LAYER')
textlayerval = pdb.gimp_text_fontname(imageobj, drawableFLAG, xval, yval, text, borderval, antialiasFLAG, sizeval, sizetypeval, fontnameval)
pdb.gimp_message('SET TEXT COLOR')
pdb.gimp_text_layer_set_color(textlayerval, '#ff0000')
time.sleep(1)
pdb.gimp_message('DUPLICATE')
new_image = pdb.gimp_image_duplicate(imageobj)
pdb.gimp_message('MERGE')
layer = pdb.gimp_image_merge_visible_layers(new_image, CLIP_TO_IMAGE)
pdb.gimp_message('SAVE')
# THE CODE FAILS ON THE NEXT LINE
pdb.gimp_file_save(1, new_img, layer, outputpath, 'AAA_TEST.png')
pdb.gimp_context_pop()
pdb.gimp_image_undo_group_end(image)
pdb.gimp_displays_flush()
#return
|
|
|
| Alignment tool layer lock 2.10.10 |
|
Posted by: FatAliB - 06-20-2019, 12:25 AM - Forum: General questions
- Replies (3)
|
 |
In GIMP 2.10.10 layer locking works fine with the move tool, ie all locked layers are moved, but has no apparent effect using the Alignment tool, where only the currently set layer is aligned.
Is this a 'feature' or a bug?
|
|
|
| [split] print tiff problem |
|
Posted by: tez06 - 06-19-2019, 12:21 PM - Forum: General questions
- Replies (2)
|
 |
hi, i recently updated to gimp 2-10-12 and always exported my files in tif format then printed to my large format printer, however when i export my work in this new gimp when i go into the folder and try image preview the canvas is blank no images whatsoever and it print absolutely nothing, previous version worked like a charm, any ideas why this is?
|
|
|
| Preferences slow to open |
|
Posted by: ipco - 06-13-2019, 02:55 PM - Forum: Windows
- Replies (5)
|
 |
I am a new GIMP user and just installed ver 2.10.10
GIMP opens very fast - 15 seconds but when I open Edit/Preferences it takes 2 minutes 32 seconds consistently. I've opened/closed this several times and it's always the same,2.32. It appears it may be searching its own folders for each time. Is this normal behaviour or do I need to configure something?
I noticed in Folders there are two locations for everything
C:\Users\MyName\AppData\Roaming\GIMP\2.10\icons
C:\Program Files\GIMP-2.10.10\gimp\share\gimp\2.0\icons
Is this normal?
I am using Windows 10 Professional (x64)
4 core
8GB ram
NVIDIA GeForce GT 640
Thank you
|
|
|
|