Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,788
» Latest member: AndrewScoke
» Forum threads: 7,598
» Forum posts: 41,408

Full Statistics

Latest Threads
files missing after insta...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
6 hours ago
» Replies: 4
» Views: 340
Simplifying a path
Forum: Extending the GIMP
Last Post: Infinimitsu
9 hours ago
» Replies: 39
» Views: 35,087
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: HavingTooMuchFun
Today, 08:24 AM
» Replies: 2
» Views: 508
.pcd files issue?
Forum: OSX
Last Post: rich2005
Today, 07:49 AM
» Replies: 1
» Views: 184
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
Yesterday, 07:02 AM
» Replies: 1
» Views: 344
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
09-14-2025, 04:16 PM
» Replies: 21
» Views: 68,905
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,461
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 721
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
09-13-2025, 05:20 PM
» Replies: 2
» Views: 624
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,314

 
  Nice machine from Newcastle-upon-Tyne
Posted by: Ofnuts - 12-08-2023, 09:50 PM - Forum: Watercooler - Replies (2)



Print this item

  GIMP Files stuck on PAINT XCF
Posted by: RabSmith - 12-07-2023, 09:30 PM - Forum: General questions - Replies (4)

Hya all you cute-n-cuddly GIMP users.

I have been using GIMP for about a decade and I love it, however recently after doing a clean install on my desktop PC, ALL my XCF files [previously all GIMP files] are now all PAINT XCF files and will not transfer to, or come up in, my GIMP list of 'open' files.

Try as I might, I just cannot convert my XCF files to the GIMP format I require.

It would be very useful if someone can assist me on this one, and let me access my artwork.



kind regards, Rab Smith.

Print this item

  Hi- New user 2.10.36
Posted by: theycallmejayne - 12-07-2023, 09:29 PM - Forum: General questions - Replies (5)

HI all,
I am new to GIMP.  Been a PS user but can no longer afford the way it's going so installed gimp 2.10.36 on C in a win 11 64 bit machine and GIMO portable on an external SSID on a win 10 64 bit machine, both laptops.and then

Both are set up to my preferences.     I am at the moment interested in logo creation and photo manipulation for website use

Trawled you tube and came across Davies Media Design and thought buying the masters course would be a good choice.  Turns out three quarters of the resources are missing and have been, according to the comments, for some years. DMD doesn't answer emails so somewhat disappointed.  Sorry if this is a DMD forum, if it is maybe the dude will read this and send me the missing resources.

Guess I won't be getting the Udemy Certificate from the video alone.

My current issues are:

I cant' seem to get stroking text to work.   I appreciate that its a different way of doing things but I can't get it to work to my satisfaction and its a somewhat convaluted way of doing it.  Maybe theres a plugin out there.

I also can't get text on a circle to work.  Text on the top part of the arc is fine but text on the lower places on the top right corner and i cant flip it to read upright.   However, despite copying logo by nick every step, i conclude that i must be missing something.

Does anyone know of an online teacher who someone as inexperienced as i can follow and the instructions work please?  Or is there a plug in for text on a circle?

I also now have Inkscape and I will say that as far as I am concerned it is far superior to Illustarator in ease of use.

Hopefully someone will read this and tell me where I am going wrong.

THanks for reading.

Print this item

  coloring in two colors - beneath a line ...
Posted by: sayhello - 12-07-2023, 01:40 PM - Forum: General questions - Replies (8)

hello dear friends  - good day 


 i have a new  image - and i want to color the field

