Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
How to make a watermark o...
Forum: General questions
Last Post: kyolim
11 hours ago
» Replies: 5
» Views: 13,951
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
Yesterday, 06:06 PM
» Replies: 1
» Views: 305
|
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
Yesterday, 05:20 PM
» Replies: 2
» Views: 221
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 07:53 AM
» Replies: 15
» Views: 11,843
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
Yesterday, 07:32 AM
» Replies: 24
» Views: 21,687
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 596
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 257
|
How do you make text circ...
Forum: General questions
Last Post: rich2005
09-12-2025, 07:18 AM
» Replies: 12
» Views: 3,325
|
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 2,996
|
Trouble changing backgrou...
Forum: General questions
Last Post: tomatoSauce23
09-11-2025, 12:50 PM
» Replies: 6
» Views: 1,502
|
|
|
open a certain .psd file |
Posted by: exil - 04-22-2022, 12:22 PM - Forum: General questions
- Replies (5)
|
 |
Hi
This is hopefully very basic for you guys, but I am a very basic user of Gimp.
I usually receive a file, any format basically. Then I may hide some layers, move some layers, re-size the image, export it and use it.
I have never had Gimp having trouble opening a PSD file before, but today it got stuck and does not open the image. No error message, it is just hanging there.
At first I thought it was an error with the actual image, so I had a college open in (with photoshop on windows) and she had no issue. Then I though perhaps it was something with my computer, so I tried Gimp (v 2.10.20) on a windows home 11.
They both got stuck and did not open the image.
My version of gimp is 2.10.30.2 and I am on Manjaro linux v 21.2.6
The image in question is a psd of 106 MB aprox
I have retested opening other psd files I have received earlier and they do open.
I even downloaded Krita to open the file and Krita did open it.
I am at a complete loss
|
|
|
Tools and cursor sticking in GIMP 2.8 |
Posted by: geekgirl101 - 04-20-2022, 04:05 AM - Forum: Older Gimp versions (2.8, 2.6....)
- Replies (7)
|
 |
I've been having this issue ongoing for quite some time... well I should more say a collection of issues that are all related and are on and off when they occur.
- When trying to zoom in/out with CTRL + mousewheel nothing happens until I click on something like the ruler bar.
- When selecting a different tool sometimes it won't actually switch to them until I double click it or do something else like clicking on the ruler bar or changing to a different layer in the image.
- Using the pencil doesn't highlight the area where the pencil is until I actually click on the image and end up accidentally putting a dot on the image, same applies when attempting to draw a straight line when holding down CTRL or when trying to draw out an area using one of the select tools.
It's making the whole experience of using GIMP extremely choppy and quite honestly I don't know what causes it or what fixes it as it's random it happens, sometimes happens right away, and sometimes it just resolves by itself. I'm wondering if anyone else has come across this issue and knows how to stop it?
|
|
|
Printing from gimp |
Posted by: kevin.beckstead - 04-19-2022, 11:40 PM - Forum: General questions
- Replies (2)
|
 |
I want to print two 5 x 7 pics on 8.5 x 11 paper but oriented so that the pics are side by side. 7 inches along the 8.5 dimension and two 5 inches, total 10 inches, along the 11 inch dimension. Can Gimp do this? I'm having trouble figuring this out. If Gimp can't do this what other software would be good at this?
Thanks.
(Of course I could just get 5 x 7 paper but I want to make use of my 8.5 x 11 paper.)
|
|
|
BIMP won't process my Script-fu script |
Posted by: robknox - 04-19-2022, 01:02 AM - Forum: Extending the GIMP
- Replies (5)
|
 |
Perhaps it's a hint for me to try Python-fu. I've confirmed that the attached script works in Gimp 2.10.
The output of BIMP, though, is an unchanged image.
Am I missing something basic about BIMP?
(define (make-vignette color size opacity img)
(let* ((width (car (gimp-image-width img)))
(height (car (gimp-image-height img)))
; (layer (car (gimp-layer-new img width height 0 "vignette" 100 NORMAL-MODE)))
)
(gimp-context-push)
(gimp-image-undo-group-start img)
(gimp-image-select-ellipse img 0 65 50 (/ width 1.3) (/ height 1.3))
(gimp-selection-feather img size)
(gimp-selection-invert img)
;(gimp-layer-set-opacity layer opacity)
;(gimp-layer-add-mask layer (car (gimp-layer-create-mask layer ADD-MASK-SELECTION)))
;(gimp-image-select-ellipse img 0 0 0 width height)
;(gimp-selection-clear img)
;(gimp-context-set-foreground '(0 255 0))
(gimp-context-set-background color)
;(gimp-image-insert-layer img layer 0 -1)
;(gimp-drawable-edit-fill layer FILL-FOREGROUND)
(gimp-drawable-edit-fill img FILL-BACKGROUND)
(gimp-selection-none img)
(gimp-image-undo-group-end img)
;(gimp-displays-flush)
(gimp-context-pop)
)
)
(script-fu-register
"make-vignette"
"Colored Vignette"
"Create colored vignette for the image"
"Robert Knox"
""
"April 2022"
RGB
SF-COLOR "Color" "#222255"
SF-VALUE "Size" "300"
SF-VALUE "Opacity" "100"
SF-IMAGE "image" 0
)
(script-fu-menu-register "make-vignette" "<Image>/Filters/Light and Shadow")
|
|
|
|