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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,093
» Latest member: DaneJoson
» Forum threads: 7,113
» Forum posts: 38,894

Full Statistics

Latest Threads
What is Booster XT?
Forum: Gimp 2.99 & Gimp 3.0
Last Post: DaneJoson
56 minutes ago
» Replies: 0
» Views: 15
Information about GAP
Forum: Extending the GIMP
Last Post: ElMastro
4 hours ago
» Replies: 2
» Views: 157
Trying to print actual si...
Forum: General questions
Last Post: CasinoFrancepat
7 hours ago
» Replies: 6
» Views: 194
slight transformation
Forum: Gallery
Last Post: MJ Barmish
Yesterday, 12:47 PM
» Replies: 0
» Views: 95
Issues with color to alph...
Forum: General questions
Last Post: kulharin
01-21-2025, 09:30 PM
» Replies: 7
» Views: 301
Unable to activate brush ...
Forum: General questions
Last Post: rich2005
01-21-2025, 02:51 PM
» Replies: 1
» Views: 128
What do you mean?
Forum: Watercooler
Last Post: denzjos
01-20-2025, 09:08 AM
» Replies: 0
» Views: 122
Need help transforming im...
Forum: General questions
Last Post: denzjos
01-19-2025, 04:32 PM
» Replies: 6
» Views: 368
A nice YT video about ble...
Forum: Watercooler
Last Post: Tas_mania
01-19-2025, 01:51 AM
» Replies: 8
» Views: 649
problem after run : black...
Forum: Windows
Last Post: Ofnuts
01-18-2025, 05:11 PM
» Replies: 1
» Views: 143

 
  paint mode
Posted by: gimp-artist - 05-19-2018, 01:11 AM - Forum: General questions - Replies (2)

   
Paint mode is not working like the doc says.

When I paint on an image with only one layer with some paint mode, I can paint on it. I don't understand. Modes supposed to be working on two layers, right?

Even on two layers, the result is the same as the image has no additional layers.

What am I missing for paint mode?

Print this item

  Problems file-png-save-defaults
Posted by: Petequero - 05-18-2018, 11:33 PM - Forum: Extending the GIMP - Replies (1)

Hello guys, 

I am new here, and I wrote my first script-fu. 
Unfortunately, it does not work (yet Big Grin)


My script is about resizing png images, and then save them. 
The script seems to be working for the resizing. 
However, I don't manage to save the new pics. 

I am working on windows 10 with GIMP 2.10. 
My code is below. 

Any feedback would be appraciated Smile

