[Gimp-developer] Python-fu: difference between PF_FILE and PF_FILENAME, and how to ask for a file name to *create*

2011-11-13 Thread Ofnuts
I'm writing a python plugin that saves things to a file, and I'm trying to come up with the right parameter type to obtain a filename form the user. There are PF_FILE and PF_FILENAME parameter types. Both correspond to a string with the file name in it. Furthermore the file must exist for both

Re: [Gimp-developer] Python-fu: difference between PF_FILE and PF_FILENAME, and how to ask for a file name to *create*

2011-11-14 Thread Ofnuts
le", _("Choose File:"), "/home/jbaker"),# Choose a file (PF_FILE, "pf_adir", _("Choose Directory:"), "/home/jbaker/"),# Choose a directory or (PF_FILE, "pf_afile", _("Choose File:"), ""), (PF_FILE, "pf_a

[Gimp-developer] Why is pdb.gimp_file_load() setting the dirty flag?

2011-11-21 Thread Ofnuts
Question is in the title (Gimp 2.6). Yes, I learned about clean_all(), but I'm curious about the rationale. ___ gimp-developer-list mailing list gimp-developer-list@gnome.org http://mail.gnome.org/mailman/listinfo/gimp-developer-list

Re: [Gimp-developer] Reducing Load Time

2011-12-08 Thread Ofnuts
On 12/08/2011 02:04 PM, Alexia Death wrote: On Thu, Dec 8, 2011 at 2:37 PM, Srihari Sriraman wrote: Is it possible to implement this change before the release of 2.8? or is it too late? The window to get new features into 2.8 closed long ago. Lazy loading has been on the table for as long as

Re: [Gimp-developer] remembering the image size as set in Preferences needs application restart

2011-12-12 Thread Ofnuts
On 12/12/2011 10:18 PM, Owen wrote: This is how it is defined, if making your own, adjust app/core/gimptemplate.h to suit (I think) #ifdef GIMP_UNSTABLE #define GIMP_DEFAULT_IMAGE_WIDTH 610 #define GIMP_DEFAULT_IMAGE_HEIGHT 377 #else #define GIMP_DEFAULT_IMAGE_WIDTH 640 #define GIMP_DEFAUL

[Gimp-developer] GEGL problems while building 2.7.4 for Linux

2011-12-18 Thread Ofnuts
A long time ago, I built the 2.7.2 version which required upgrading my BABL/GEGL libraries (running Kunbuntu 10.04) which I did by getting the code directly from the GIT repository I thought building 2.7.4 would be a snap since I didn't expect to have to re-upgrade these. I was wrong :) BABL

Re: [Gimp-developer] GEGL problems while building 2.7.4 for Linux

2011-12-18 Thread Ofnuts
On 12/18/2011 10:35 PM, Owen wrote: A long time ago, I built the 2.7.2 version which required upgrading my BABL/GEGL libraries (running Kunbuntu 10.04) which I did by getting the code directly from the GIT repository I thought building 2.7.4 would be a snap since I didn't expect to have to re-up

[Gimp-developer] Saving filter options

2011-12-26 Thread Ofnuts
Is there a PDB routine to save/retrieve filter-specific options? Googling and gimp-console browsing say no, but I could be lucky (and blind)? ___ gimp-developer-list mailing list gimp-developer-list@gnome.org http://mail.gnome.org/mailman/listinfo/gimp-

Re: [Gimp-developer] how to modify precisely a guide position ? (was: Re: Printing a large image in sections)

2012-01-08 Thread Ofnuts
On 01/08/2012 03:41 PM, Cristian Secară wrote: În data de Sat, 31 Dec 2011 22:05:24 -0500, Steve Kinney a scris: [...] If for some reason you want precise dimensions for the sections, calculate using the DPI of the image to get linear measurements, and use the Image> Guides> New Guide command

Re: [Gimp-developer] how to modify precisely a guide position ?

2012-01-08 Thread Ofnuts
On 01/08/2012 11:40 PM, Noel Stoutenburg wrote: But I'd still like to have a keyboard shortcut to create a guide. There are sufficient number of occasions when I know I want a guide at a specific place, and it would be quicker to press a few keys, than move the mouse around. Challenge a

Re: [Gimp-developer] Channel to Selection in PDB

2012-01-19 Thread Ofnuts
(gimp-selection-load channel) No? On 01/19/2012 10:26 PM, Chris Mohler wrote: Hi, Am I missing something? How does one convert a spot channel to a selection via the PDB? Thanks, Chris ___ gimp-developer-list mailing list gimp-developer-list@gnome

