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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,911
» Latest member: kristalyn
» Forum threads: 7,362
» Forum posts: 40,086

Full Statistics

Latest Threads
Converting python plugin-...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: n3306tx
31 minutes ago
» Replies: 42
» Views: 4,120
selecting a fixed size re...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
8 hours ago
» Replies: 4
» Views: 181
RemoveBG, how to install ...
Forum: Extending the GIMP
Last Post: CtrlAltDel
10 hours ago
» Replies: 11
» Views: 373
New color : olo
Forum: Watercooler
Last Post: denzjos
Today, 07:51 AM
» Replies: 0
» Views: 56
Windows Portable Gimp 3.0...
Forum: Alternate Gimp packagings
Last Post: rich2005
Yesterday, 07:57 PM
» Replies: 0
» Views: 91
Masking/Cutting/Layering?
Forum: General questions
Last Post: rich2005
Yesterday, 07:43 PM
» Replies: 1
» Views: 116
Need help installing Resy...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
Yesterday, 05:58 PM
» Replies: 3
» Views: 192
arrow-set-size.scmについて
Forum: Gimp 2.99 & Gimp 3.0
Last Post: mkunio
Yesterday, 05:37 PM
» Replies: 3
» Views: 162
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
04-18-2025, 03:58 PM
» Replies: 6
» Views: 629
My instution block downlo...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: vitforlinux
04-18-2025, 12:32 PM
» Replies: 3
» Views: 178

 
  Animations and Layers editor
Posted by: SeanRickard - 01-24-2024, 08:26 AM - Forum: General questions - Replies (2)

I'm new here, so hi.

After optimising for an animation, is there a way of exporting the list showing in the Layers Editor as a text fiile?

For Example:
----------------

img001.jpg(100ms)
img002.jpg(2000ms)
img003.jpg(200ms)
.... etc

cheers Sean.

Print this item

  Why is the Move tool moving the wrong layer?
Posted by: Ofnuts - 01-23-2024, 08:43 AM - Forum: Tutorials and tips - No Replies

By default, the Move tool auto-picks the layer of the top most-non transparent pixel where you click. So, starting with such an image:

   

Depending on where you click the Move tool will pick a different layer:

   

This can be disconcerting at times because if you click at random in text, you could be clicking on a transparent spot (for instance, inside the D or O above) and so selecting a layer below (the background or the green spot), which will make the move tool move that layer and not the text layer.

So, to move text, you have  to click on the characters themselves (or on any opaque part of the layer, but this is what we are naturally doing most of the time for non-text layers). 

In case of dire need, you can make the Move tool act on  the active layer:

   

But instead of checking the tool option, you can also just start the drag with a shift-click. It is usually a bad idea to set the tool permanently in the Move active layer mode, because it makes arranging several layers very cumbersome.

Finally, remember that in the Text tool, you can move the layer you are editing by Alt-Control-drag (independently of where you click).

Print this item

  Text randomly gets selected at the font edges?
Posted by: Snacko - 01-22-2024, 08:52 PM - Forum: General questions - Replies (2)

I rebuilt my pc about 2 months ago and reinstalled GIMP.

Sometimes when I am editing or adding text, the text gets selected around the edges of the font, like it was an image.  But it's just text..  I have not done anything to the text.  And sometimes it does this to other text on the screen that has nothing to do with the text I was working with.  Like 1/3rd of the text layers on the screen.  This happens randomly and I have checked in the Preferences and tools, but found no setting that would do this...

Any Help is appreciated.

   

Print this item

  Removing crossed out from a picture
Posted by: javitolin.ar - 01-20-2024, 10:41 PM - Forum: General questions - Replies (5)

Hi Folks, let's say i 've got a picture on my phone and I edit it adding a crossed out to the image using the pencil tool. Can I remove that using the gimp?

Thanks in advance

Print this item

  How to pad an image with extra transparent border
Posted by: rinaldop - 01-20-2024, 11:58 AM - Forum: General questions - Replies (8)

Hello all,

I am back with a continuation of my project from my last post. I have 60 images that start at 420x37 and decrease in length by 7 pixels per image like so

   
   
...
   

What I need to do is make all of the images back to 420x37 by putting a transparent edge on the left side like so
   