Code:
(script-fu-register
           "script-fu-resize-theimages"                    ;Nom de la fonction (console)
           "Redim"                                          ;Nom du sous menu dans l'onglet /File/Create/Redimensionnement Image
           "Redimensionne tes images png de la taille\    
             que tu veux, et avec l'interpolation\
             que tu veux. Trop cool isn't it ?"            ;description
           "Dav The Crouch, allias la classique"           ;author
           "copyright the GIMP Documentation Team"            ;copyright notice
           "Pour entrer dans l'histoire : Mai 18, 2018"    ;date created
           ""                                                 ;image type that the script works on
            SF-DIRNAME     "Chemin source"     ""
            SF-ENUM     "Interpolation"     '("InterpolationType" "linear")         ; Menu déroulant avec une interpolation à choisir
            SF-VALUE    "Width"    "30"                                                ; Menu à trou : Entré de la largeur finale de l'image
            SF-VALUE    "Height"   "30"                                                ; Menu à trou : Entré de la largeur finale de l'image
            SF-DIRNAME     "Chemin cible"         ""
 )
 (script-fu-menu-register "script-fu-resize-theimages" "<Image>/File/Create/Redimentionnement Image") ; create a menu
 
 (define (script-fu-resize-theimages sourcepath inInterpol inWidth inHeight destinationPath); On défini une fonction d'entrée qui prend les 3 paramètres du menu défini plus haut
   
    (let*
        (
            ; sélectionner le dossier à traiter avec SF-DIRNAME
            ; on chope tout les noms de chemin et les noms des images et on en fait une liste. Exemple :
            ; C:/Users\\ADOM.png" "C:/Users\\ADOM_grisée.png" ect...
            (filelist (cadr (file-glob (string-append sourcepath "\\*.png") 1)))
        )

        ; On prend donc les noms de la liste un par un, tant qu'il y en a
        (while (not (null? filelist)) ;2 fonctions, une qui resize et sauvegarde, l'autre qui met à jour la liste-compteur (filelist)

        (let*
            (
                ; on prend le premier chemin associer à la première image
                (first-filename (car filelist))

                ; On définit la variable image (pour les fonctions)
                (image (car (gimp-file-load RUN-NONINTERACTIVE first-filename first-filename)))

                ; On définit de la variable drawable
                (drawable (car (gimp-image-get-active-drawable image)))

                ; On reconstruit le nom : chemin/image.png
                (outputfilename
                    (string-append                                         ;On concatene :
                        (string-append destinationPath "/")             ;chemin/
                                (cadr (strbreakup first-filename "\\")) ;image.png
                    )
                    
                )
            )
            
            ; On défini l'interpolation
            (gimp-context-set-interpolation inInterpol)
            
            ; Et finalement on lance le redimensionnement
            (gimp-image-scale image inWidth inHeight)
            
            ;sauvegarde de l'image
            (file-png-save-defaults RUN-NONINTERACTIVE image drawable outputfilename outputfilename)
           ;(file-png-save RUN-NONINTERACTIVE image drawable outputfilename outputfilename FALSE 9 TRUE FALSE FALSE TRUE TRUE)
            
            ;fermeture de l'image
            (gimp-image-delete image)
        )
        
        ; On supprime les "chemin/image.png" déjà fait
        (set! filelist (cdr filelist))
        )
    )
    )

Thank you in advance for any comment.

David

Print this item

  I have created a DIY-Calendar /& planner: how to resize it ?
Posted by: sayhello - 05-17-2018, 04:28 PM - Forum: General questions - Replies (5)

hello dear all

i have created a do it yourself calendar - now i want to print it out in a formate like 15 cm x 10,5 cm

How to resize this with a libre-office programme!?


pdf-file
http://www.mediafire.com/file/jny67c9usq...offset.pdf

libre office file
http://www.mediafire.com/file/71wy94fe6j...laner_.odt


love to hear from you

Print this item

  Scissors select tool
Posted by: gimp-artist - 05-17-2018, 02:20 PM - Forum: General questions - Replies (7)

   
This attachment is from the gimp doc. I don't understand this shift modifier for scissors select tool.
The shift modifier is working as "+" what I know of. What should I know more?

Print this item

  Launcher for gimp
Posted by: gimp-artist - 05-17-2018, 12:00 PM - Forum: General questions - Replies (9)

I have a launcher icon for gimp for my ubuntu system. One day I used script-fu windows in gimp. Then the launcher icon was overlapped together. That's all fine.

After the first use of script-fu windows in gimp, there is no turning back to normal gimp launcher icon. It indicates "script-fu" not gimp itself. So when I click the launcher gimp won't start, of course I restarted my pc.

I registered a new gimp launcher, but it doesn't resolve the issue.
What should I do to fix this unusual issue?

Print this item

  Gimp 2.10 cannot export work to png or jpg
Posted by: Einston - 05-17-2018, 08:43 AM - Forum: Gimp 2.10 - Replies (1)

Hallo everyone

I installed GIMP 2.10 yesterday and it looks great. But..

1) I cannot export my work to either jpg or png formats. (Have not tried other formats) When you click the export button nothing happens. The little dialogue that would normally pop up in 2.8 where you can select your export settings for png for example just never pops up. 

2) I get an error during program startup to this effect.. gmic_gimp.exe - Entry point not found. The procedure entry point basic_string_char_traits_find_first could not be located in the dynamic link library c:\Program Files\GIMP 2\bin\libexiv2.dll. I just ok the error and the program starts up.

3a) I noticed a few small things that seem to me to be not right. For example: The eraser tool does not work as expected. The brush does not follow the mouse pointer while the left mouse button is down. Once you release the left mouse button, the erase action takes place. This turns erasing into guesswork. 

