Spyke

How do i read a .gif comment?

When i export something from GIMP as a gif, there's an option to include a text comment. Never outside of GIMP have i seen this. Googling it just gets questions about people putting gifs in Reddit comments. No other image viewer or editor i've seen makes these visible, and even GIMP only seems to be able to write them, not to read them. So what's up with these? How useful is it to put information in a gif comment?

View original on lemmy.world
12

[Help] Old plugin not working

I have this simple old plugin that is not working with modern versions of GIMP. I absolutely had this working in GIMP 2.x or whatever, but it is not working in GIMP 3.2. When running GIMP from the terminal, it prints out the error messages, and it seems that the issues with this plugin are mostly something to do with the manifest/metadata sort of info at the end of the script.

I have tried reading the documentation about plugins and making small edits to the script to resolve those errors, but I just cannot seem to get it to work. Can anyone help me edit this plugin in a way that makes it work with GIMP 3.2?

Another request is to add to the script to also add guides around the perimeter of the canvas. Which I assume should be simple, just adding something like

(gimp-image-add-vguide img 0)  
(gimp-image-add-vguide img 100)  
(gimp-image-add-hguide img 0)  
(gimp-image-add-hguide img 100)  

::: spoiler Original plugin script

;===============================================================  
;== GIMP Add Guides Vertically and Horizontally @ 50%         ==  
;== Copyright (c) 2008 Gregory M. Ross                        ==  
;===============================================================  

(define (script-fu-crosshairs img drawable)  
  
    (let* ((ImageW (car (gimp-drawable-width drawable))) 
	    (ImageH (car (gimp-drawable-height drawable))) 
	    (Vert_Offset  (car (gimp-drawable-offsets drawable)))  
	    (Horz_Offset  (cadr (gimp-drawable-offsets drawable)))  

	 
	    (Vert_50  (+ (* ImageW 0.5)Vert_Offset))  
	    (Horz_50  (+ (* ImageH 0.5)Horz_Offset))  
    )  
   
    (gimp-image-undo-group-start img)  
    (gimp-image-add-vguide img Vert_50)  
    (gimp-image-add-hguide img Horz_50)  
    (gimp-image-undo-group-end img)  
    (gimp-displays-flush)))  


(script-fu-register "script-fu-crosshairs"  
		    "<Image>/Image/Guides/Crosshair Guides"  
		    "Add Guides at 50% Horizontal and Vertical"  
		    "Gregory M. Ross"  
		    "Gregory M. Ross"  
		    "March 2008"  
		    ""  
		    SF-IMAGE    "Image" 0  
		    SF-DRAWABLE "Drawable" 0)  
		    

:::

View original on quokk.au
6
gimp·GIMPbyPOuL

We are proud to showcase our new Image Editing course, where we’ll dive into the world of open source software for image manipulation. We’ll explain, in an approachable way for beginners, fundamental

We are proud to showcase our new Image Editing course, where we’ll dive into the world of open source software for image manipulation. We’ll explain, in an approachable way for beginners, fundamental concepts like layers, raw editing, raster editing and we’ll apply them with explanations and demonstrations to three different (free software!) popular softwares: #rawtherapee, @[email protected] :gimp: and @[email protected] :krita:

@lambrate @milano @[email protected] @[email protected] @[email protected] @[email protected] @[email protected]

View original on mastodon.uno
9
gimp·GIMPbyjpicture

Making a new dark UI theme - help me decide an element colour

I've pretty much completed my new clean dark theme for the GIMP 3 series, but I'd like some feedback on one thing before I release it.

Should I use a light or dark tone for the separators? If you compare the two images you'll see what I'm referring to.

I think the lighter separators are easier to see and the darker ones are less distracting.

Which do you think is better?

I know I have a bias towards making things low-contrast and 'smooth', sometimes overly so, and I'd appreciate some outside perspective.

Also posted to Mastodon if the images here are struggling to load on your Lemmy app, like they do sometimes on mine: https://mastodon.social/@jpicture/116255975518406081

View original on lemmy.zip
5
gimp·GIMPbyLeraje

PhotoGIMP fix for GIMP 3.2 via Flatpak

Not sure if this community is still alive but just in case...

I noticed today that my app menu and applet shortcuts to start GIMP/photoGIMP weren't working. A quick visit to the photoGIMP repo and someone has posted the fix (all credit goes to UniverseLord for this fix).

I originally installed GIMP via Flatpak so mileage may vary. Anyway, close photoGIMP/GIMP if its open.

Go to ~/.local/share/applications/ and make a backup copy (just in case) of org.gimp.GIMP.desktop . Now edit that file (not the backup file) and look for the line:

Exec=/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=gimp-3.0 --file-forwarding org.gimp.GIMP @@u %U @@

and change 3.0 to 3.2 so the line reads:

Exec=/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=gimp-3.2 --file-forwarding org.gimp.GIMP @@u %U @@

Save that file, close it and photoGIMP should now open fine.

View original on piefed.blahaj.zone
17