Re: [Gimp-developer] Need help with Python on GIMP 2.8 for bug fixing

2013-08-02 Thread Ofnuts
On 08/02/2013 08:33 PM, b...@neeneenee.de wrote: Dear GIMP devs, i'm the author of "CMYK Tiff 2 PDF" which is an addon for GIMP and the Seperate+ plugin. My script is part of the plugin registry too. But it seems it doesn't show up in GIMP 2.8./ Ubuntu. I changed the pythin script registrat

Re: [Gimp-developer] Need help with Python on GIMP 2.8 for bug fixing

2013-08-03 Thread Ofnuts
On 08/03/2013 11:04 AM, b...@neeneenee.de wrote: Hi all, thanks for the first hints but no way to get it working. My plugin structure for testing is: from gimpfu import * import os, string, sys import os.path gettext.install("gimp20-python", gimp.locale_directory, unicode=True) def python_fu_

Re: [Gimp-developer] select by opacity

2013-08-20 Thread Ofnuts
On 08/20/2013 01:12 PM, Josh Coppersmith-Heaven wrote: hi all, here is a simple idea, which would be very useful in certain situations... on the 'select by colour' or 'select by contiguous region' tool, it would be GREAT if there was a further option to select on the basis of opacity, from

Re: [Gimp-developer] converting svg to png with black background

