Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,216
» Latest member: eddy
» Forum threads: 7,117
» Forum posts: 38,903
Full Statistics
|
|
|
GIMP Won't Export to PNG |
Posted by: abajan - 06-25-2018, 08:50 PM - Forum: Windows
- No Replies
|
|
Hi Guys,
Glad to be a part of this community! I've had GIMP 8 on my Windows 7 PC for sometime, but never used it much, because it seemed so complicated compared to other graphics applications. I'm more au fait with Pixlr, but recently discovered an image dimension limit of 4000 x 4000 pixels there. So, I figured it would probably be best to learn whatever I could about GIMP, as I'd always heard it was very feature rich.
Anyway, seeing that a stable version of GIMP 2.10 was recently released, I decided to upgrade. Everything seemed to be working fine: it loaded my 7004 x 7680 transparent PNG as an XCF file, and afterwards I cropped it a bit, added a couple layers and some text, all without any issues. However, when I tried exporting my finished work as a PNG, nothing happened. Have any of you experienced the same issue? If so, how did you resolve it?
Thanks.
UPDATE: The issue appears to be related to the particular XCF file, because I just tried exporting another one, and it worked just fine. This time the Export Image as PNG dialog popped up (as shown below), and when I clicked Export, it worked perfectly. Maybe there's a problem with the file that won't export. Could be corrupt or something. I don't know. I'm going to delete it and start afresh.
|
|
|
assistance needed creating gif |
Posted by: echoMOTN - 06-25-2018, 02:36 AM - Forum: General questions
- Replies (4)
|
|
Greetings, all. I'm familiarizing myself with this software but experiencing a problem creating a gif, or rather, exporting it. I've captured a part of game and created a gif with another program. I opened the gif with GIMP and I went through each frame to erase the background and leave transparency in its absence. Now, when I export, all the layers are shown when the gif is viewed, one after the next. I want the previous frames to become hidden when the next one is displayed. I've toyed with all the options in the export settings and cant seem to find a solution. any advice? xcf project file is available here:
https://nofile.io/f/wVgVCsOMR2e/Next+Level+HD+Taunt.xcf
thanks in advance!
|
|
|
Paintbrushing Eraser! |
Posted by: halligant - 06-24-2018, 05:36 PM - Forum: General questions
- Replies (2)
|
|
Hello,
I've recently downloaded gimp 2.10 and I find that when I utilise the eraser
function it behaves like the paintbrush and paints the photograph with the
background colour.I should be obliged if anyone could tell me how to remedy this,
Yours,
halligant
|
|
|
How To Fill or Delete Within A Bordered Area? |
Posted by: abrogard - 06-24-2018, 08:15 AM - Forum: General questions
- Replies (3)
|
|
I have a letter I've drawn as an image. It is like hollow - you know? It is a 'G' drawn like with parallel lines you know?
And I want to clean out the area inside the lines - i.e. inside the letter itself - and clean out the area outside the lines which is supposed to be already 'cleaned out' i.e. erased, but isn't.
The border, the outline, of the letter is nice thick black.
I have the idea that gimp will somehow recognise the difference between that black and select all the area within, like between the lines, within the actual letter, so's I can flood fill it or erase it - and do the same on the other side of the border and erase everything to the edges of the canvas so's I've just got the letter left.
Is that right or am I remembering some other prog somewhere?
Can it be done easily or do I have to go all around my letter again with the lasso or the path tool or something and make a selection that way?
|
|
|
[SOLVED] Unbind F1 key |
Posted by: justonce01 - 06-23-2018, 08:54 PM - Forum: Linux and other Unixen
- Replies (2)
|
|
How can I remove the F1 shortcut in GIMP 2.10?
I used to have a snippet in gtkrc inside GIMP's config which disabled the F1 shortcut, which I could then use for something else. This is the snippet:
Code:
binding "gimp-help-binding" {
unbind "F1"
}
class "GtkWidget" binding "gimp-help-binding"
But now after upgrading to 2.10 it doesn't work anymore. Does anyone have an idea why and how I could unbind F1 again? Why isn't it possible to do so within the menu?
|
|
|
Distress Selection |
Posted by: Espermaschine - 06-23-2018, 06:39 PM - Forum: Extending the GIMP
- Replies (11)
|
|
This script is under Selection -> Distort.
Im interested in the steps.
As far as i can tell, it does the following:
- Spread
- Blur
- Levels (alpha)
But the code says Threshold instead of Levels, which is odd, because Threshold doesnt have an alpha option.
Code:
;
; distress selection
;
;
; Chris Gutteridge (cjg@ecs.soton.ac.uk)
; At ECS Dept, University of Southampton, England.
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
; Define the function:
(define (script-fu-distress-selection inImage
inDrawable
inThreshold
inSpread
inGranu
inSmooth
inSmoothH
inSmoothV)
(let (
(theImage inImage)
(theWidth (car (gimp-image-width inImage)))
(theHeight (car (gimp-image-height inImage)))
(theLayer 0)
(theMode (car (gimp-image-base-type inImage)))
(prevLayer (car (gimp-image-get-active-layer inImage)))
)
(gimp-context-push)
(gimp-context-set-defaults)
(gimp-image-undo-group-start theImage)
(if (= theMode GRAY)
(set! theMode GRAYA-IMAGE)
(set! theMode RGBA-IMAGE)
)
(set! theLayer (car (gimp-layer-new theImage
theWidth
theHeight
theMode
"Distress Scratch Layer"
100
NORMAL-MODE)))
(gimp-image-insert-layer theImage theLayer 0 0)
(if (= FALSE (car (gimp-selection-is-empty theImage)))
(gimp-edit-fill theLayer BACKGROUND-FILL)
)
(gimp-selection-invert theImage)
(if (= FALSE (car (gimp-selection-is-empty theImage)))
(gimp-edit-clear theLayer)
)
(gimp-selection-invert theImage)
(gimp-selection-none inImage)
(gimp-layer-scale theLayer
(/ theWidth inGranu)
(/ theHeight inGranu)
TRUE)
(plug-in-spread RUN-NONINTERACTIVE
theImage
theLayer
inSpread
inSpread)
(plug-in-gauss-iir RUN-NONINTERACTIVE
theImage theLayer inSmooth inSmoothH inSmoothV)
(gimp-layer-scale theLayer theWidth theHeight TRUE)
(plug-in-threshold-alpha RUN-NONINTERACTIVE theImage theLayer inThreshold)
(plug-in-gauss-iir RUN-NONINTERACTIVE theImage theLayer 1 TRUE TRUE)
(gimp-image-select-item inImage CHANNEL-OP-REPLACE theLayer)
(gimp-image-remove-layer theImage theLayer)
(if (and (= (car (gimp-item-is-channel inDrawable)) TRUE)
(= (car (gimp-item-is-layer-mask inDrawable)) FALSE))
(gimp-image-set-active-channel theImage inDrawable)
)
(gimp-image-undo-group-end theImage)
(gimp-image-set-active-layer theImage prevLayer)
(gimp-displays-flush)
(gimp-context-pop)
)
)
(script-fu-register "script-fu-distress-selection"
_"_Distort..."
_"Distress the selection"
"Chris Gutteridge"
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
"23rd April 1998"
"RGB*,GRAY*"
SF-IMAGE "The image" 0
SF-DRAWABLE "The layer" 0
SF-ADJUSTMENT _"Threshold (bigger 1<-->254 smaller)" '(127 1 254 1 10 0 0)
SF-ADJUSTMENT _"Spread" '(8 0 1000 1 10 0 1)
SF-ADJUSTMENT _"Granularity (1 is low)" '(4 1 25 1 10 0 1)
SF-ADJUSTMENT _"Smooth" '(2 1 150 1 10 0 1)
SF-TOGGLE _"Smooth horizontally" TRUE
SF-TOGGLE _"Smooth vertically" TRUE
)
(script-fu-menu-register "script-fu-distress-selection"
"<Image>/Select/Modify")
|
|
|
ofn-stroke-fill-paths |
Posted by: Ofnuts - 06-23-2018, 09:00 AM - Forum: Extending the GIMP
- Replies (11)
|
|
Following EsperMachine's remarks, I'm going to upgrade the script formerly known as stroke-fill-visible-paths. The changes I envision are:
- add a "reverse gradient" option
- add stroke in "line" mode for cleaner results
- possibly split the stroke/fill choices in two different menu entries
Anything else?
|
|
|
|