Re: [Gimp-developer] Python FU Scripting -- Memory Leak? or How to release python gimp objects properly to manage memory usage?

2012-02-16 Thread Ofnuts
You should use gimp_image_delete() when you are done with one image. On 02/16/2012 05:42 AM, Tom Vrankar wrote: img =gp.gimp_image_new (1280, 720, 0) dsp =gp.gimp_display_new (img) lyr =gp.gimp_layer_new_from_drawable (src.layers[1], img) img.insert_layer (lyr, position =0) gp.gimp_display_del

Re: [Gimp-developer] GIMP Fonts Problem

2012-02-19 Thread Ofnuts
On 02/19/2012 05:16 AM, William Roberts wrote: Im having a problem running GIMP. When it loads up it stops responding when it trys to load the fonts. I just started having this problem today. I uninstalled and reinstalled serveral times but no progress. I need help. Im running on a 32 bit Windo

Re: [Gimp-developer] An important tool missing in GIMP

2012-02-27 Thread Ofnuts
On 02/27/2012 08:05 PM, Sven C. GrafxUser wrote: Hi, for a longer time I missed easy usable shapes in GIMP. The current solution GFig is IMHO too unprecise and the integration of vector layers from GSoC 2010 is postponed for later (see https://bugzilla.gnome.org/show_bug.cgi?id=557970#c20). S

Re: [Gimp-developer] Screenshot tool: Unify plugin for Windows, Linux and Mac OS X

2012-03-03 Thread Ofnuts
On 03/03/2012 11:03 AM, grafxuser wrote: Hi, lately I compared the plugins versions for Windows, Linux and Mac OS X for a bug report. Surprisingly the Windows version is totally different from the others. It only offers three options: capture a single window, capture the whole screen and the

Re: [Gimp-developer] looking for advice ( gsoc )

2012-03-31 Thread Ofnuts
On 03/31/2012 07:37 PM, Ursu Dumitru wrote: Hello everyone! I was writing to you earlier, but as far as I understood, some projects can't be done until the UI of Gimp is redesigned. So I was thinking about two new things, but I'm in doubt as they may be too much related to UI

Re: [Gimp-developer] Plugin registration question

2012-04-04 Thread Ofnuts
On 04/03/2012 11:54 AM, Jon Decker wrote: Hello The plugin I have been developing doesn't really relate to individual images (its more of an extension). In my registration call, how do I make it so that the listing in the menu is never grayed out? Currently I just open any image to make the

[Gimp-developer] Text layer information in parasite

2012-04-06 Thread Ofnuts
I would like to use the text information from a text layer (font, spacing...) in a python plugin. I can obtain it from the parasite but only if the file has been saved since the creation of the text layer (I'm using 2.6.8). Is there another way to get at the information, or is the parasite crea

[Gimp-developer] Python and vectors

2012-04-06 Thread Ofnuts
Is there a Pythonic way to add a gimp.Vectors to an image (ie not using pdb.gimp_vectors_new(img,name)). I can create a new vector using: vector=gimp.Vectors(image,name) But if I then use: image.vectors.append(vector) the new path is not even added to image.vectors, and dir(image) doesn't li

Re: [Gimp-developer] writing python scripts

2012-04-09 Thread Ofnuts
On 04/08/2012 04:34 PM, Chris Chris wrote: Hi there. I'm new to gimp and I'd like to develop a sort of batch process to create images (buttons icons etc). I have browsed around but I can't seem to find the documtation that explains how to. I did look at one or two tutorials and at the API refer

Re: [Gimp-developer] Is Tito worth merging? What should be done with it?

2012-05-01 Thread Ofnuts
On 05/01/2012 05:58 PM, gespert...@gmail.com wrote: Oh, forgot to mention but it's important: Ubuntu just released 12.04 with a new feature: HUD. It basically does the same than TITO, but globally, with almost every application (GIMP included). There's a risk of TITO becoming obsolete if distribu

Re: [Gimp-developer] Gimp 2.8.0 - Saving in .jpg or .png hmmmmm

2012-05-18 Thread Ofnuts
On 05/18/2012 02:18 PM, Nicolas Robidoux wrote: Once GEGL becomes the operative system, XCF can be understood as the "tree" that leads to a specific image. "Save tree"? "project" would have my vote. ___ gimp-developer-list mailing list gimp-develope

[Gimp-developer] gimp-win downloads for 2.6

2012-05-22 Thread Ofnuts
Unless I'm overlooking something, the gimp-win download pages on Sourceforge offer either 2.8 (stable version), or 2.4 and older ("Previous Gimp versions" page), but 2.6 is no longer referenced. Wouldn't it be nice if the "Previous Gimp versions" page listed at least one 2.6 installer? ___

Re: [Gimp-developer] gimp-win downloads for 2.6

2012-05-23 Thread Ofnuts
On 05/23/2012 08:44 AM, Cristian Secară wrote: În data de Wed, 23 May 2012 01:48:50 +0200, Ofnuts a scris: Unless I'm overlooking something, the gimp-win download pages on Sourceforge offer either 2.8 (stable version), or 2.4 and older ("Previous Gimp versions" page), but 2

Re: [Gimp-developer] Merging visible paths via scripts

2012-05-24 Thread Ofnuts
On 05/24/2012 04:05 PM, Joao S. O. Bueno wrote: Indeed - there are no vectors merging calls whatsoever on the PDB - for the time being, the only way to merge vectors using a script or plug-on is to explictly adding strokes read from other vectors to another vector. (using gimp-vectors-stroke-ne

Re: [Gimp-developer] JPEG lossless operations?

2012-05-27 Thread Ofnuts
On 05/27/2012 08:26 PM, gfxuser wrote: Hi, reading some of the JPEG related articles here I wondered whether GIMP or GEGL can do lossless rotation and cropping on JPEG images. Can you tell me more about it? Thanks, grafxuser For rotation, that would only work on images with dimensions tha

Re: [Gimp-developer] JPEG lossless operations?

2012-05-30 Thread Ofnuts
On 05/30/2012 05:55 PM, Bruce wrote: I've read that Picasa (Google's program) might be able to perform lossless rotations, but I'm just going by what I've read. (Source ) Apparently there are ways to test if the tool you use m

Re: [Gimp-developer] [Gimp-user] Is it possible to access the capabilities of gimp in Java?

2012-05-31 Thread Ofnuts
On 05/31/2012 03:14 AM, stephen wrote: On 05/31/2012 02:33 AM, stephen wrote: Hello, Does Gimp offer an interface (dll) which will allow me to access it capabilities through java or c++? There is a C interface, and there is a Python interface which is quite powerful. What is the name of the

Re: [Gimp-developer] I want write a plugin and need help

2012-06-05 Thread Ofnuts
On 06/04/2012 06:57 PM, hejian wrote: http://hejiann.tumblr.com/post/24406851371/i-am-planning-to-write-a-gimp-plugin-this-is-my any suggestion is appreciated. First suggestion, as a matter of politeness, ask your questions directly here... ___ gi

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

2012-06-05 Thread Ofnuts
On 06/05/2012 06:41 PM, Liam R E Quin wrote: On Mon, 2012-06-04 at 15:56 +0200, brefromjeu wrote: [...] . This is about the scale tool ( the one in the dock window ). This function is missing the possibility of moving the center. A scale function is a homotetia ( not sure of this word in english

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

2012-06-05 Thread Ofnuts
On 06/06/2012 06:44 AM, Liam R E Quin wrote: On Wed, 2012-06-06 at 00:47 +0200, Ofnuts wrote: The "when the /from centre/ transformation constraint is enabled, the translation shall also translate the diagonally opposite corner points by the same distance, however with the angle of the v

[Gimp-developer] Suspending display update

2012-06-14 Thread Ofnuts
I have a python plugin that does very many bucket-fills (potentially several thousands) on small selections. While it runs I see the selections in the image window (but curiously, not the painting), and the painting on the layer thumbnail in the layers list. I assume theses display update take

Re: [Gimp-developer] Suspending display update

2012-06-14 Thread Ofnuts
On 06/14/2012 11:11 AM, Rob Antonishen wrote: There are no pdb calls to change the view settings. I've always duplicated the image and worked on the duplicate without it being displayed. Also disable the undo stack of this duplicate to save memory. OK, thanks, will try that... I've got the u

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

2012-06-19 Thread Ofnuts
On 06/19/2012 06:36 PM, peter sikking wrote: Liam wrote: I don't think you should view it as written in stone no, you just have to take it up with your own, personal Moses™ ;^} work on the unified geometry tool has been kicked into another gear this week. Mikael and I are discussing different

Re: [Gimp-developer] Shape layers for GIMP?

2012-09-09 Thread Ofnuts
On 09/09/2012 01:24 PM, yahvuu wrote: It seems that Adobe rather strongly favors to protect their existing user base's learning investments over any rewards to be gained by a simpler, cleaner interface. Not sure what to learn from that regarding GIMP UI development. Well, given the recent b

Re: [Gimp-developer] using the capabillities of gimp through Java

2012-10-03 Thread Ofnuts
On 10/03/2012 12:37 PM, Jon Nordby wrote: On 3 October 2012 10:45, Ziyad Mohammad wrote: Hi can i connect java to gimp so that i can do some image processing on a map using java ide the ide that i will use will be either eclipse or netbeans Hi, have you tried http://jgimp.sourceforge.net/? Y

Re: [Gimp-developer] About GimpImageType, image and layers

2012-10-06 Thread Ofnuts
On 10/06/2012 08:30 AM, Jehan Pagès wrote: Hi, I have a question about the GimpImageType of layers. checking several plugins, I see that the GimpImageType (http://developer.gimp.org/api/2.0/libgimpbase/libgimpbase-gimpbaseenums.html#GimpImageType) is queried for each layer. But as a simple user,

[Gimp-developer] Path stroking mysteries

2012-10-18 Thread Ofnuts
- Make an ellipse selection - Stroke the selection with a 2px solid line, and anti-aliasing checked in the Stroke dialog: the line is jagged (at least on my Linux 2.6.8 and 2.7.2, and on a Windows 2.8) - "Select/To path" and stroke the path with the same stroke parameters: the produced line is

Re: [Gimp-developer] Overlay Mode - fix.

2012-11-12 Thread Ofnuts
On 11/12/2012 06:55 PM, Ville Sokk wrote: All the legacy blending modes are funny, not just overlay. All of them need to be fixed. Blending modes are arbitrary artistic things and there is no correct overlay formula. GIMP doesn't necessarily have to use the one in Wikipedia. Here's an interes

Re: [Gimp-developer] Overlay Mode - fix.

2012-11-14 Thread Ofnuts
On 11/14/2012 07:00 PM, Guillermo Espertino (Gez) wrote: After thinking about it for a moment, I can't imagine a better way to address this problem other than adding a special "mode" that makes all blends non-linear, but considering the need of a web-safe workflow, it probably shouldn't be na

Re: [Gimp-developer] Gimp choking on python invocation

2012-11-19 Thread Ofnuts
On 11/19/2012 10:54 PM, Vio wrote: Hello, Newcomer on this list but old time python coder with a Gimp itch someone might have an idea how to scratch. Task seem simple enough: make Gimp do some back-flips from afar through snaky incantations ... This imply combining 2 libs: gimpfu and xmlrpc. Wel

[Gimp-developer] Discrepancies in the Python API between 2.6 and 2.8

2012-11-20 Thread Ofnuts
Warning: first off, due to a rather ancient Ubuntu version, I'm not really testing things with 2.8 but with a home-built 2.7.2 (going beyond that causes a dependencies avalanche)... This said, a script of mine out in the Internet wilderness is reported as failing on 2.8. When I run it on my 2.

Re: [Gimp-developer] Minor enhancements in the export dialog

2012-11-27 Thread Ofnuts
On 11/27/2012 05:52 PM, Liam R E Quin wrote: On Tue, 2012-11-27 at 09:40 +0200, Alexia Death wrote: [...] different workflows/uses need a different default. I find I want a different default in different projects. Long term I'd really like to see gimp start to acknowledge the idea of people w

Re: [Gimp-developer] Inserting URL's

2013-01-01 Thread Ofnuts
On 01/01/2013 06:52 PM, Paul McCarthy wrote: Hi. I have GIMP 2.8 and I've been looking everywhere to tell me how to insert a URL into an image or layer. Can anyone help me please? Thanks As far as I know there is no such concept, and why would you want to do that? When you click on an i

Re: [Gimp-developer] unified transform tool

2013-02-25 Thread Ofnuts
On 02/22/2013 01:41 PM, peter sikking wrote: actually next month I am teaching interaction again and will give my students the exercise ‘precision rotate and precision perspective one or two tools?’ including of course redesigning the tools. I will need some essential scenarios for that, beyond

Re: [Gimp-developer] gimp gradients

2013-03-10 Thread Ofnuts
On 03/10/2013 05:14 PM, Guillermo Espertino (Gez) wrote: El 10/03/13 11:10, rafał rush escribió: Hi Gradients in gimp are very very painful thing. I love gimp and i used it a lot but gradients are nightmare. I see that you are making new tools and other stuff but the most important thing and the

[Gimp-developer] Changing the size of the open file dialog on Windows

2013-04-25 Thread Ofnuts
On Linux, I can set the size and position of the file open dialog using a ~/.config/gtk-2.0/gtkfilechooser.ini file. But I cannot find the equivalent file (or location for the same file) on Windows. I have tried various GTK-related places in the Gimp installation tree, the Gimp profile directo

Re: [Gimp-developer] Changing the size of the open file dialog on Windows

2013-04-25 Thread Ofnuts
On 04/25/2013 10:49 PM, Jernej Simončič wrote: On Thursday, April 25, 2013, 22:39:25, Ofnuts wrote: But I cannot find the equivalent file (or location for the same file) on Windows. I have tried various GTK-related places in the Gimp installation tree, the Gimp profile directory, and or the

Re: [Gimp-developer] Changing the size of the open file dialog on Windows

2013-04-25 Thread Ofnuts
On 04/25/2013 10:49 PM, Jernej Simončič wrote: On Thursday, April 25, 2013, 22:39:25, Ofnuts wrote: But I cannot find the equivalent file (or location for the same file) on Windows. I have tried various GTK-related places in the Gimp installation tree, the Gimp profile directory, and or the

[Gimp-developer] Registering a plugin in the menu

2013-05-07 Thread Ofnuts
What is the name of the menu in the Dynamics list? There are // menu locations matching the brushes/fonts/gradients in the user profile, by no . Does it exist? Or is it named differently? ___ gimp-developer-list mailing list gimp-developer-list@gnome.

[Gimp-developer] I18N in Python plugin

2013-05-07 Thread Ofnuts
What is the right/best/officially blessed way to handle I18N in Python plugins? Or asked differently, what can I do in my code so that someone can make the plugin usable in other languages without having to update the code? ___ gimp-developer-list ma

Re: [Gimp-developer] Registering a plugin in the menu

2013-05-07 Thread Ofnuts
On 05/08/2013 12:22 AM, Michael Natterer wrote: On Tue, 2013-05-07 at 21:29 +0200, Ofnuts wrote: What is the name of the menu in the Dynamics list? There are // menu locations matching the brushes/fonts/gradients in the user profile, by no . Does it exist? Or is it named differently? It was

Re: [Gimp-developer] [Request] Improve Stroke Path capabilities

2013-05-29 Thread Ofnuts
On 05/29/2013 02:31 AM, Richard Gitschlag wrote: Date: Tue, 28 May 2013 08:52:04 -0300 From: yafuli...@gmail.com To: gimp-developer-list@gnome.org Subject: [Gimp-developer] [Request] Improve Stroke Path capabilities [...] the ability to use gradients [...] That is already doable if you tell it

Re: [Gimp-developer] Paths need better display of on-canvas transform tools

2013-06-28 Thread Ofnuts
On 06/26/2013 05:28 PM, Richard Gitschlag wrote: I was using the Perspective Distortion on a path-from-text the other day when I noticed a usability gripe: The tool's on-canvas preview (i.e. the transformation handles and guides) used the entire image canvas size. Although it did display an

Re: [Gimp-developer] Idea for free select tool

2013-07-14 Thread Ofnuts
On 07/14/2013 08:44 AM, Ben Thurston wrote: I thought it might be interesting if this algorithm I made could be incorporated somehow into the free select tool, it is a way to infer a smooth curve through an ordered set of points, different than polynomial interpolation or Bezier curves. http://be

Re: [Gimp-developer] Python source code for the smooth curve through points algorithm I made

2013-07-17 Thread Ofnuts
The curve doesn't include the two end points and it seems it doesn't even get through one of the points (next before last at top right): http://i.imgur.com/Hmy1DMG.png On 07/17/2013 09:24 AM, Ben Thurston wrote: I made an implementation of the idea I had for the drawing of smooth curves throu

Re: [Gimp-developer] Python source code for the smooth curve through points algorithm I made

2013-07-17 Thread Ofnuts
e drawn as part of the curve... Thanks for the question I'm going to post this in an update with your name if you don't mind? You didn't seem to last time... On Wed, Jul 17, 2013 at 4:18 AM, Ofnuts <mailto:ofn...@laposte.net>> wrote: The curve doesn't include th

[Gimp-developer] Good Linux IDE for Gimp?

2013-07-19 Thread Ofnuts
I'd like to a bit more acquainted with Gimp source and that means an IDE (because it's mostly browsing code at the beginning). So, what would be the simplest IDE to setup (ideally, install from Ubuntu's software centre, give it the GIT location, and off we go...)? __

Re: [Gimp-developer] Good Linux IDE for Gimp?

2013-07-20 Thread Ofnuts
On 07/20/2013 01:29 AM, Owen wrote: I'd like to a bit more acquainted with Gimp source and that means an IDE (because it's mostly browsing code at the beginning). So, what would be the simplest IDE to setup (ideally, install from Ubuntu's software centre, give it the GIT location, and off we go..

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

  1   2   3   >