3b) On many (if not all) of the tool properties where you can adjust settings for a brush or for a layer etc.. you have an up and down arrow next to the setting that can be used to increase or decrease the setting. These arrows are now single press. If you click and hold down, the value only increase once, it does not increase while the mouse button is down. For example, if you want to change the size of a brush from say 50 to 60 using the arrows, you will have to click the up arrow 10 times. You cant click on the up arrow and hold down the left mouse button and it will continue to go up...

I use Windows 10 Pro 32bit with quad core processor. 
Need to fix point 1.. or go back to 2.8. 

PS: Any way to install both 2.8 and 2.10 at the same time?

Thanks
Einston



Attached Files Image(s)
   
Print this item

  Liquid rescale fix-up for Windows Gimp 2.10
Posted by: rich2005 - 05-17-2018, 08:16 AM - Forum: Extending the GIMP - Replies (1)

Liquid rescale - one of the first 'extras' installed in my linux flatpak.

The windows version is 32 bit and comes as an installer. Hate those installers. This one in particular does not want to install if Gimp 2.8 is not there.

Possible solutions, 
Steal the files from a previous installation.
Use a utility such as uniextractor to unpack the installer.

You do need a Windows Gimp 2.10 that supports 32 bit and the latest (fixed) Gimp package gimp-2.10.0-setup-2.exe works.

As well as the lqr files, a 32 bit intl.dll is needed. I took one from a 32 bit gimp 2.8 installation.

All-in-all, these files go in your Gimp 2.10 profile C:\Users\your-name\AppData\Roaming\GIMP\2.10\plug-ins
gimp-lqr-plugin.exe liblqr-1-0.dll plug_in_lqr_iter.exe intl.dll and if needed batch-gimp-lqr.scm goes in scripts.

Works here: Win10, Gimp 2.10.0 screenshot: https://i.imgur.com/vSfBAm9.jpg

Edit: At the moment liquid-rescale does not work with Gimp 2.10.18 It needs recompiling to work. It will work with Gimp 2.10.14 and this old version might work again in the next version of Gimp. (rich - March 2020)

files attached.



Attached Files
.zip   gimp-lqr.zip (Size: 332.96 KB / Downloads: 4514)
Print this item

  Some scripts not recognized
Posted by: dhugg - 05-16-2018, 09:06 PM - Forum: Extending the GIMP - Replies (1)

hello,

having trouble with certain scripts:
gimp_spinning_cube_script_by_fence_post-d184gze.scm
spinning-cube.scm

added the script ; refreshed scripts and restarted gimp 2.8 ; verified it is there ; doesnt show up in the "filters>animations>" menu or anyplace else; 

any ideas what i might be doing wrong, other scripts ok???

thanks dhugg

Print this item

  Color to transparency
Posted by: Christoph_T - 05-16-2018, 02:32 PM - Forum: Gimp 2.10 - Replies (2)

Hello together,

since some years now I am painting with Gimp 2. (2.8.22 latest).
Mostly I am doing repaints for flightsims like P3D and X-Plane:
X-Plane: https://forums.x-plane.org/index.php?/fo...nt-1238872  
FSX/P3D: http://www.sim-outhouse.com/sohforums/sh...nting-room

Recently I moved to Gimp 2:10 which has some great new tools.
One thing that I miss however is the tool "color to transparency" which was really great to create nice overlays.
I know that there is the tool color to alpha but sadly it doesn't work as well for me Sad
The new maps are kind of washed out. With blending out the a white tone for example all other colors are also more greynish than with the "color to transparency tool".


I would be very pleased if anybody could help me out to find a workaround to get the same results as with the old tool.
Maybe there the is also a way to get the old tool back to work in 2.10?

Many thanks in advance for any advice,

Christoph

Print this item

  DDS plugin for BC7 format
Posted by: qsr - 05-16-2018, 02:30 PM - Forum: Extending the GIMP - Replies (2)

Is there a way to use the "Intel Texture Works Plugin for Photoshop" in Gimp?

I have tried the "Gimp_Ps_plugin_support" , but no results.

Print this item