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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,915
» Latest member: gimp1
» Forum threads: 7,682
» Forum posts: 41,790

Full Statistics

Latest Threads
Isolate, select and copy/...
Forum: General questions
Last Post: denzjos
5 hours ago
» Replies: 5
» Views: 203
RapidRAW
Forum: Other graphics software
Last Post: denzjos
10 hours ago
» Replies: 2
» Views: 139
AIMAGoR - Artificial IMAg...
Forum: Other graphics software
Last Post: rich2005
Yesterday, 06:57 PM
» Replies: 22
» Views: 9,544
Accessing GIMP’s internal...
Forum: General questions
Last Post: rich2005
Yesterday, 12:35 PM
» Replies: 1
» Views: 132
Can't find path plug-in
Forum: General questions
Last Post: programmer_ceds
11-01-2025, 04:47 PM
» Replies: 7
» Views: 398
Gimp shows blank black sc...
Forum: Windows
Last Post: rich2005
11-01-2025, 09:01 AM
» Replies: 1
» Views: 148
Outlined and filled in 3....
Forum: General questions
Last Post: rich2005
10-31-2025, 04:42 PM
» Replies: 2
» Views: 221
Upgrade 3.0.6
Forum: Windows
Last Post: J-C R 45
10-31-2025, 03:07 AM
» Replies: 4
» Views: 390
Astrophotography - Creati...
Forum: Tutorials and tips
Last Post: Zero01
10-30-2025, 07:24 PM
» Replies: 5
» Views: 588
"Plug-in crashed" on GIMP...
Forum: General questions
Last Post: rich2005
10-29-2025, 09:26 AM
» Replies: 1
» Views: 285

 
  Text tool misbehaving
Posted by: sancho - 02-05-2019, 05:08 PM - Forum: General questions - Replies (1)

Hello:
I am working on an image and already have lots of text layers.  
Now, when I try to add another text item it pops up as though I am editing a pre-existing text layer complete with the text and the message that it has been modified and I must choose between editing and creating a new layer.  
This happens no matter where I click on the image with the text tool.  And no matter what layer is selected, when I click with the text tool the pre existing layer is selected.

I want a new text item.
What have I done and how do I undo it?

Edit:
I have figured it out.
When I resized my canvas I resized all my layers to the canvas size. (Bad move)
So when I click on the canvas it thinks I am clicking on my text box.
I tried selecting the text and using 'crop to selection' but that didn't change the layer boundary.
I had to use the 'layer boundary size' dialog and enter width, length and resize.

Print this item

  Hard drive noises when performing operations
Posted by: safsf - 02-05-2019, 04:39 PM - Forum: General questions - Replies (1)

I have gimp's tile cache size set to 5 GB (I have 8GB RAM, 1.75G in use). The temp and swap folders are set to a ramdisk. However, whenever I perform some function in gimp (say: moving a layer, filling a region, showing/hiding a layer), I hear what sounds like hard disk access.
How can I get GIMP to use my RAM which is more than sufficient for the size of images I edit, and not touch my disk except when saving and loading?

Print this item

  Cloning colors (newbie question)
Posted by: Garm - 02-05-2019, 02:25 PM - Forum: General questions - Replies (1)

Hi. I've been using the GIMP 2.8 for a while now for presentation materials, but that has generally involved repeating the same 4 - 5 tasks, so I don't really know the full range of options.

I have a series of photos I have been working on, and some of them were taken with an older camera. These photos seem to have a warmer and deeper color to them than the new ones. I've tried to recapture it by adjusting the camera settings but that does not yield any good results. I was wondering if there is any way of cloning the colors from the older photos to the newer ones, or other way of using the older photo as a template/base for new ones?

Print this item

  Crosshair Guides
Posted by: akovia - 02-05-2019, 01:52 AM - Forum: Extending the GIMP - No Replies

A feature that should have been in the core (IMHO) from the word go is center guides. aka "crosshairs"

I was watching the video about rotating using the measure tool here on the forums and it made me think how I would do it. I found this simple script years ago and can't imagine using gimp without it. It will drop 50% horizontal and 50% vertical guides on your current layer. It's nice that it goes by the layer and not image so it makes it easy to rotate objects and text on their center axis and not the center of the canvas size.

You can get center guides through all sorts of plugins, scripts, or even the menus, but if you bind this to a shortcut you are always just a key or key combo away from crosshair guides. I also use a shortcut to clear all guides so I can reuse my crosshairs easily when aligning multiple items. 





I do realize that I could have saved some steps by centering to the canvas first but wanted to show how to reuse the guides easily.



