Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,946
» Latest member: Gene
» Forum threads: 7,375
» Forum posts: 40,160
Full Statistics
|
|
|
GIMP 2.10 constantly crashing while painting |
Posted by: Nerrel - 05-20-2018, 01:56 AM - Forum: Windows
- Replies (1)
|
 |
I've been using 2.8 to do texture work for a very long time without any major issues, but after updating to 2.10 and proceeding to use it in the exact same way the program keeps abruptly closing with no warning, no errors, and no chance to save my work. It seemed to happen most frequently when working with multiple windows open, but it just now happened twice in a row while working on a single image. This basically renders GIMP totally unusable, as I can't keep throwing work away every time the program dies- the odds of a crash or completing a texture without issue are about 50/50, and it's very easy to forget to save when focusing on the work I'm doing.
I use a Huion drawing tablet and am usually using it to draw when the crash happens; it doesn't appear to happen when the program is inactive, it's always when I'm in the middle of something. I need pressure sensitivity and never work with just a mouse alone, so I can't say whether it happens as frequently then.
I'm not able to go back to 2.8 since I now have many files saved in the new format... Where can I begin troubleshooting this? Are there any crash dumps or logs I can find? I'm on Windows 10x64 and using the latest drivers for all my system. I tried uninstalling and then reinstalling GIMP over again, but the issue persists.
|
|
|
Combine 3D render image and real image |
Posted by: Christophpher - 05-19-2018, 11:56 PM - Forum: General questions
- Replies (2)
|
 |
Hello GIMP forum,
I hope someone would be so kind and help me with this challenge.
I will like to combine an image of a soccer player and a 3D render image I have created. So far I have been able to put the two pictures together.. But I need the final touch to make it look more 'real' or 'life like:
Do any of you have some suggestions of what I can do? I have put the different files that I am using into a dropbox folder:
https://www.dropbox.com/sh/xkq2fek0sluk4...y05Va?dl=0
Please feel free to guide and show me what is possible - that would be a great help for me.
Thank you,
Christopher
|
|
|
fade in-out |
Posted by: gimp-artist - 05-19-2018, 12:49 PM - Forum: General questions
- Replies (2)
|
 |
Q1. I know how to fade-in or fade-out for paint brush. What I don't know is how to do the both fade-in and fade-out together. Is it even possible?
Q2. I'm creating a new dynamic for fade parameter. Color and Angle works for fade-in perfectly, but color and angle doesn't work for fade-out. Strange. Am I wrong?
|
|
|
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 )
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 
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
|
|
|
|