Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-31 Thread Ofnuts via gimp-developer-list
PS: of course your Gimp should be working in Japanese (which it will be if these environment variables are set when you start Gimp) On 31/08/2022 14:45, Ofnuts via gimp-developer-list wrote: Just re-checked, works for me. What are the environment values in the Python console? >>> o

Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-31 Thread Ofnuts via gimp-developer-list
:         return True, 'Shiro_Dialog_Args6_Test_API3', None     def do_query_procedures(self):         return [ 'python-fu-shiro-dialog-args6-test-api3' ] Zipped File  Shiro_Dialog_Args6_Test_API3.zip 2022年8月30日(火) 19:37 ShiroYuki Mot : Dear Ofnuts. Thanks for presenting the solution. It was detailed a

Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-30 Thread Ofnuts via gimp-developer-list
My own plugin does:     def do_set_i18n(self, *args):     print(f'do_set_i18n({args})')     return True, 'ofn-guides-presets',None (where 'ofn-guides-presets' is the same same as the plugin python file itself, and as I understand it, if the I18N domain is the same name as the plugin

Re: [Gimp-developer] Windows Photodraw MIX files

2022-08-20 Thread Ofnuts via gimp-developer-list
If this ever happens, it will be in Gimp 2.10.34 at best, so coming to your Gimp 2.8.8  which is about 9 years old, be prepared for a culture shock. Why don't you upgrade? 2.10 is so much better... On 18/08/2022 15:34, TheotroniX . via gimp-developer-list wrote: Hi Gimp developers, I use your

Re: [Gimp-developer] PF_ENUM, SF_ENUM, dynamically defined enums for plugins

2022-08-15 Thread Ofnuts via gimp-developer-list
Not really. With the current interface, I manage it that way: I have these two functions: def createOpts(name,pairs):     optsclass=namedtuple(name+'Type',[symbol for symbol,label in pairs]+['labels','labelTuples'])     opts=optsclass(*(     range(len(pairs))   

Re: [Gimp-developer] PF_ENUM, SF_ENUM, dynamically defined enums for plugins

2022-08-14 Thread Ofnuts via gimp-developer-list
Enum? I hope I am worrying too much. As Ofnuts pointed out, PF_ENUM is heavily used. It deserves some attention. In the thread reference above, Jehan has said he has an idea for implementation and realizes it needs attention. Here I am offering an alternative high-level view of what the technical

Re: [Gimp-developer] How to distribute translated/translatable python plugins in 2.99

2022-07-26 Thread Ofnuts via gimp-developer-list
wrote: Hi! On Mon, Jul 25, 2022 at 11:38 PM Ofnuts via gimp-developer-list wrote: What is necessary to distribute a translation-enabled python plugin for 2.99? I assume that the plugin distribution should be self-sufficient  since it cannot assume that translations will be

[Gimp-developer] How to distribute translated/translatable python plugins in 2.99

2022-07-25 Thread Ofnuts via gimp-developer-list
a "locale" subdirectory)? But adding and "fr.po" file there with some msgid/msgstr doesn't seem enough. Are there examples available (outside of Gimp's source code since these use the general repo). And do menu locations need to be translated

[Gimp-developer] wiki.gimp.org

2022-07-18 Thread Ofnuts via gimp-developer-list
Is wiki.gimp.org still active? My bookmarks to it no longer work. ___ gimp-developer-list mailing list List address:gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list List archives:

Re: [Gimp-developer] Adjustments on dynamics

2022-02-14 Thread Ofnuts via gimp-developer-list
IMHO one of the main issues with Dynamics is the rotation origin/range. Currently it is difficult to have a brush that just wiggles a bit because +5° and -5° are at opposite ends of the 0-360 curve. You have to create an upside-down brush for exactly this purpose (and give it a 175-185 range)

Re: [Gimp-developer] Fwd: Making enabling dynamics a checkbox (Issue #4333)

2021-12-29 Thread Ofnuts via gimp-developer-list
Also all in favor of a special status for the "Off" dynamics. We definitely need a way to identify them independently of the UI language. On 29/12/2021 17:19, Asalle via gimp-developer-list wrote: Forgot to include the mailing list :( -- Forwarded message - From: Asalle Date:

Re: [Gimp-developer] Allow simple warping/curving of text

2021-10-10 Thread Ofnuts via gimp-developer-list
Curve how? https://www.gimp-forum.net/Thread-ofn-bend-path https://www.gimp-forum.net/Thread-ofn-text-along-path On 09/10/2021 08:08, Jarrod T via gimp-developer-list wrote: Make an easy tool to curve text please, such as other editors have or photoshop has I find it really frustrating on

Re: [Gimp-developer] Gimp export to function

2021-10-07 Thread Ofnuts via gimp-developer-list
What OS/Version? It is possibly some security setting that prevents unrecognized apps from accessing external drives. On 02/10/2021 20:04, Ken Masters via gimp-developer-list wrote: I downloaded GIMP and so far I think most everything is fine except “when I use the export function it won’t

Re: [Gimp-developer] About The Python Script writing

2021-08-24 Thread Ofnuts via gimp-developer-list
Wouldn't it be more natural to write the migration program in Python itself (plus this needs Python2->Python3 migration)? Why add a dependency on yet another language? Is there a decent C# runtime on Linux? On 24/08/2021 17:31, ShiroYuki Mot via gimp-developer-list wrote: I wrote the Script

Re: [Gimp-developer] The problem of compile gimp

2021-07-22 Thread Ofnuts via gimp-developer-list
You also need to build Babl (like you did for GEGL, these packages work together). On 22/07/2021 14:41, via gimp-developer-list wrote: Hello?? Recently, I was learning to compile gimp from source code, and I encountered a problem. I'm following the rules

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
On 30/04/2021 21:08, Liam R E Quin wrote: On Fri, 2021-04-30 at 14:31 -0400, Liam R E Quin wrote: On Fri, 2021-04-30 at 17:18 +0200, Ofnuts via gimp-developer-list wrote:     GIMP requires the GEGL operation "gegl:introspect". I seem to remember this requiers "dot" (from

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
On 30/04/2021 19:58, Liam R. E. Quin wrote: On Fri, 2021-04-30 at 09:46 +0200, Ofnuts via gimp-developer-list wrote: /Gimp-dev/2.99/build/gimp/_build/libgimp/Gimp-3.0.gir HarfBuzz-0.0.gir:135.5-135.79: error: `hb_.language_t' not supported as type for constants Searching with Google

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
Thanks, disabling that makes the build successful. However, when I start Gimp, I get a dialog with: GEGL operation missing! GIMP requires the GEGL operation "gegl:introspect". This operation cannot be found. Check your GEGL install and ensure it has been compiled with any

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
get meson/ninja confused. -- Jacob Boerema On 29 Apr 2021 at 19:40, Ofnuts via gimp-developer-lis wrote: I'm trying to compile 2.99. It used to work, but my last successful attempt was in June 2020. Compiling on Ubuntu 19.10 but I upgraded meson and pango to required versions. When I

[Gimp-developer] Trouble compiling 2.99

2021-04-29 Thread Ofnuts via gimp-developer-list
I'm trying to compile 2.99. It used to work, but my last successful attempt was in June 2020. Compiling on Ubuntu 19.10 but I upgraded meson and pango to required versions. When I use the meson build: meson _build --prefix=${GIMP_PREFIX} --buildtype=release -Djavascript=always -Dlua=always

Re: [Gimp-developer] Plug-In Golden ratio on Github/Youtube

2021-02-22 Thread Ofnuts via gimp-developer-list
Search a research paper widely available in the net as a PDF:  "Piecewise Circular Approximation of Spirals and Polar Polynomials" It describes how you can approximate a linear spiral using circle arcs. You can then use Gimp paths to create the arcs. There is a well known approximation or a

Re: [Gimp-developer] Translating Gimp into arabic

2021-02-04 Thread Ofnuts via gimp-developer-list
Gimp already has Arabic translations. Do you have something specific in mind? On 03/02/2021 09:41, Abdullah OLABI wrote: Hi, Hope you are all fine. I would like please to talk to someone in your organisation about translating Gimp into Arabic language. With kind regards Abdullah Olabi

Re: [Gimp-developer] App background query

2021-02-01 Thread Ofnuts via gimp-developer-list
You can change the theme: Edit>Preferences>Interface>Theme You may also want to change the Icon theme: Edit>Preferences>Interface>Icon Theme) On 31/01/2021 15:02, Melvill's wrote: When I open GIMP it comes up with a black background. Can I change it to another color as I have problems

Re: [Gimp-developer] Does it pay to be Open-Source?

2020-10-18 Thread Ofnuts
On 26/09/2020 21:47, Anthony Beaulé via gimp-developer-list wrote: Hello GIMP developers, One of the things I've been enjoying is trying to use less and less proprietary software, and I've been thinking of becoming a developer for quite some time now. I really love the passion and effort

Re: [Gimp-developer] Suggestd enhancement

2020-07-24 Thread Ofnuts
On 23/07/2020 16:54, Shlomi Fish wrote: Furthermore, GIMP will need to query the clipboard before displaying the menubar or menu which will likely also be time consuming on your end. Worse that that. Large data such as images are not always put in the clipboard, the source application merely

Re: [Gimp-developer] No Lua or Python in Gimp 2.99

2020-06-16 Thread Ofnuts
On 15/06/2020 23:25, Lloyd Konneker via gimp-developer-list wrote: I would hope that in the future the Gimp install would define that variable in the environment of Gimp so that plugins spawned by Gimp would have the same environment. But since 2.99 is still in development, there is no

Re: [Gimp-developer] No Lua or Python in Gimp 2.99

2020-06-14 Thread Ofnuts
On 14/06/2020 20:20, Lloyd Konneker via gimp-developer-list wrote: Try package lua-lgi I think I had this same issue, and documented it at

Re: [Gimp-developer] No Lua or Python in Gimp 2.99

2020-06-14 Thread Ofnuts
On 14/06/2020 13:34, Michael Schumacher wrote: On 6/14/20 1:16 PM, Ofnuts wrote: This looks more like an environment problem (path?) Any hints? What environment variables do you have set for your prefix? My environment looks like this, where `build` contains the sources and `run

[Gimp-developer] No Lua or Python in Gimp 2.99

2020-06-14 Thread Ofnuts
When I start a freshy pulled/compiled 2.99 on my Ubuntu 19.10, I get: For Lua:     luajit: ...mp/2.99/plug-ins/goat-exercise-lua/goat-exercise-lua.lua:22: module 'lgi' not found:     no field package.preload['lgi']     no file './lgi.lua'     no file

Re: [Gimp-developer] Logon to gitlab.gnome.org broken?

2020-05-24 Thread Ofnuts
On 25/05/2020 00:43, Kevin Cozens wrote: On 2020-05-24 5:20 p.m., Ofnuts wrote: While trying to report a bug, I try to sign in,ᅵ but on the logon page: - the "standard" option seems disabled, only the LDAP version is enabled (but I have no account for that) It is a little

[Gimp-developer] Logon to gitlab.gnome.org broken?

2020-05-24 Thread Ofnuts
While trying to report a bug, I try to sign in,  but on the logon page: - the "standard" option seems disabled, only the LDAP version is enabled (but I have no account for that) - the "3rd party login" links all elicit an error 404. So, how can mere mortals report bugs? Or is it temporary?

[Gimp-developer] Selection fill on channel bug

2020-05-13 Thread Ofnuts
I just hit a bug on 2.10.14 where filling a selection on a channel fills the selection bounding box and not the selection itself (both using the GUI and the gimp-edit-fill function). This problem appears fixed in 2.10.18. Does anyone know what the bug really was, in which version it appeared and

Re: [Gimp-developer] Why does it take so long until Gimp finds out that no image is on the clipboard

2020-05-04 Thread Ofnuts
On 04/05/2020 12:29, Adalbert Hanßen wrote: I am running Krusader under Xubuntu 18.04.4 LTS. I can click and Ctl-c on a file to paste the complete path to the file into an editor window, I can paste the whole file if I Strg-v it in a file manager. I can copy pictures from one application to

Re: [Gimp-developer] Why does it take so long until Gimp finds out that no image is on the clipboard

2020-05-03 Thread Ofnuts
On 03/05/2020 20:07, Liam R E Quin wrote: On Sun, 2020-05-03 at 19:17 +0200, Adalbert Hanßen wrote: Whatreally annoys me isthat it takes almost a minute for Gimp to tell me that there is no image on the clipboard. Is this under GNOME 3? or KDE/plasma? Do you have a clipboard manager running?

Re: [Gimp-developer] Asking for help/collaboration in nonprofit mini-project around covid-19

2020-05-01 Thread Ofnuts
On 01/05/2020 22:40, P. Cáliz wrote: Hi all I am trying to launch a social (non-profit) mini-project based on the hashtag #EstasEnMisPensamientos / #YouAreOnMyMind. I am going to publicly share a selection of my photos (a few hundred, I suppose there will be some good ones ;-) ) labeled

Re: [Gimp-developer] Watching gui commands with console

2020-04-28 Thread Ofnuts
On 28/04/2020 12:48, Metin Barış via gimp-developer-list wrote: Hello Dear all, I have a question to experienced developers here, i am new on using script-fu Is there any way of console log or watch the commands running from GUI side of the program ? For example whenever i run a crop for an

[Gimp-developer] Ubuntu PPA still on 2.10.14

2020-03-13 Thread Ofnuts
It seems the 2.10.18 build failed, from the build log: The following packages have unmet dependencies: sbuild-build-depends-gmic-dummy : Depends: libgimp2.0-dev but it is not going to be installed E: Unable to correct problems, you have held broken packages.

[Gimp-developer] Missing dependencies when building Gimp with meson on Ubuntu 19.10

2020-03-06 Thread Ofnuts
Trying my hand at: https://wiki.gimp.org/wiki/Hacking:Building Installed all the prereqs listed in https://wiki.gimp.org/wiki/Hacking:Building/Linux Things went quite smoothly for all other packages: babl, gegl, mypaint. Now trying the meson build for Gimp, it fails with two missing

Re: [Gimp-developer] Building babl & gegl with meson

2020-03-05 Thread Ofnuts
On 06/03/2020 05:43, Owen wrote: Try https://wiki.gimp.org/wiki/Hacking:Building Owen Looks like it, thanks. ___ gimp-developer-list mailing list List address:gimp-developer-list@gnome.org List membership:

Re: [Gimp-developer] Building babl & gegl with meson

2020-03-05 Thread Ofnuts
On 06/03/2020 00:34, Partha Bagchi wrote: Ofnut, You are pretty well versed in this stuff. :) I used to be... This should get you started: Exactly what the doctor ordered, thanks. ___ gimp-developer-list mailing list List address:

[Gimp-developer] Building babl & gegl with meson

2020-03-05 Thread Ofnuts
Is there a write-up somewhere indicating how to build Babl & Gegl? They seem to be using meson/ninja and all the indications I can find look fairly old and assume that they are built using autoconf+make. Cheers ___ gimp-developer-list mailing list

Re: [Gimp-developer] Invalid input arguments of file-raw-save2

2020-02-27 Thread Ofnuts
Looking at the source code; RAW_PLANAR would be 6 (the plugin defines many images types, but only accepts RAW_RBG and RAW_PLANAR when saving). ___ gimp-developer-list mailing list List address:gimp-developer-list@gnome.org List membership:

Re: [Gimp-developer] How to create a GimpFloatArray in Python plugin?

2020-02-19 Thread Ofnuts
On 2/19/20 9:17 PM, Lloyd Konneker via gimp-developer-list wrote: Specifically, to pass as third arg to Gimp.PDB.gimp_pencil(layer, 4 line). Said argument should be GimpFloatArray according to PDBBrowser. I create a GimpValueArray to pass args to the pdb. To create a GValue for the third arg,

Re: [Gimp-developer] GIMP 2,.8 Bug for function cancel - control+z

2020-02-08 Thread Ofnuts
On 2/8/20 3:06 PM, aertx0--- via gimp-developer-list wrote: Does GIMP have a bug for version 2.8, with the button control + z not working? Platform: Win7 64 bit Never heard of that one. Go to "Edit>Keyboard shortcuts", and enter "undo" in the search bar. Is Ctrl-Z mapped to "edit-undo"?

Re: [Gimp-developer] Deleting on images with alpha channel does not delete

2020-02-05 Thread Ofnuts
On 2/5/20 2:55 PM, Hanno Böck wrote: Hello, I've been asked to bring this discussion to this mailinglist. There's an issue with GIMP that can lead to unexpected disclosure of private information if one tries to use GIMP to remove private data from images. The problem is that when someone

Re: [Gimp-developer] New asset / extension manager

2020-01-08 Thread Ofnuts
On 1/8/20 11:00 AM, Jehan Pagès via gimp-developer-list wrote: Unless by priority you mean throwing my family, friends and life under the bus to get it done yesterday, because yeah I don't have any of these and won't ever have. And you haven't even got a bus right now :)

[Gimp-developer] Copying a layer mask between images

2019-12-09 Thread Ofnuts
It's easy to copy a layer to another image:     pdb.gimp_layer_new_from_drawable(sourceLayer,targetImage) But I cannot find an equivalent call for a Mask/Channel:     - gimp_create_mask() won't take an existing mask, just an existing Channel (and since it's another image I cannot even use the

Re: [Gimp-developer] marking a document/image as dirty/changed in a plugin

2019-11-11 Thread Ofnuts
On 11/10/19 5:23 AM, Dan Hitt via gimp-developer-list wrote: The other hole is that i find that so far i cannot read and write a pixel. From my experiments: - start an "undo group": this marks the image "dirty" - attach an "undoable" parasite - end the undo group and exit At that point if

Re: [Gimp-developer] Accessing stdin from a Python based GIMP Plugin.

2019-09-04 Thread Ofnuts
On 9/4/19 6:48 AM, Craig Sanders via gimp-developer-list wrote: Hello all. Are there any gotchas that one should be aware of when accessing stdin from a Python based GIMP Plugin? The reason I ask, is because I am implementing a Plugin which seems to be working fine - until such time as I

Re: [Gimp-developer] Is there any kind of documentation on the new layer blend modes?

2019-08-20 Thread Ofnuts
Thanks for the thorough explanations... The "probabilistic" point of view is interesting. Your write-up makes a load of sense but some more time is required for this to completely sink in:) On 8/18/19 9:35 AM, Ell via gimp-developer-list wrote: There's indeed no organized documentation for

[Gimp-developer] Is there any kind of documentation on the new layer blend modes?

2019-08-16 Thread Ofnuts
Specifically, I'm wondering about the "Split", "Merge", and the group "Passthrough" modes. The only relevant Google answer is a paying video tutorial. Of course I have checked the online doc... ___ gimp-developer-list mailing list List address:

Re: [Gimp-developer] Gimp Background Removal App

2019-06-09 Thread Ofnuts
On 6/9/19 6:05 AM, Sarey Savy via gimp-developer-list wrote: Hello there! I absolutely love the Gimp background removal app but I noticed it scales the image drastically to a smaller size... Is there a way to remove the back ground but keep the original size width and height of the image?

Re: [Gimp-developer] When writing a GIMP Plugin using Python, how can the Plugin determine and/or set the Colour Profile of any image that it operates on?

2019-05-21 Thread Ofnuts
On 5/21/19 3:43 AM, Craig Sanders via gimp-developer-list wrote: Hello. I am writing a GIMP Plugin using Python, and I would like to know how my Plugin can determine and/or set the Colour Profile of any image that it operates on. The reason I ask this, is because I have some PNG files which

Re: [Gimp-developer] png file exports - disable metadata?

2019-05-19 Thread Ofnuts
On 5/16/19 12:03 AM, Paul Jewell via gimp-developer-list wrote: Hi All, I am wondering about a curious event I am seeing related to exporting PNG images from Gimp either through the usual interface, or via a script like so: pdb.file_png_save2(gimp.image_list()[0],

Re: [Gimp-developer] When writing a GIMP Plugin using Python, can the Plugin display a GIMP based Dialog box informing the user if they haven't provided an argument?

2019-05-12 Thread Ofnuts
when the input is invalid. Yes, it's definitely easier to throw an exception, but those are IMHO rather to deal with some unexpected errors. On Sat, May 11, 2019, 23:44 Ofnuts mailto:ofn...@gmx.com>> wrote: If the plugin is for public use, gimp.message() is a better solution b

Re: [Gimp-developer] When writing a GIMP Plugin using Python, can the Plugin display a GIMP based Dialog box informing the user if they haven't provided an argument?

2019-05-11 Thread Ofnuts
If the plugin is for public use, gimp.message() is a better solution because it will display in a dialog box or in the Gimp message console  depending on user preferences. You don't really need to drag in all the GTK support just to display an error message. On the other hand, I don't see how

Re: [Gimp-developer] How is supposed to work the "dash_offset" when stroking paths in line mode?

2019-05-01 Thread Ofnuts
On 5/1/19 7:45 PM, Ofnuts wrote: *  the Python help says the input value range for "set" is 1..100 while the output value range for "get" is 0..2000 * whatever the value I seem to always get the same result Is this supposed to shift the dash pattern? Is it an absolute val

Re: [Gimp-developer] Is there any way to free Gimp memory and avoid restarting it?

2019-02-06 Thread Ofnuts
On 2/5/19 5:35 PM, jEsuSdA 8) wrote: El 2/2/19 a las 9:58, Ofnuts escribió: The fact that the memory isn't marked free doesn't mean it is unusable. Tried in Gimp 2.10 on Ubuntu: - load 5 20MPx Jpegs: memory is 1.35GB - close all: memory still at 1.35GB - load them again: memory is 1.4GB

Re: [Gimp-developer] Is there any way to free Gimp memory and avoid restarting it?

2019-02-02 Thread Ofnuts
On 2/1/19 11:35 PM, jEsuSdA 8) wrote: El 1/2/19 a las 23:15, jEsuSdA 8) escribió: Hi! When editing several images in Gimp (10Mpixels each one), Gimp consumes memory little by little (sometime not so little by little ;) ) and this memory does not get free instead the images where closed.

