Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,564
» Latest member: Henrry
» Forum threads: 7,447
» Forum posts: 40,700
Full Statistics
|
|
|
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?
|
|
|
New to Gimp |
Posted by: iEnemyBeneath - 06-23-2018, 01:33 AM - Forum: General questions
- Replies (1)
|
 |
Hello all,
I am very very new to Gimp and image programs in general. I have been trying to make logos and stuff for my Twitch stream.
I am having an issue when I make a circle and fill it with color. As soon as I do Select---->None, the whole page changes color and I can't seem to figure out how to keep that from happening.
Any ideas?
Thank you in advance,
iEnemyBeneath
I want to note that I have followed along with youtube videos to get the feel of the program and for some reason my program doesn't seem to work the same way as the people's in the video. Almost like I missed I step along the way.
|
|
|
Cannot choose paper size when printing |
Posted by: ajax - 06-22-2018, 07:42 PM - Forum: General questions
- Replies (9)
|
 |
Using GIMP 2.10.2 on Windows.
I've edited an image and set the "Print Size" to 5x7 with the intention of printing on 5x7 paper. I select "File>Print" and then choose "Preferences" which invokes the setup options for my printer, which is Canon Pixma Pro-100, driver. Using these setup options I choose 5x7 for the paper size. Then when the driver is invoked (i.e., "Print" is selected), where I've asked for a preview during the setup, the paper size is now specified 8.5x11 and the preview shows the 5x7 picture to be printed in the upper left corner of the page.
I think this is a pretty straightforward, commonly used, interface that I'm using correctly. If not what did I miss? If so, what about fixing GIMP.
|
|
|
|