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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,916
» Latest member: Username1242
» Forum threads: 7,684
» Forum posts: 41,795

Full Statistics

Latest Threads
"Plug-in crashed" on GIMP...
Forum: General questions
Last Post: rich2005
37 minutes ago
» Replies: 3
» Views: 328
AIMAGoR - Artificial IMAg...
Forum: Other graphics software
Last Post: vitforlinux
2 hours ago
» Replies: 23
» Views: 9,657
Isolate, select and copy/...
Forum: General questions
Last Post: denzjos
Yesterday, 06:22 PM
» Replies: 5
» Views: 271
RapidRAW
Forum: Other graphics software
Last Post: denzjos
Yesterday, 12:51 PM
» Replies: 2
» Views: 180
Tutoriel installer Drea...
Forum: Tutorials and tips
Last Post: meric57
Yesterday, 07:45 AM
» Replies: 0
» Views: 14
Nouveau Arrivant sur le f...
Forum: Watercooler
Last Post: meric57
Yesterday, 06:45 AM
» Replies: 0
» Views: 15
Accessing GIMP’s internal...
Forum: General questions
Last Post: rich2005
11-02-2025, 12:35 PM
» Replies: 1
» Views: 159
Can't find path plug-in
Forum: General questions
Last Post: programmer_ceds
11-01-2025, 04:47 PM
» Replies: 7
» Views: 446
Gimp shows blank black sc...
Forum: Windows
Last Post: rich2005
11-01-2025, 09:01 AM
» Replies: 1
» Views: 160
Outlined and filled in 3....
Forum: General questions
Last Post: rich2005
10-31-2025, 04:42 PM
» Replies: 2
» Views: 240

 
  GraphicaBTW
Posted by: dinasset - 03-18-2018, 04:27 AM - Forum: Extending the GIMP - Replies (7)

Another filter for 2.9.9
This one was initially inspired by a mural I've seen on my town:
the author -instead of painting the whole image- only painted:
- in white the lightest parts of the image
- in black the darkest parts of the image
I liked it.
Hence I created a filter which separates (using threshold):
- the values of the image between 0 and the first stop (default 85)
- the values of the image between the second stop (default 170) and 255
As BG i used a layer filled with a bricks pattern.
Over the BG there is a layer for the "whites" and the layer for the "blacks".
The intermediate values -remaining transparent- show the BG bricks.
So I got what I liked.
Afterwards I added some options to this filter:
- the possibility to use whatever BG is wanted by the user
- the possibility to replace white/black with a duotone:
  if the user has changed BG and/or FG colours, those two are used
  if not default yellow and blue are used 
- the possibility to let the lightest/darkest values to maintain the original.
Here the filter.
Hope someone likes to test it.
Comments/critics/suggestions are welcome.




Attached Files Thumbnail(s)
           

.7z   DIEGO_HaveFun_GraphicaBTW299.7z (Size: 2.2 KB / Downloads: 681)
Print this item

  Erase several horizontal pixel lines
Posted by: Lisandro Amado - 03-17-2018, 06:05 PM - Forum: General questions - Replies (2)

Hi! I am wondering ir there's some way to erase an array of complete lines of pixels from an image. I want to convert am image to a ser of thin horizontal lines over an alpha background. Might that be possible? I guess it's easy with some coding. Thanks for reading!

Print this item

  resolution and quality issues
Posted by: alin33 - 03-17-2018, 04:24 PM - Forum: General questions - Replies (2)

I'm creating digital art in gimp which is printed in big sizes also(18"x24" 300 ppi).When I create the art I give the max dimensions to the image(18"x24" 300 ppi)
Now there are additional graphics and elements I want to add to the image-the graphics I want to add are 300 dpi but smaller in image size-so I need to scale them-so they fit my big document-I'm afraid that during the scaling of the outer graphics their quality will be lost-I'm trying to understand what happens to resolution if scaling-My main concern is the quality of the digital art-the final product-I need it to be 300 ppi at big size(18" 24")so just want to understand the wise way to use external graphics -and how to scale them without harm to the resolution and quality-I'm trying to understand what happens to the quality when I scale this external graphics-do they lose their quality? Does their resolution change? Does resolution in general changes during scaling?

Print this item

  How to remove someone from a picture?
Posted by: timoseewho - 03-17-2018, 05:31 AM - Forum: General questions - Replies (10)

hello all! so i'm extremely new to photo editing but i was given a task to edit someone out of a photo haha. i did a bit of digging and came across the Resynthesizer tool, using the Heal Selection subtool. i've gone ahead and did what this thread https://www.gimp-forum.net/Thread-Resynt...or-Windows said to do, but when i open up Gimp, i don't have Heal Selection under Enhance, but i do have Resynthesizer under Map. what am i doing wrong?

thanks

Print this item

  Use of LayerFx Stroke
Posted by: dinasset - 03-16-2018, 03:07 PM - Forum: Scripting questions - Replies (2)