a. above the line with blue and the area 
b. below the line with magenta (e.g. the color that is shown in the heard of the smilies


.xcf   line_coloring_12.xcf (Size: 19.84 KB / Downloads: 337)

see here 
   

well - how to start  here - how to achieve that

Print this item

  Flattening Fades Images
Posted by: Pink Peony - 12-07-2023, 04:40 AM - Forum: General questions - Replies (7)

I have spent an embarrassing amount of time creating high quality PNG images which I have layered into worksheets I plan to sell.  Now I need to flatten my pages.

When I use Image>Flatten, my beautiful images look faded.  The drop shadows nearly disappear altogether.  The loss of quality is dramatic.  I've tried increasing the Quality slider in the Export popup from 90 to 100 with no noticeable improvement.  

What do I do?

I am using GIMP 2.10.36.

Thank you!

Print this item

Scheme I need help to declare a variable or a function in scheme
Posted by: PixLab - 12-07-2023, 02:48 AM - Forum: Scripting questions - Replies (5)

I'm trying to set a variable or a function but nothing is working, I always got "Illegal function", or "unbound variable", or whatnot

A screenshot about what I try to do
Having a variable will allow me to only input the variable in the other lines (in red), unless my thinking is wrong (that's also something to take in count).
   

Here is the code, if I understood (while (> i 0) where i is a variable and I try to catch when i is equal to 1
How can I catch that number to change the variable depending that number?

Code:
(while (> i 0)
      (set! image (vector-ref (cadr (gimp-image-list)) (- i 1)))
      (set! newFileName (string-append inDir
              pathchar inFileName
              (substring "0000000" (string-length
              (number->string (+ inFileNumber i))))
              (number->string (+ inFileNumber i)) saveString))

;;;;;;;;;;;;;;;;;  START to set my variable isInteractive ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

     (set! isInteractive (if ((equal? i 1) RUN-INTERACTIVE)
                                 (else (RUN-WITH-LAST-VALS))))

;;;;;;;;;;;;;;;;;;;;;;;;;   END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

      (cond
        ((equal? saveString ".webp")
                            
           (file-webp-save2 isInteractive ;;;; << once set isInteractive should switch to RUN-INTERACTIVE or RUN-WITH-LAST-VALS depending the value of i
                      image
                      (car (gimp-layer-new-from-visible image image "export"))
                      newFileName
                      newFileName
                      1    ; preset 0=default 1=pic 2=photo 3=drawing 4=icon 5=text
                      0    ; Use lossless encoding (0/1)
                      90   ; Quality of the image (0 <= quality <= 100)
                      90   ; alpha-quality  0<>100
                      0    ; Use layers for animation (0/1)
                      0    ; Loop animation infinitely (0/1)
                      0    ; Minimize animation size (0/1)
                      0    ; Maximum distance between key-frames (>=0)
                      0    ; Toggle saving exif data (0/1)
                      0    ; Toggle saving iptc data (0/1) works only if save XMP data is also checked ?
                      0    ; Toggle saving xmp data (0/1)
                      0    ; Toggle saving thumbnail (0/1)
                      0    ; Delay to use when timestamps are not available or forced
                      0    ; Force delay on all frames (0/1)

          ))

I did try with (cond instead of (if I tried also starting with (begin (set! nothing is working, and let's face it, I'm also overwhelmed by the number of parenthesis Huh

Print this item

  availability status: sync pending
Posted by: bmatsalla - 12-07-2023, 01:33 AM - Forum: General questions - Replies (2)

Anything I create with Gimp 2.10.36 has two curved arrows in a circle and says "availability status: sync pending"

How do I get rid of this?

Thanks

Print this item

Scheme Export all opened images in GIMP at once
Posted by: PixLab - 12-06-2023, 02:34 PM - Forum: Extending the GIMP - Replies (18)

Inspired by Rich2005 over-there >  https://www.gimp-forum.net/Thread-Tip-to...es-at-once which he literally wrote the WebP part

Use case: You got a bunch of images in GIMP and you have finished to work on them, and want to export all at once in JPG or WebP or PNG, or TIFF or even BMP
Or another use case: You did slice your image using guides with Image > Slice Using Guides with a grid of 10x10 and you got 100 opened images, go to export them one by one...  Big Grin

You will want this with all those images opened (un-zip, then put the .scm file in the scripts folder)
.7z   sg-save-all-open-a.scm.7z (Size: 2.29 KB / Downloads: 1185)

Now you just go to File > Export All Images As... Chose your folder, Chose the type of image, Give a generic name, and a start number (auto-numbering)

   

What changed with the original ?
A lot, like A LOT.
Export the full image and not just a layer.
Once you chose where to save and the file type, you can get a coffee or a beer, the script will care for the other million opened images and no question asked by GIMP.
No default settings from GIMP,  as before the exported JPG was bigger than the original,

Thus now you can set your settings in the code, I did comment ALL for > JPG, WebP, PNG and TIF
   

Print this item

  Save export settings
Posted by: bcourcet - 12-05-2023, 07:01 PM - Forum: General questions - Replies (6)

Hello,

is there a way to save export settings ?

I always export to WEBP and i always use the same settings. But selecting the different settings (file type, extension, quality etc...) takes more time and clicks, and scrolls than the actual export. So is there a way to save those settings ?

Thanks for your help

Print this item

  How to automatically subscribe to a posting in this forum?
Posted by: pstein - 12-05-2023, 10:21 AM - Forum: Gimp-Forum.net - Replies (1)

Currently the default for my postings is "NO subscribe".

How can I tell the forum software to always automatically subscribe me for email notifications of my new postings?

I found no user preferences section here.

Print this item