[Gimp-user] gegl segv

2017-02-14 Thread damianc
If anyone else runs up against this the fix is to preload the libraries in the right order: export LD_PRELOAD="/path-to/libpthread.so /path-to/libGL.so" -- damianc (via www.gimpusers.com/forums) ___ gimp-user-list mailing list List address:

[Gimp-user] Copy png to clipboard via gimp-console

2017-02-14 Thread pUlI
Hi all, I would like to copy a png file to the clipboard using (for instance): gimp-console-2.8 -i -d -f -b '(png-copy "snapshot1.png")' -b '(gimp-quit 0)' The scheme code I have for the same is attached "png-copy.scm" However, it does not work as expected. Only an empty "carriage return"

[Gimp-user] Convert image to black and white

2017-02-14 Thread rich2005
>I am trying to convert a image from color to black and white. I am >trying to convert a family from color to black and white using Gimp. I >don't have much experience with Gimp, so any help would be nice. First thing: Your image is in **color indexed** mode. Change that to RGB (an alternative is

[Gimp-user] Convert image to black and white

2017-02-14 Thread slmgf8
I am trying to convert a image from color to black and white. I am trying to convert a family from color to black and white using Gimp. I don't have much experience with Gimp, so any help would be nice. Attachments: * http://www.gimpusers.com/system/attachments/481/original/McIntire.png --

[Gimp-user] Automatic flattening when exporting

2017-02-14 Thread Jaguar
>Have you tried Image>Duplicate image (Ctrl-D) and then flatten/export >the copy? Yes. The advantage is, you won't destroy your original image, but the process is longer again. The old option would basically do the flattening as part of the save and leave the original in tact. -- Jaguar (via

Re: [Gimp-user] Automatic flattening when exporting

2017-02-14 Thread Ofnuts
On 14/02/17 05:29, Jaguar wrote: I'm using GIMP 2.8.18. In previous versions, if you exported (saved as it used to be) to a format that doesn't support layers, but does support transparency (such as PNG), you would get a dialog asking if you wanted to merge or flatten. This dialog has

Re: [Gimp-user] Copy png to clipboard via gimp-console

2017-02-14 Thread Ofnuts
On 14/02/17 12:03, pUlI wrote: Hi all, I would like to copy a png file to the clipboard using (for instance): gimp-console-2.8 -i -d -f -b '(png-copy "snapshot1.png")' -b '(gimp-quit 0)' The scheme code I have for the same is attached "png-copy.scm" However, it does not work as expected.