I'm trying to use (from inside a .py filter) the effect "stroke" of the filter "layerfx.py".
While interactively both options ("color" and "gradient", didn't test the pattern) work properly, when called the option "color" works, the option "gradient" gives an ununderstandable error message (something like: wrong number of parameters, expected maximum 4 received 8).
Hence there should be something wrong in my call.
I wrote a little filter for testing, some expert can simply read the source and find the error or run the minifilter and test the 2 options (default=color, gradient only if chosen).
Thanks for any help.
(I'm running Windows 10 64bits, but the problem has been confirmed also on a system running Windows 7 32bits)



Attached Files
.7z   DIEGO_TEST_TestLayerFx.7z (Size: 988 bytes / Downloads: 585)
Print this item

  Layer opacity shortcut
Posted by: DaveMac - 03-16-2018, 08:20 AM - Forum: Scripting questions - Replies (7)

Hi all,
I've been using Gimp for years on a fairly basic level. Recently I have been doing a lot of image stitching - there's overlap in the individual images so I just bring them in as layers, reduce the top level opacity, match positions, return it to full opacity and merge down. Not difficult but repetitive.
I make a lot of use of keyboard shortcuts ("Accelerators") and the preset "10% more Transparent" is great but I generally need to press it 3 or 4 times to get a useable level of transparency. 
That got me thinking about Gimp's scripting potential, something I've never looked at before - "set active level to 60% opacity" with a single keypress would be so useful for me.
I'm very familiar with html and Office VBA but my first looks at python-fu have me very confused. If I just want this function do I have to create a plug-in and register it then get it to appear in the list of available commands so I can assign a combination of keys? The python console itself is already pretty confusing.
I think I've got something that could maybe do what I want but I can't figure how to run it to see what happens in order to debug. Then again maybe I'm completely off track...

➤> image = gimp.image_list()[0]
➤> active_layer = pdb.gimp_image_get_active_layer(image)
➤> pdb.gimp_layer_set_opacity(active_layer, 60)

Any help with solving this would be greatly appreciated.

Print this item

  Disaster from duplicating all the frames of a GIF
Posted by: HavingTooMuchFun - 03-16-2018, 07:43 AM - Forum: General questions - Replies (5)

I had something that I wanted to do with a gif that has only 3 frames, so I though, why not just duplicate each frame, then I'd have a 6-frame gif to work with...  right?  WRONG:

[Image: combine.gif]

I DID unoptimize before doing anything, and the frames all looked perfect. I kept them all as "combine," since that's how they came, BUT, when I optimized at the end, Gimp switched a couple of frames to "replace"...?!! (This was the 2 frames that weren't the copy of the Background frame.)

So, I thought, ok, it wants to do replace, I'll make them ALL replace...:

[Image: replace.gif]

So much for THAT idea, LOL!! I'm clearly missing something important here... I'd sure be grateful if someone could tell me WHAT!

SaveSave

Print this item

  Removing excess colors from monochromatic color palette
Posted by: officer - 03-16-2018, 12:13 AM - Forum: General questions - Replies (1)

Basically, I'm looking to remove colors that seem out of place in strokes because of the color difference.

[Image: 19357afb4d.png]

The red arrows here are pointing to random looking colors that seem out of place. Pinkish and greenish, generally. The blue circles are the colors I'm looking to normalize the outlines to. Unfortunately, selecting them with the magic wand is a pain and the color picker no less. The color filters that I then use aren't very accurate as to where I'd like the regular colors to be. I've tried selecting the lines themselves with the magic wand so that I could try to feather the selection and then fill it in with the color I'd like, but there's a very narrow window that I was able to find that kept teetering between selecting a small handful of pixels on the line, and it leaking the selection into other parts of the image. I imagine that there's a much easier way that I'm not aware of.

Solution? Tips?

Thanks for any feedback.

Print this item

  Modify with Gimp
Posted by: quand - 03-15-2018, 05:46 PM - Forum: Windows - Replies (2)

Hi Guys

under windows 8, I had, right-clicking on a picture file or even on a files set, the possibility to select "Modify with Gimp", at the top of the context menu......

under windows 10, I lost this function, so does someone know how to create it via "regedit", windows register...?

in fact, this function appear again if I set before "always open with Gimp" (jpg files by exemple...)

but I want to keep the possibility to always open jpg files with the "windows viewer" and use Gimp only when I want to work on


Thanks a lot

Print this item

  How do i Resize A Cirlce and Square for drink coasters
Posted by: nicholascopey - 03-15-2018, 05:32 PM - Forum: General questions - Replies (3)

Hi iam currently starting a little businees doing drink coasters, the coasters take 9 centimeter photos , 
can anybody help me and explain how i resize a image ready for print . 
iam new to gimp if anybody can help me out step by step then i will send them a free gift.please help me out

thx
nick

the size of the drinks coastes
SQUARE 90MM x 90MM
CIRCULAR 90MM

Print this item