2013-09-25 Thread Ofnuts
On 09/20/2013 08:01 PM, Matt Becker wrote: Hi, not sure if this is the right mailing list, I'm trying to convert svg to png (which is working), I just need to get the background black. Here's my scm script: (define (svg-to-raster infile outfile

Re: [Gimp-developer] text-tool 'Font' panel & bold/italic simulation for CJK

2013-10-05 Thread Ofnuts
On 10/05/2013 01:10 AM, Thomas W wrote: Just trying out the Text Tool UI, re: font simulation. There's a bit of a usability problem in 2.8.4 -- if you type text, remove it, change the font-size & click in back in the box to type something else -- your size setting is always rejected & reverted t

[Gimp-developer] Mystery: scaling "thin" areas makes them partially transparent

2013-10-09 Thread Ofnuts
I have a layer filled with black 100% opaque. If I select a 3px wide strip only shrink the long side, the final result is not 100% opaque: I get a one-pixel high black line at 100% opacity with a black line at 87% opacity on each side. And is the selected strip is only 1px high, the resulting

Re: [Gimp-developer] Mystery: scaling "thin" areas makes them partially transparent

2013-10-09 Thread Ofnuts
On 10/09/2013 06:59 PM, Nicolas Robidoux wrote: Note: Enlarging or shrinking abnormally small images is not part of the target use case. I also am not 100% sure that the above recommendation is consistent with the target use case. Actually I found this while working on a script that does a no

[Gimp-developer] What is the purpose of the checkerboard pattern in the color history buttons?

2013-11-16 Thread Ofnuts
In the color history of the FG/BG color selector dialog, the buttons may appear split in two along a diagonal with the color on top left and a checkerboard pattern on the bottom right. This happens when the color is obtained using the color picker button in the same dialog. However I can't figu

Re: [Gimp-developer] What is the purpose of the checkerboard pattern in the color history buttons?

2013-11-17 Thread Ofnuts
On 11/16/2013 10:56 PM, Michael Natterer wrote: On Sat, 2013-11-16 at 22:05 +0100, Ofnuts wrote: In the color history of the FG/BG color selector dialog, the buttons may appear split in two along a diagonal with the color on top left and a checkerboard pattern on the bottom right. This happens

[Gimp-developer] Offline help files

2013-11-27 Thread Ofnuts
It seems that the page at http://www.gimp.org/downloads/ - lists the help files in the "source" section, which isn't where Joe User would search them, and doesn't make it clear that these are in a directly usable format, - doesn't list at all the Windows installer for said help. _

Re: [Gimp-developer] Bug 719435

2013-12-01 Thread Ofnuts
On 11/30/2013 10:53 PM, Hodgin, Rick C. wrote: I was asked by Michael Natterer to discuss this enhancement on the GIMP developer list. https://bugzilla.gnome.org/show_bug.cgi?id=719435 Basically, I'd like to see the line cue for the Pen tool colorized when either of the two X,Y axis offsets ar

Re: [Gimp-developer] Bug 719435

2013-12-02 Thread Ofnuts
On 12/02/2013 01:10 AM, Rick C. Hodgin wrote: On 12/01/2013 12:15 PM, Ofnuts wrote: On 11/30/2013 10:53 PM, Hodgin, Rick C. wrote: I was asked by Michael Natterer to discuss this enhancement on the GIMP developer list. https://bugzilla.gnome.org/show_bug.cgi?id=719435 Basically, I'd li

Re: [Gimp-developer] Bug 719435

2013-12-02 Thread Ofnuts
On 12/02/2013 06:45 PM, Hodgin, Rick C. wrote: On 2013-12-02 03:36, Ofnuts wrote: On 12/02/2013 01:10 AM, Rick C. Hodgin wrote: On 12/01/2013 12:15 PM, Ofnuts wrote: On 11/30/2013 10:53 PM, Hodgin, Rick C. wrote: I was asked by Michael Natterer to discuss this enhancement on the GIMP

[Gimp-developer] Scripting: creating a channel from a layer in another image and other channel-related manoeuvres

2013-12-13 Thread Ofnuts
I need to create a channel in an image from a layer (or a channel) in another image of the same size. I'm creating the other image so I can possibly copy the layer across the images and then use gimp-channel-new-from component() but is there a more direct method? I can't find a way to obtai

Re: [Gimp-developer] Scripting: creating a channel from a layer in another image and other channel-related manoeuvres

2013-12-14 Thread Ofnuts
On 12/14/2013 12:21 AM, Ofnuts wrote: Then, gimp-layer-create-mask will accept a ADD-CHANNEL-MASK (6) type, but in this case how do I specify the channel? Some googling got me an answer to this (it uses the active channel) so I have that part covered. Now for the other question, any takers

Re: [Gimp-developer] how far from 2.10?

2013-12-31 Thread Ofnuts
On 12/31/2013 06:36 PM, Marco Ciampa wrote: Presumably how far are we to the new 2.10 gimp version? How many blocking bugs are left and what are these? thanks and happy GNU year... Will it really be 2.10? Its internals are different, the file format is different (will 2.8 be able to load 16/3

Re: [Gimp-developer] how far from 2.10?

2013-12-31 Thread Ofnuts
On 12/31/2013 11:35 PM, Alexandre Prokoudine wrote: On Wed, Jan 1, 2014 at 2:26 AM, Ofnuts wrote: Will it really be 2.10? Yes. Bad decision, then... ___ gimp-developer-list mailing list List address:gimp-developer-list@gnome.org List

Re: [Gimp-developer] how far from 2.10?

2014-01-01 Thread Ofnuts
On 01/01/2014 03:10 PM, Jon Nordby wrote: On 31 December 2013 23:26, Ofnuts wrote: On 12/31/2013 06:36 PM, Marco Ciampa wrote: Presumably how far are we to the new 2.10 gimp version? How many blocking bugs are left and what are these? thanks and happy GNU year... Will it really be 2.10

Re: [Gimp-developer] Search Action dialog feature

2014-01-14 Thread Ofnuts
On 01/14/2014 11:48 PM, Burnie West wrote: As Peter pointed out - what do you type in on Mint/Cinnamon if you happen to speak Chinese? On 01/14/2014 01:43 PM, Chris Mohler wrote: And yet the desktop menu in Mint/Cinnamon does precisely this and it *is* fast. I type "Win-key,c,h,r,Enter" and

Re: [Gimp-developer] Search Action dialog feature

2014-01-15 Thread Ofnuts
On 01/15/2014 07:08 AM, Chris Mohler wrote: On Tue, Jan 14, 2014 at 6:45 PM, Ofnuts <mailto:ofn...@laposte.net>> wrote: On 01/14/2014 01:43 PM, Chris Mohler wrote: And yet the desktop menu in Mint/Cinnamon does precisely this and it *is*

Re: [Gimp-developer] Search Action dialog feature

2014-01-15 Thread Ofnuts
On 01/15/2014 11:18 AM, Chris Mohler wrote: A counter-example: I need the 'Newsprint' filter every 2 months or so, but for some reason can't seem to remember which filter menu it's under. Why is it such a disaster to expose that filter to a search? A follow-up question: (without looking - no ch

Re: [Gimp-developer] assets in the high bith depth age

2014-02-09 Thread Ofnuts
On 02/09/2014 07:55 PM, Alexandre Prokoudine wrote: Hi, I'm curious if we have a plan for assets in v2.10 and onwards now that 16/32 bit is possible. Color palettes and gradients are still based on raw 8bit RGB values, and pattern files are 8bit as well. FilmGIMP/Cinepaint "fixed" that in the p

[Gimp-developer] Is "Layer/Transform/Arbitrary rotation" consistent with the rest of the menu structure?

2014-02-09 Thread Ofnuts
This stems from a bug report I made and the ensuing discussion with Michael Natterer, who told me to ask the question here. See https://bugzilla.gnome.org/show_bug.cgi?id=723435 First, all the Layer/Transform entries also apply to the active channel, so putting that in the "Layer" menu is a bi

Re: [Gimp-developer] assets in the high bith depth age

2014-02-10 Thread Ofnuts
On 02/10/2014 03:01 PM, Joao S. O. Bueno wrote: I agree with the file-format, ad I don't think keeping the i18n's in file is a bad thing to do. The idea of having a file as a "pill" containing all the translations, and such seens much more tasty than having to distribute separated i18n resources

Re: [Gimp-developer] Feature Request(if wrong way to ask, sorry)

2014-02-10 Thread Ofnuts
On 02/10/2014 05:01 PM, Marek Lukáš wrote: I use Gimp for awhile and I simply love it. But I came to idea to repattern something on a picture (change pattern of walls and floor) but as I found out I would need to create pattern as one huge image with right sizes and then use built-in perspecti

Re: [Gimp-developer] Enlarge image canvas with gimp_image_resize procedure

2014-02-27 Thread Ofnuts
On 02/27/2014 10:53 AM, Alessandro Francesconi wrote: I need to enlarge the area of an image using one of the available GIMP’s procedures. So, instead of using the GIMP’s graphical interface and this tool http://docs.gimp.org/en/gimp-image-resize.html, I want to be able to have the same effect

Re: [Gimp-developer] Enlarge image canvas with gimp_image_resize procedure

2014-02-28 Thread Ofnuts
On 02/28/2014 10:02 PM, Alessandro Francesconi wrote: Ok, what’s the name of the function that grows the boundaries? "gimp-layer-resize", but in this case "gimp-layer-resize-to-image-size" may be all that is needed. ___ gimp-developer-list mailing

Re: [Gimp-developer] Gimp on Steam

2014-03-06 Thread Ofnuts
On 03/06/2014 09:01 PM, Simon Budig wrote: Secondly I believe that we have a certain responsibility towards the privacy of our users. By using Steam we are encouraging people to create an account there, provide download statistics as well as (to an unknown extent) usage data. We let them generate

Re: [Gimp-developer] Getting contributors via OpenHatch

2014-05-31 Thread Ofnuts
On 29/05/14 22:27, Ed . wrote: There aren't any formal barriers to contributing to GIMP. There are definitely some formidable (ha!) barriers in the practical sense. Until we provide a clear step-by-step guide (on say Debian) to getting GIMP compiled from git, only the most highly-motivated and

Re: [Gimp-developer] Getting contributors via OpenHatch

2014-06-01 Thread Ofnuts
able to follow this, because it's a simple cook-book recipe to build from git? -Original Message- From: Ofnuts Sent: Saturday, May 31, 2014 9:40 PM To: gimp-developer-list@gnome.org Subject: Re: [Gimp-developer] Getting contributors via OpenHatch On 29/05/14 22:27, Ed . wrote: The

Re: [Gimp-developer] Getting contributors via OpenHatch

2014-06-01 Thread Ofnuts
On 02/06/14 00:41, Gez wrote: El dom, 01-06-2014 a las 21:49 +0200, Ofnuts escribió: If you include in it the page from LightningIsMyName that it links to, definitely... Call me cynical, but someone that needs really more detailed instructions will likely not have the programming background to

Re: [Gimp-developer] Getting contributors via OpenHatch

2014-06-02 Thread Ofnuts
On 02/06/14 03:29, Ed . wrote: Presumably you guys also think GIMP's documentation (contained in comments in the code) is absolutely perfect, and that the only meaningful contributions to GIMP are substantive code changes? You are changing subject here... We are no longer talking about buildin

Re: [Gimp-developer] Getting contributors via OpenHatch

2014-06-02 Thread Ofnuts
On 02/06/14 05:13, scl wrote: On 1.6.2014 at 9:49 PM Ofnuts wrote: If you include in it the page from LightningIsMyName that it links to, definitely... Call me cynical, but someone that needs really more detailed instructions will likely not have the programming background to be a useful

Re: [Gimp-developer] Python-fu GIMP Layer "parent" property error

2014-06-20 Thread Ofnuts
On 20/06/14 03:38, Joao S. O. Bueno wrote: Issue fixed in master and 2.8 branch. (It will be generally available as of gimp 2.8.12) Thanks for spotting that. While we are at it, it there an explanation why there are both "layers" and "children" attributes in a gimp.GroupLayer, that return es

Re: [Gimp-developer] Blend Tool UI

2014-06-23 Thread Ofnuts
On 23/06/14 05:31, Michael Henning wrote: I'd like to make some incremental improvements to the blend tool. On IRC, Alexandre suggested to get the UI team involved, so I'm looking for feedback/advice from the UI team. Here are my general plans: * I'd like to make the blend tool generally more

Re: [Gimp-developer] Blend Tool UI

2014-06-25 Thread Ofnuts
On 24/06/14 13:49, peter sikking wrote: Michael Henning wrote: Here are my general plans: * I'd like to make the blend tool generally more interactive. By this, I mean that after the user has created a gradient, they will be presented with handles that they can use to modify the endpoints of t

Re: [Gimp-developer] Blend Tool UI

2014-06-29 Thread Ofnuts
y two endpoints, while paths or free selections can get significantly more complicated, which I think justifies having larger handles. Ofnuts: If a gradient is modified in any way, the preview will update properly. Simon: Spherical and Dimpled are actually portions of sinusoids, not quarter circles

Re: [Gimp-developer] Important misfunction in gimp scaling tool

2014-07-07 Thread Ofnuts
On 04/07/14 11:35, brefromjeu wrote: hey guys ? Any news on this missing must-have feature ? or is gimp still gimp ? :P i got the 2.8 and still no way of resizing from center. Today i got 17 map layers to align. they all have various scales and angles. I really don't like the 'USE PS' plugin a

Re: [Gimp-developer] Color Tools and Bump Map as Dockable Dialogs

2014-07-12 Thread Ofnuts
On 11/07/14 15:38, Joseph Bupe wrote: Hello Developers, IMHO, the Color Tools and Bump Map should be turned into dockable dialogs as a way of cleaning up/minimizing the number of po-up dialogs. All color tools could appear under the same tab as icons and clicking the icon should display corresp

[Gimp-developer] Bad link in http://www.gimp.org/mail_lists.html

2014-07-12 Thread Ofnuts
On http://www.gimp.org/mail_lists.html the link to the gimp-developer list on mail-archive is: http://www.mail-archive.com/gimp-developer@gnome.org and should be: http://www.mail-archive.com/gimp-developer-list@gnome.org ___ gimp-developer-li

[Gimp-developer] Avoid saving file to "Recently-used" list when loading it with gimp-file-load-layer()

2014-08-18 Thread Ofnuts
The title says it all... I have a script that loads a lot of files with gimp-file-load-layer() and this fills the "recently used" list with useless entries. Is there a way to avoid this? ___ gimp-developer-list mailing list List address:gimp-develo

Re: [Gimp-developer] Placing grid on half-pixels using the offset

2014-10-07 Thread Ofnuts
On 07/10/14 12:36, Seldom Needy wrote: Is there a strong reason for fractional offsets (even +0.5) in the grid-configuration dialog being prevented? I'm working on a layout at present and I've noticed this limitation... Due to the snapping behavior of brushes, it's sometimes helpful to be able t

Re: [Gimp-developer] Exporting Keyboard shortcuts (key bindings/accelerators)

2015-02-13 Thread Ofnuts
On 11/02/15 23:11, Michael Schumacher wrote: On 02/11/2015 10:25 PM, Seldom Needy wrote: On Wed, Feb 11, 2015 at 1:47 PM, Chris Mohler wrote: On Wed, Feb 11, 2015 at 2:13 PM, Seldom Needy wrote: I was wondering about the operation of importing and exporting keyboard shortcuts for GIMP. In

Re: [Gimp-developer] Sample points

2015-03-08 Thread Ofnuts
On 08/03/15 09:42, Kevin Payne wrote: Is is possible to access the position of the sample points from within a script? I can't find any reference to them in the Procedure browser. No way AFAIK. Scripts that require image coordinates usually ask the user to draw a path and use the path anchor

Re: [Gimp-developer] Sample points

2015-03-08 Thread Ofnuts
exercise for a developer who wants to gain familiarity with the pdb. (It would also be necessary to add documentation, of course.) Bill On Sun, Mar 8, 2015 at 6:56 AM, Ofnuts wrote: On 08/03/15 09:42, Kevin Payne wrote: Is is possible to access the position of the sample points from within a

Re: [Gimp-developer] Sample points

2015-03-10 Thread Ofnuts
On 09/03/15 21:50, Michael Schumacher wrote: On 03/08/2015 03:10 PM, Ofnuts wrote: I wondered about that at the time, but the Path technique has several advantages over the sample points: * you are not limited to 4 points You are not limited to 4 sample points. Well, I stand corrected, you

Re: [Gimp-developer] Useability enhancement request: unified/expanded file export dialog

2015-03-11 Thread Ofnuts
On 11/03/15 14:26, Elle Stone wrote: 3. Scaling upon export: When exporting an image for display on the web, the image usually needs to be resized, and sometimes you might want to make some additional edits at the reduced size before the final export. But not always. It would be convenient t

Re: [Gimp-developer] Managing layers manually between layer-to-image-size and crop-to-content

2015-03-16 Thread Ofnuts
On 16/03/15 08:09, Joseph Bupe wrote: Managing layers manually between layer-to-image-size and crop-to-content in order to be able to work with certain tools or filters is, in my opinion, too devious. E.g If I want to use Aligment tool - I have to crop-to-content to remove empty borders, which al

Re: [Gimp-developer] why I can't repeat this command?

2015-03-21 Thread Ofnuts
On 21/03/15 16:17, Marco Ciampa wrote: I am selecting a program window screenshot (just an image). The command includes some pixels around the program window. I select all the image and shrink the selection 1 bit at a time. Why the "repeat command" is grayed out? I have to repeat the command ever

Re: [Gimp-developer] why I can't repeat this command?

2015-03-22 Thread Ofnuts
On 22/03/15 02:24, Marco Ciampa wrote: On Sat, Mar 21, 2015 at 10:03:42PM +0100, Ofnuts wrote: On 21/03/15 16:17, Marco Ciampa wrote: I am selecting a program window screenshot (just an image). The command includes some pixels around the program window. I select all the image and shrink the

Re: [Gimp-developer] Create New Layer Button

2015-03-26 Thread Ofnuts
On 26/03/15 09:29, Tobias Oelgarte wrote: Am 25.03.2015 um 19:54 schrieb jEsuSdA 8): El 23/03/15 a las 18:49, Alexandre Prokoudine escribió: On Mon, Mar 23, 2015 at 4:16 PM, Joseph Bupe wrote: IMO, the new layer button should just create a new transparent layer. The dialog window should be op

Re: [Gimp-developer] Create New Layer Button

2015-03-28 Thread Ofnuts
On 28/03/15 11:46, Michael Schumacher wrote: A context menu that acts like a real context menu, i.e. shows options that are most relevant to the current context either exclusively or at least in some kind of prominent position, e.g. at the top. This has been discussed a few times already, but n

Re: [Gimp-developer] Create New Layer Button

2015-03-29 Thread Ofnuts
On 29/03/15 18:02, Elle Stone wrote: A lot of people make statements to the effect that "Most GIMP users do this or that", but I've never seen anyone offer any supporting logical justification or hard evidence. How hard would it be to add meaningful usage statistics in Gimp?

Re: [Gimp-developer] Gimp in private schools and educational institutions

2015-04-26 Thread Ofnuts
On 26/04/15 17:06, Elle Stone wrote: How about a small committee to select 3-5 possible names for review? Liam Quin could be the Chair and Sam Bagot could represent potential GIMP users who are unwilling to deal with the unwanted connotations of the name "GIMP". That committee couldn't be s

Re: [Gimp-developer] Lack of accuracy

2015-04-28 Thread Ofnuts
On 27/04/15 14:19, Nicolas Robidoux wrote: By "calc", you mean a "layer mask"? ___ In French a "calque" (*) is a "layer". (*) "calque" is originally the word for a sheet of tracing paper. ___ gimp-develope

Re: [Gimp-developer] Gimp in private schools and educational institutions

2015-04-28 Thread Ofnuts
The name is a blocker in some US schools with teachers or student parents that over-sensitive (and somewhat dirty-minded, since "gimp" has other meanings in English). By the way, one of the most popular Web server software is called Apache. In French, it is also slang for a street robber and a

Re: [Gimp-developer] GIMP useability - choosing linear vs perceptually uniform RGB

2015-05-01 Thread Ofnuts
On 01/05/15 04:00, Gez wrote: Hi Elle, You know I'm with you regarding giving users more control over how operations are performed, but tossing buttons for toggling between linear and perceptual everywhere in the UI is not a proper solution. It would be extremely confusing, and people would start

Re: [Gimp-developer] Mapping Matrix and the Tool Options

2015-05-25 Thread Ofnuts
On 24/05/15 10:26, Joseph Bupe wrote: Dear Developers, The paint tools Mapping Matrix is such as cool feature and I am requesting you to kindly move it to the Tool options where it initially used to be. The reason is that it is easier to access from the Tool options since they are related than h

[Gimp-developer] Sourceforge downloads

2015-05-25 Thread Ofnuts
The Sourceforge gimp-win downloads are now pointing to a 730K downloader: http://i.imgur.com/ImWKmHN.png Should this site be closed down entirely (assuming it is still under the control of someone related to Gimp development)? There are still plenty of links pointing to it, and it would be bet

Re: [Gimp-developer] Cropping border color

2015-06-03 Thread Ofnuts
On 02/06/15 17:50, Burnell West wrote: On Jun 1, 2015, at 11:07 PM, Brad Gibson wrote: It would be great if I could choose to see pure black around whatever I'm cropping, because I make very meticulous crops of photos for artistic purposes, and I often have to crop and go back multiple times

Re: [Gimp-developer] Feature suggestion: Gimp aspect ration based on golden rule

2015-06-17 Thread Ofnuts
On 16/06/15 23:14, Tim wrote: Hi folks, first of all i would like to thank you undiscribable much for that grate image manipulating tool which was so good that a whole user environment was build onto its toolkit... I just have a some feature suggestion that i would consider as nice to have. In

Re: [Gimp-developer] Portable development environment for GIMP

2015-09-28 Thread Ofnuts
On 28/09/15 19:22, Sam Gleske wrote: On Mon, Sep 28, 2015 at 10:21 AM, Michael Schumacher wrote: On 09/27/2015 08:35 PM, Sam Gleske wrote: 1. Install vagrant https://www.vagrantup.com/ 2. Clone: git clone https://github.com/samrocketman/vagrant-gimp Um... why is KDE in there? Be

[Gimp-developer] Fade length setting for paint dynamics

2015-10-02 Thread Ofnuts
I see that some changes have occured in that area in 2.8.14... However: * I can't figure out the "percent" setting. Percent of what? From what I tried, it is not a percent of the total path length, not a percent of the stroke length, and not a percent of some image dimension. * is there a

Re: [Gimp-developer] Fade length setting for paint dynamics

2015-10-07 Thread Ofnuts
On 06/10/15 19:35, Joao S. O. Bueno wrote: Sttting it programatically is likely a missing feature - it shouldbe available as gimp-context-fade-set-length -- and yes, it has nothing to do with percents Should I file a bug report for this? What should be done with the percent "unit" then? Rem

Re: [Gimp-developer] Fade length setting for paint dynamics

2015-10-08 Thread Ofnuts
On 08/10/15 14:05, Jon Tait wrote: 1. The "percent" setting is relative to maximal image dimension (ie. image width or height, whichever is larger). Ref: https://git.gnome.org/browse/gimp/tree/app/paint/gimppaintoptions.c?h=gimp-2-8#n591 And as far as I can see it *does* work as intended - eg. P

Re: [Gimp-developer] acceleration smoothing interpolation

2015-11-06 Thread Ofnuts
On 06/11/15 21:26, Ben Thurston wrote: Hi I posted an idea about an interpolation method a while back, I've improved the idea a lot in the meantime so I thought I'd post a link to the new version.. I saw I got quite a few views to the blog from posting to this mailing list last time but no replys

[Gimp-developer] Future of Python v2 scripts

2015-11-25 Thread Ofnuts
The latest Ubuntu (15;10) has dropped support for Python V2 (Python V2 is still available via a PPA). Are there any plans to support V3 in Gimp, possibly alongside V2? Maybe as a minimum look at the script's shebang to determine if it is compatible with the supported Python version? ___

Re: [Gimp-developer] Future of Python v2 scripts

2015-11-26 Thread Ofnuts
On 26/11/15 11:53, Simon Budig wrote: It would make sense to switch to python 3 in sync with the (plugin-breaking) switch to gtk3 with the 3.0 release. Why would gtk3 break python plug-ins? I don't see that many that come with their own UI. I would expect 2.10 and the high bit-depth to break

Re: [Gimp-developer] Scanning coins

2016-01-17 Thread Ofnuts
On 13/01/16 18:11, billgoldbe...@frontier.com wrote: Greetings, I have heard Gimp is great for scanning images of coins to be sold internet. Can you tell me to set up Gimp to do this?Regard,William. Sent from my Verizon 4G LTE Tablet Gimp has no built-in scanning capabilities. Even if

Re: [Gimp-developer] A better way to close a path where an end nodeis on top of a start node

2016-01-31 Thread Ofnuts
On 31/01/16 09:08, Joseph Bupe wrote: Hi, Is there a reason why the path can close by just clicking the last node onto the first node? Why do we have to CTRL or Command + Click ? Because clicking on a node is selecting it, and this i something you'll want to do if you want to extend the path

Re: [Gimp-developer] Gitlab as a replacement for registry.gimp.org

2016-04-02 Thread Ofnuts
Off the top of my head, three points of view on such a thing: Admin; - good spam prevention (IP banning, lock on keywords, approval of first post...) - malware prevention. This could be a trust system (but don't forget that even trustable persons could have their account hijacked). Reviewing S

Re: [Gimp-developer] [Gimp-web] Gitlab as a replacement for registry.gimp.org

2016-04-03 Thread Ofnuts
On 02/04/16 00:18, Andrew Toskin wrote: Whether or not we can get plugin developers to follow it, separating scripts and plugins into different repositories seems like a good recommendation, for a number of reasons. For plugin and script authors, it would make managing bugs and user feedback ea

Re: [Gimp-developer] [darktable-dev] Darktable plug-in in GIMP - Darktable for Windows?

2016-04-28 Thread Ofnuts
On 28/04/16 12:31, Elle Stone wrote: On 04/27/2016 12:11 PM, Elle Stone wrote: Hmm, now that I have darktable properly installed using Lua, and GIMP opening 32f raw files processed with darktable, I can't figure out how to open a raw file from GIMP using the PhotoFlow plug-in. What's the proce

Re: [Gimp-developer] [darktable-dev] Darktable plug-in in GIMP - Darktable for Windows?

2016-04-28 Thread Ofnuts
On 28/04/16 21:07, Carmelo DrRaw wrote: Hi! I’m not sure to understand what you mean by "if these could save to high-bit-depth XCF directly, that would be even nicer”, but what I can say is that photoflow works as a “native” plug-in, in the sense that it does not call an external program, and

Re: [Gimp-developer] inject Gimp code into another applications

2016-05-15 Thread Ofnuts
On 14/05/16 04:29, Oleksiy Druzhynin wrote: Dear Gimp developers. I would like to embedded Gimp color filters (for instance, gimp_brightness_contrast_config) into OpenShot video editor on its python level or just call it from underlining C MLT library (just to inject it into this file: http

Re: [Gimp-developer] Pencil - Tool Options and Hardness

2016-06-21 Thread Ofnuts
Shouldn't we instead get rid of the pencil tool and add a no-anti-aliasing option to the brush? On 20/06/16 20:51, C R wrote: Yep, may as well. lol -C On Mon, Jun 20, 2016 at 6:49 PM, Andrew Pullins wrote: Sounds like a good idea On Jun 15, 2016 10:51 PM, "Americo Gobbo" wrote: Hi all, T

Re: [Gimp-developer] Pencil - Tool Options and Hardness

2016-06-21 Thread Ofnuts
On 21/06/16 17:00, Americo Gobbo wrote: the Pencil tool is a classic. A little-used classic. It has its uses (pixel art), but on the whole I have much more often redirected pencil users to the brush that the reverse. ___ gimp-developer-list mailing

Re: [Gimp-developer] Rasterize a text layer with GIMP Python or Script-Fu

2016-07-11 Thread Ofnuts
On 11/07/16 22:34, Lucian Naie wrote: Hi everyone, I have looked at the docs, even checked the source code, to find the magic libgimp call (http://developer.gimp.org/api/2.0/libgimp/) that will allow me to do programmatically what the UI text layer option "Discard Text Information" is doing, but

Re: [Gimp-developer] An idea / feature for future releases of GIMP

2016-12-15 Thread Ofnuts
On 15/12/16 18:14, M. Hammoud wrote: Hi. New users spend a lot of time looking for an effect / filter / brush / tool / pattern in the multiple menu tabs, each with a long list of submenus, each with a lot of sub-sub-items. It would be great, if one could simply type in a box what they are looking

Re: [Gimp-developer] Proposal for erasing background from an image

2017-03-02 Thread Ofnuts
On 02/03/17 10:05, Simon Budig wrote: John Tapsell (johnf...@gmail.com) wrote: So to restate this again - I want to know how to change the top layer $latex src$ so that I can have the maximum possible alpha without changing the final visual image at all. I.e. remove as much of the background as

Re: [Gimp-developer] gimp-edit-copy

2017-04-17 Thread Ofnuts
On 17/04/17 12:05, Peter Suetterlin wrote: I could fix the problem by selecting the full area before the call to gimp-edit-copy. But acording to the docs it should do this by itself if nothing is selected. IMHO the real fix is to use other ways to move pixels. Applications should not use the cl

Re: [Gimp-developer] request

2017-06-24 Thread Ofnuts
On 06/23/17 14:14, Bert de Jong wrote: When saving a JPG, please warn if there is transparency. Currently GIMP saves such images without warnings and just uses the current background color. I think a lot of people do not use XCF and are used to saving transparency to PNG and GIF files. I think i

Re: [Gimp-developer] GIMP development suggestion

2017-08-28 Thread Ofnuts
On 08/19/17 11:10, Paul Naudé wrote: Hi I am an everyday user of GIMP (awesome, awesome product - wish I could program to help but you guys rock) and have just one suggestion to add: I still often need to use MS Paint, to quickly add something like a block, line or circle. Unless I am unaware o

Re: [Gimp-developer] Painting on a text layer, turning it into a regular layer?

2017-08-28 Thread Ofnuts
On 08/29/17 00:55, Elle Stone wrote: I wasn't actually trying to paint on a text layer. But I had inadvertently selected a text layer when I used the brush tool, and the text disappeared under the paint. Is this new behavior? This is from babl/GEGL/GIMP from git updated this morning (commit 1

Re: [Gimp-developer] GIMP testing cooperation

2017-10-06 Thread Ofnuts
On 10/06/17 19:29, Sam Gleske wrote: If anybody is interested in joining me as an admin for maintaining the GIMP CI server I encourage anybody to reach out to me regardless of your skill level. Even if you're new to Linux and wish to get better at Linux (zero experience) I'm willing to provide y

Re: [Gimp-developer] GIMP testing cooperation

2017-10-07 Thread Ofnuts
Late at night I mercilessly tear bash scripts apart and flog docker containers... On 10/07/17 02:10, Pat David wrote: I can vouch for Ofnuts not being an awful malicious actor. But I can’t vouch for him not being awful. :D (I kid, I kid

Re: [Gimp-developer] Size on disk vs size reported on status bar

2017-11-24 Thread Ofnuts
On 11/24/17 19:06, Kevin Cozens wrote: Le 04/10/2017 à 15:51, Elle Stone a écrit : So a byte is 8 times a bit? For people like me who can never remember the difference between a byte and a bit, is there a one-sentence explanation for why there are bytes *and* bits? Perhaps a food analogy migh

Re: [Gimp-developer] Using Gimp 2.8

2017-12-13 Thread Ofnuts
On 12/13/17 00:59, Deb Kennedy via gimp-developer-list wrote: I am new to programand I am puzzled by the conversion I had to do in order to open the files I hadbuploaded.   I shot photos on the RAW setting on my camera. N70 Nikon. I wanted ti ability to make corrections so that is why I opted f

Re: [Gimp-developer] Using Gimp 2.8

2017-12-13 Thread Ofnuts
On 12/13/17 18:38, Ken Moffat via gimp-developer-list wrote: On Wed, Dec 13, 2017 at 01:23:18PM +0100, Ofnuts wrote: On 12/13/17 00:59, Deb Kennedy via gimp-developer-list wrote: I noticed they uploaded as NEF files but they were not readily available for viewing so  I then converted to JPEG

Re: [Gimp-developer] Gimp splash screen proposals

2017-12-16 Thread Ofnuts
I like these, especially the large head of Wilber somewhat hidden in the image. But... in the smaller Wilber's head, it looks like the paint brush is sticking out from under its(*) chin, instead of being held in the mouth. (*) unless Wilber has a gender. On 12/15/17 08:29, Valentin Cristesc

Re: [Gimp-developer] bug when trying to edit color channels of a transparent image

2018-01-28 Thread Ofnuts
On 01/27/18 22:41, Tcll wrote: the issue here is when opening a transparent image, the color channels don't show the full color info, see here: https://cdn.discordapp.com/attachments/98580359909773312/406830380180570113/unknown.png The RGBA channels at the top are not the channels of a specific

Re: [Gimp-developer] Using gimp in a script

2018-02-23 Thread Ofnuts
You don't  need to register the python code as  a plugin if you are only using it in this kind of script. Link to a ZIP with a sample Python script and a sample shell https://www.dropbox.com/s/hgg08yen5220wu9/gimpbatch.zip?dl=0 (written in Gimp 2.6 times but not much changes since) On 02/23/

Re: [Gimp-developer] Participation at Apple Developer Program

2018-03-26 Thread Ofnuts
On 03/26/18 00:45, alexandre.prokoud...@gmail.com wrote: I've invited you to fill out the following form: Participation at Apple Developer Program To fill it out, visit: https://docs.google.com/forms/d/e/1FAIpQLSdRepYcE1dLD0342FaVGenU0Nr519SyK-MYzdGylmNXYq5rUQ/viewform?c=0&w=1&usp=mail_form_link

Re: [Gimp-developer] Problems using the PF_STRINGARRAY parameter type when writing a Python plugin for Gimp.

2018-05-23 Thread Ofnuts
If you want to run the script as a batch it doesn't need (and really shouldn't be) a plugin. Then your code is just a plain Python function that takes string parameters, and you don't need to register it. See https://stackoverflow.com/questions/44430081/how-to-run-python-scripts-using-gimpfu-fr

Re: [Gimp-developer] Errors in the new gimp version registering python scripts

2018-06-23 Thread Ofnuts
On 06/19/18 21:43, Paco Garcia via gimp-developer-list wrote: Is there any way to get more information about the gimp_wire_read () error that occurs when loading python scripts? Many scripts that worked in previous versions of gimp fail in the new one without apparent cause. Spanish version: ¿Hay

Re: [Gimp-developer] Errors in the new gimp version registering python scripts

2018-06-27 Thread Ofnuts
: 'C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins\gimpfu3.py' Any help is welcome 2018-06-23 18:29 GMT+02:00 Carol Spears via gimp-developer-list < gimp-developer-list@gnome.org>: On Sat, Jun 23, 2018 at 10:23 AM, Carol Spears wrote: On Sat, Jun 23, 2018 at 8:25 AM, Ofnuts wrote

Re: [Gimp-developer] blocking fonts enumeration

2018-07-01 Thread Ofnuts
On 06/30/18 02:24, Liam R E Quin wrote: On Fri, 2018-06-29 at 23:35 +, 1980_undergro...@insiberia.net wrote: My question is, is there a way to prevent GIMP from reading system fonts, and to only read fonts from it's own folder? Which Linux distribution are you using? Or, what operating syst

Re: [Gimp-developer] Errors in python importing modules

2018-09-18 Thread Ofnuts
On 09/18/18 08:28, Paco Garcia via gimp-developer-list wrote: All the scripts in python that worked in previous versions of gimp have stopped doing so in the new ones, the problem seems to be that there is some change when importing external classes, there has been some change in the code that m

Re: [Gimp-developer] Regressions

2018-09-30 Thread Ofnuts
On 09/30/18 03:32, Diogo Piçarra via gimp-developer-list wrote: Please create "regression" and "data loss" tags on gitlab. Make them topmost priority and fix all regressions, data losses and most crashes before releasing a new "stable" version. Or use the money you just got to hire somebody to do

Re: [Gimp-developer] primitive drawing tool Request

2018-10-17 Thread Ofnuts
On 10/13/18 22:36, Jacques Koffaltretes via gimp-developer-list wrote: Hello, I love gimp, and use it for all my game dev image manipulation and also for artwork. Can you PLEASE add simple primitive drawing tools, If you can add line/box and circle tools with option to fill shapes or outline, a

  1   2   3   >