I am on the right track using canvas resize with an offset to move the image to the right. Everything looks fine in Gimp but when I try to flatten the image so that I can save the new file I get an error.

Also is there a way to automate the process for all 60 images?

Thanks for helping out a newbie!

Print this item

  Open Perspective Tool with detached adjustment Dialog
Posted by: MrGrey - 01-20-2024, 09:25 AM - Forum: General questions - Replies (3)

Hi,

when i open the perspective tool the adjustment Dialog is fixed to the top right corner. i have to detach it manually every time i use the tool. I is possible to open the dialog detached every time i use the tool?

Print this item

  Change Foreground Colour dialog
Posted by: Quasar999 - 01-19-2024, 09:59 PM - Forum: Installation and usage - Replies (1)

Hello
is there a shortcut to call the Change Foreground Color that work also when the panels are hide?

Print this item

  Transform an image into different aspect ratios
Posted by: SpaceMonkey - 01-18-2024, 10:11 PM - Forum: Scripting questions - Replies (7)

Hello,

I just started today with this quest:

1.) Read the filename and save it.
2.) Resize the image to a specific aspect ratio.
3.) Add a prefix to the filename and save it as an jpeg in a specific folder.
4.) Undo all steps and repeat steps 2. und 3. different values.

I came this far:

Code:
from gimpfu import *

# The real code.
def setAspectRatios():
   # create the object of the image
   image=gimp.image_list()[0]
   # resizes the file to AR 2-3
   pdb.gimp_image_resize(image, 5333, 8000, -345, 0)
   # create the new name AR 2-3
   img_name_ar_2_3 = "AR_2-3_" + image.name
   # define drawable
   drw = image.layers[0]
   # save the image as jpeg
   pdb.file_jpeg_save(image, drw, img_name_ar_2_3, img_name_ar_2_3, 0.90, 0, 1, 1, "Aspect Ratio 2-3", 3, 1, 0, 2)

   
register(
   'set-aspect-ratios',                # Unique ID,
   'create different aspect ratios',   # Description/title
   'Add a white layer',                # Help
   "Author",                           # KJ
   "Author",                           # Copyright KJ
   "2024",                             # Copyright 2024
   'Set Aspect Ratios',                # The menu label
   "RGB*",                             # The type of images it can work on. Use "*" for all types
   # [                                 # List of input parameters
   #    (PF_IMAGE, "image", "Input image", None)  
   #                                                
   #],
   [],                                 # List of output parameters
   setAspectRatios,                      # The Python code that implementsthe plugin
   menu="<Image>/Layer",               # Where the menu label above appears
)

main()

But I have some questions to fill the blanks:

Q1: I know now that image.name does not work properly. Is there another way besides using pdb.gimp_image_get_filename(image) and trim the complete path down to the filename to just get the name of the file I imported?
Q2: What type is "drawable" - I could not find a good explanation. Do I use this correctly?
Q3: Undo is still a miracle for me. I saw that you can create groups and that you can enable, freeze, and disable it but I dont know how to trigger a simple undo to reverse steps 2. and 3. to the back to the original image.

Thanks in advance! Smile

Print this item

  Lost box
Posted by: Ernst - 01-18-2024, 01:49 PM - Forum: General questions - Replies (3)

I lost the tool detail box. For instance, the Dodge/burn tool is active but I cannot see the size, opacity and so on sliders. How do I get it back?

Print this item

  Help with creating an animation from right to left
Posted by: rinaldop - 01-17-2024, 03:50 PM - Forum: General questions - Replies (4)

Hello,

I have a strange question that I hope I can explain well. I have created 60 frames of a line image that shrinks from right to left. Here is a representation to try and show what I am doing 

----->
--->
->

I did this by creating each image 7 pixels shorter and then displaying image 60 to 1 in a countdown 

What I want to do now is reverse the animation like this 

<------
<---
<-

The problem is that I am trying to do this in a program that is used to create graphics for PC Sensor Panels (Aida64)

Apparently it displays images left justified so the only way I can think to do this is to push the frames from right to left like this 

<-----
..<---
....<-

and make the ... transparent 

Is there an easier way?

Thanks

Print this item