Re: [Gimp-user] HELP! Exporting To PDF

2020-02-13 Thread Ofnuts
On 2/13/20 8:43 PM, joelandsonja wrote: I am having a major issue whenever I export my image file to PDF. I have to export the image to the exact same size for the PDF file, but whenever I export the image it changes the size of the image in the PDF file (it makes it larger). Can someone

Re: [Gimp-user] How to get the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread Ofnuts
Uh? You can write to a file from the script, using the regular I/O functions. For more structured data you can also use the built-in CSV module to write CSV files, and it is also possible to add excel support to the python runtime. On 2/14/20 8:19 AM, ShiroYuki Mot via gimp-user-list wrote: On

Re: [Gimp-user] How to get the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread Ofnuts
See: non_empty, x1, y1, x2, y2 = pdb.gimp_selection_bounds(image) On 2/14/20 7:14 AM, tamasakai wrote: How to get the positions(x,y) (width, depth) of selected rectangle or selected ellipse I read such numbers on GIMP and write them in Excel files but sometime human error occurs. I want to

Re: [Gimp-user] How to get the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread ShiroYuki Mot via gimp-user-list
On Python console, this is what you want. non_empty, x1, y1, x2, y2 = pdb.gimp_selection_bounds(image) See, 'gimp-selection-bounds' at Procedure Browser. But, handning values to external App is not so easy. If you add external library 'pyperclip' you can write to clipboard. But it is one value

[Gimp-user] How to get the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread tamasakai
How to get the positions(x,y) (width, depth) of selected rectangle or selected ellipse I read such numbers on GIMP and write them in Excel files but sometime human error occurs. I want to automate the process. I read instructions of Python-Fu but there so many functions then I could not find out

[Gimp-user] No gimp-python in Debian (Testing)

2020-02-13 Thread Scott Jacobs via gimp-user-list
At some point after I first installed Debian (last year), the gimp-python package disappeared from Debian Testing. I already had it, so never noticed... I just did a clean install of Debian Testing LXQt, installed GIMP, moved over my Resynthesizer-based plugins, and tried to use Heal Selection.

[Gimp-user] HELP! Exporting To PDF

2020-02-13 Thread joelandsonja
I am having a major issue whenever I export my image file to PDF. I have to export the image to the exact same size for the PDF file, but whenever I export the image it changes the size of the image in the PDF file (it makes it larger). Can someone please help me with this problem? --