Re: [Gimp-developer] [Gimp-web] Alexandre Prokoudine attacks on GIMP critics around the Web

2019-01-08 Thread Ofnuts
On 1/8/19 7:23 PM, Ryan Stark via gimp-developer-list wrote: A sign of the problems is that on Linux we have Krita and Mypaint. If Gimp's tools had been better for painting and manipulating things on the canvas we would not have needed those apps. Now, that's a weird argument. Linux has always

Re: [Gimp-developer] Command line Gimp on OS X

2019-01-04 Thread Ofnuts
On 1/2/19 10:09 PM, Alain Jennotte via gimp-developer-list wrote: Hi, I'd like to open a file in Gimp as part of a script. If Gimp is not launched, it works perfectly with: open McGimp-2.10.8.app --args ~/Documents/Archive/scanpic.jpg But I don't know how to open a file with the script when

Re: [Gimp-developer] Please Help

2018-12-12 Thread Ofnuts
On 12/12/18 12:22 PM, Alexandre Prokoudine via gimp-developer-list wrote: On Wed, Dec 12, 2018 at 2:20 PM Göran Persson via gimp-developer-list wrote: Hello. Please, I am very pleased with GIMP. Very nice and good program. but now a virus has appeared. See attached file. I don’t like this

Re: [Gimp-developer] Behavior change in paint modes between 2.8 and 2.10

2018-12-09 Thread Ofnuts
On 12/9/18 3:56 PM, Ell via gimp-developer-list wrote: On 12/7/18 6:16 AM, Ofnuts wrote: In 2.8, on a transparent layer, paint something blue, set the FG color to red, set the paint tool to "Hue" mode, paint over: the blue parts turns to red, the transparent parts remains unchanged

[Gimp-developer] Behavior change in paint modes between 2.8 and 2.10

2018-12-07 Thread Ofnuts
In 2.8, on a transparent layer, paint something blue, set the FG color to red, set the paint tool to "Hue" mode, paint over: the blue parts turns to red, the transparent parts remains unchanged. In 2.10, if you do the same thing with the non-legacy modes, the transparent parts are painted.

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,

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

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

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

2018-06-27 Thread Ofnuts
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: On 06/19/18 21:43, Paco Garcia via gimp-developer-list wrote: Is there any

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:

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

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=0w=1usp=mail_form_link

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

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

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

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

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

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

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

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

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,

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

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,

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

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] 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] 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

[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] 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

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.

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?

[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

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

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 bradgibson...@yahoo.com 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

[Gimp-developer] Sourceforge downloads

2015-05-26 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

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

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

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-developer-list

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

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

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

  1   2   >