Attached Files
.zip   Gregs Crosshairs.scm.zip (Size: 588 bytes / Downloads: 722)
Print this item

Question Script-FU: Batch rotate script
Posted by: dnairb - 02-03-2019, 11:37 PM - Forum: Scripting questions - Replies (5)

I am trying to write a batch rotate script, to rotate a number of images by an angle which is passed to the script.
I have the following, which is successfully registered in Gimp:

Code:
(script-fu-register
  "script-fu-batch_arbitrary_rotate"
  "Batch Rotation"
  ""
  ""
  ""
  ""
  "*"
)

(script-fu-menu-register "script-fu-batch_arbitrary_rotate" "<Image>/Tools/My scripts")

(
define (script-fu-batch_arbitrary_rotate pattern inDegrees)
  (let*
    (
      (filelist (cadr (file-glob pattern 1)))
    )
    (while
      (not (null? filelist))
      (let*
        (
          (filename (car filelist))
          (image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
          (radians ( / (* inDegrees 4 (atan 1.0)) 180)) ;converts angle <inDegrees> to radians
          (gimp-item-transform-rotate image radians FALSE 150 150)
          (drawable (car (gimp-image-get-active-layer image)))
          (gimp-file-save RUN-NONINTERACTIVE image drawable filename filename)
        )
        (set! filelist (cdr filelist))
      )
    )
  )
)

This is called in terminal by (to rotate each image by 35 degrees and save):
Code:
gimp -i -b '(script-fu-batch_arbitrary_rotate "*.png" 35)' -b '(gimp-quit 0)'

The terminal output states: "batch command executed successfully", but the images are not rotated. The files' properties suggest that no operations were performed.

I have racked my brains over this; can anyone help with the above script?

Print this item

  Add new paint method ?
Posted by: Jack Parker - 02-03-2019, 10:48 PM - Forum: Scripting questions - Replies (14)

Is there a way (short of C code and recompiling GIMP) to add a custom paint-method?
I'd like to add a new painter to the list (gimp-context-list-paint-methods) 
So that (gimp-drawable-edit-stroke-selection drawable) will do a custom procedural edit to the pixels.

Print this item

  extend colormap in indexed pictures
Posted by: gizaha - 02-03-2019, 03:40 PM - Forum: Scripting questions - Replies (1)

Hello there. I have a problem that tortures me 2 days now. 
I want to extend the colormap at indexed pictures by one color with script fu.


;get colormap length from header
(set! colormap_length (car (gimp-image-get-colormap image)))     

;get colormap data from tail
(set! colormap (car (cdr (gimp-image-get-colormap image))))

;extend header
(set! colormap_length (+ colormap_length 3))      ;increaze by 3 bytes/1 color

;extend tail
;here, i want to make colormap:=colormap+"000000" thus extend the list

;set new colormap
(gimp-image-set-colormap image colormap_length colormap)

(Variables are defined ok)
I tried almost everythink while playing with let, set, list, cons car etc etc.
Thank you.

Print this item

  Avatar
Posted by: charlie84 - 02-03-2019, 02:00 PM - Forum: Gimp-Forum.net - Replies (2)

Hi, I tried to insert my avatar with dimensions smaller than 100x100 and less than 25Kb.

A message tells me that it has been accepted. Bat I do not see it on the forum near my nick name.

Print this item

  Why do people post more images in Winter?
Posted by: Ofnuts - 02-02-2019, 08:56 PM - Forum: Gimp-Forum.net - Replies (2)

[Image: WQEdWQu.png]

Print this item

  problem with set color to alpha
Posted by: rickk - 02-02-2019, 01:35 AM - Forum: General questions - Replies (13)

New to all of this, Perhaps I am trying to go about this the wrong way.....not sure.
But, for instance,  suppose I wanted to cut an image of somebody  out of picture "A", and insert it into an already existing image "B"

SO, I painstakingly draw a white area  all around the perimeter of the desired target image, then extend that white area sufficiently large that I can select and crop to a rectangular  image for use.
Then I review the image and find a color not in use in the  target image, say  HTML color h1cf905 for  example ....no sign of that color anywhere in the target image , and then change the white area surrounding the target to that color, and then set that color to alpha.


Hoping to paste that image, complete with the transparent surround, into the "B" image.
Except when I set the surround color to alpha, it's causing the colors in the target image to get all whacked out.  For instance  with the  color mentioned  set to alpha, everything is shifting into violet colors.

Almost seems like the "color to alpha" function isn't discriminating properly, and is perhaps shifting all greens to alpha?
Thanks in advance for pointing me in the right direction

Print this item