Re: [Gimp-developer] Fast-painting using the undo stack

2011-08-09 Thread saulgoode
a snapshot at each step. https://chiselapp.com/user/saulgoode/repository/script-fu/wiki?name=sg-snapshot ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer

Re: [Gimp-developer] Script baffling

2011-02-24 Thread saulgoode
Quoting Kevin Cozens ke...@ve3syb.ca: Roger Penn wrote: The included script worked just fine before upgrading from 2.2 to 2.6. I've [snip] (define (BulletinBoard_Blue_Header inText inFilename) (let* ( (drawable -1) (text inText) (filename inFilename)

Re: [Gimp-developer] Creating sub-directories from Script-Fu scripts

2011-02-07 Thread saulgoode
Quoting Kevin Cozens ke...@ve3syb.ca: saulgo...@flashingtwelve.brickfilms.com wrote: Script-fu does not provide a way to create subdirectories This came up in #gimp recently. It would be a useful addition to Script-Fu. This could be done by adding a dir-create function to the ftx extension

Re: [Gimp-developer] pdb.gimp_get_item_by_id(), or ids and layers and layer groups

2011-02-07 Thread saulgoode
) ))) (script-fu-register script-fu-sg-save-tree Save image tree... Save each layer as a PNG retaining group information saulgoode saulgoode February 2011 * SF-IMAGE The image 0 SF-DIRNAME Image Directory /home/saul ) (script-fu-menu-register script-fu-sg-save-tree

Re: [Gimp-developer] Creating sub-directories from Script-Fu scripts

2011-02-07 Thread saulgoode
Quoting Kevin Cozens ke...@ve3syb.ca: Um... no. The system function was deliberately left out of the portion of tsx I included with Script-Fu. Few people would need it and it is just too dangerous to have available in all GIMP installs. It would allow creation of trojan scripts that could do

Re: [Gimp-developer] pdb.gimp_get_item_by_id(), or ids and layers and layer groups

2011-02-06 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: I'm not a dev but AFAIK none of the layer group stuff es exposed in the pdb, so has not been added to script-fu or python. On 2/6/11, Javier Candeira jav...@candeira.com wrote: : : The gimp.image.layers sequence only contains the first-level

Re: [Gimp-developer] Dropping Scheme with gimp 2.8?

2011-01-15 Thread saulgoode
I'd like to apologize to the list. I had responded to Kevin off-list because most of my questions were specific to the upstream TinyScheme project and had only peripheral impact to Script-fu development. I probably should have posted to the list anyway (I have attached the contents of my

Re: [Gimp-developer] unsharp mask

2010-12-08 Thread saulgoode
A bit off-topic, but in one of the upcoming releases would it be possible to increase the maximum radius allowable in the Unsharp Mask dialog to 500 or so. With increased image sizes being much more prevalent than in the past, the original maximum (120) can be somewhat limiting.

Re: [Gimp-developer] distributing gimp with another program

2010-11-21 Thread saulgoode
Quoting ash oakenfold conceptual.iner...@gmail.com: I'm using gimp for some image post-processing (via script-fu and the command line) and I'd like to include it in the distribution of my Flash application. : : So, just to be clear, can I distribute gimp and use it to make a batch call

Re: [Gimp-developer] Detecting closure of selection

2010-10-09 Thread saulgoode
Quoting Ofnuts ofn...@laposte.net: Is there a practical, fast way, to detect this case, i.e, that the selection covers the whole layer (or image?) and that no pixels remain unselected? I assume that inverting the selection again and testing for empty would work, but that would be two

Re: [Gimp-developer] shorthanded and outnumbered (Re: Native RAW support)

2010-09-20 Thread saulgoode
Quoting Joao S. O. Bueno gwid...@mpc.com.br: Oliver - this rant has no reason to be. Sorry for that. I disagree. Oliver has politely raised an issue to be discussed and presents some valid points. GIMP is nearly a million lines of code -- well over a million if you take into account

Re: [Gimp-developer] Closing Command Line Window in Batch Mode (Windows

2010-08-25 Thread saulgoode
Quoting pakko for...@gimpusers.com: : : : Another issue concerns time measuring. I would like to measure the time gimp takes for applying the different filters. Is it somehow possible save a timestamp to a file with script-fu? (set! port (open-output-file timings.log)) (set! starttime

Re: [Gimp-developer] Canvas size, background, and channels

2010-08-19 Thread saulgoode
Quoting Chris Mohler cr33...@gmail.com: Is this a bug? (or a feature ;) 1. Create new RGB image 2. Add channel 3. Increase canvas size 4. Edges of channel are now filled 100% solid, regardless of BG color I expected: 4. Edges of channel are now filled with % based on BG or possibly FG

Re: [Gimp-developer] Script debugging

2010-07-27 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: Decent debugging facilities are missing. Only tracing is supported natively. Anyone know how? Even that would be handy. Call the 'tracing' function with an argument of 1 to enable tracing (0 to turn it off). The output from the trace

Re: [Gimp-developer] Enhancement request: better utilization of mouse buttons

2010-07-25 Thread saulgoode
Quoting Alexandre Prokoudine alexandre.prokoud...@gmail.com: On 7/25/10, Olivier wrote: I cannot count how many times I have been happy to be able to reach almost everything from a simple right-click. If other image manipulation applications cannot offer this possibility, too bad for them.

Re: [Gimp-developer] Enhancement request: better utilization of mouse buttons

2010-07-25 Thread saulgoode
Quoting Alexandre Prokoudine alexandre.prokoud...@gmail.com: GIMP has three ways to access menu currently: menu bar, top-left button where ruler's origin is and right-click menu. This is bloat. The first two methods are not always available. As already mentioned above, menubar could simply

Re: [Gimp-developer] Creating unique file names with Script-Fu

2010-06-24 Thread saulgoode
Quoting Gino D ginodo...@gmail.com: I do not believe it is possible for a Script-fu to delete files. You will need to either do this outside of GIMP or write a plug-in. Deletion of files is made possible by the “file-delete” procedure, as shown at the end of the sequence of commands I

[Gimp-developer] Layer Group boundaries

2010-06-23 Thread saulgoode
The implementation of layer groups is progressing very nicely and for the most part they behave as one would expect, and operations upon them behave as I would expect. However, there is one inconsistency that I feel should be considered. Layer groups tend to behave as a sub-image within an

Re: [Gimp-developer] Creating unique file names with Script-Fu

2010-06-23 Thread saulgoode
Quoting Gino D ginodo...@gmail.com: I'm working on a script in which I would like to insert a sequence of commands aimed to save a drawable as PAT file and eventually, when no longer needed, eliminate the file in question. I do not believe it is possible for a Script-fu to delete files. You

Re: [Gimp-developer] parasite usage

2010-06-03 Thread saulgoode
Quoting Giampaolo Bellini iw2...@gmail.com: I'm writing my first first plugin for gimp and I'm looking for more info about parasite: expecially, I wonder if there is a standard way to improve parasite's compatibility between different plugin revisions... what if, for example, I add, change

Re: [Gimp-developer] Looking for guidance on implementing a plugin

2010-05-29 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: On a side note, what are tattoos good for? Are they used for anything, anywhere? Layer tattoos are useful when a reference to a layer needs to be maintained across GIMP sessions, subsequent open-ings of the same image within the same

Re: [Gimp-developer] Looking for guidance on implementing a plugin

2010-05-28 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: I am writing a c plugin to scale a layer. (This is much as an exercise for me as anything). I have looked at a few examples and they handle things differently - Create a new image with a new layer the new size The only reason I can

Re: [Gimp-developer] Calling a function from a custom module

2010-04-18 Thread saulgoode
Quoting Jason S. for...@gimpusers.com: Hey all. I'm more or less a beginner when it comes to GIMP scripting (though I do have a few years of exp in general development) and I've run into a bump with PyGimp that I was hoping someone might be able to give me a hand with. As general

Re: [Gimp-developer] Possible Future of ScriptFu/TinyFu with R6RS/Racket

2010-04-07 Thread saulgoode
I thought I'd comment with some of my opinions on the proposal/project presented by Andreas_P. I have included the original post in its entirety at the end of this mail (as it's been a while since it was made). Over the years, GIMP's plug-in/extension system has remained fairly language

Re: [Gimp-developer] [Fwd: GTK+ 2.20.0 released]

2010-03-25 Thread saulgoode
On 03/24/2010 03:21 PM, Karl Günter Wünsch wrote: On Wednesday 24 March 2010, Alexandre Prokoudine wrote: On 3/24/10, Karl Günter Wünsch wrote: This is ludicrous - how would anyone trying to use the keyboard learn the different mnemonics available? I would imagine by holding down the ALT key

Re: [Gimp-developer] [Fwd: GTK+ 2.20.0 released]

2010-03-24 Thread saulgoode
Quoting Sven Neumann s...@gimp.org: just forwarding a few aspects of the GTK+ 2.20 release notes that are of interest for GIMP: GTK+ 2.20.0 is now available for download at: : : : Congratulations and a lot of thanks to the GTK+ team for this release. Though perhaps minor, the

Re: [Gimp-developer] where is Gee Zoom and Gee Slime in practice ? (translation related)

2010-01-29 Thread saulgoode
Quoting Cristian Secară or...@secarica.ro: I have no idea what Gee means (for translation) and wanted to see what does in practice. However, all references I found on the internet are related to some easter egg, presumably outdated and removed from code (at least in 2.6.x). The references

Re: [Gimp-developer] Plugin that can open a drawable on screen. What am I doing wrong?

2009-12-26 Thread saulgoode
Quoting Louise Hoffman louise.hoff...@gmail.com: When I select the plugin in GIMP I get these errors: Calling error for procedure 'gimp-drawable-width': Procedure 'gimp-drawable-width' has been called with an invalid ID for argument 'drawable'. Most likely a plug-in is trying to work on a

[Gimp-developer] Changes in 2.6.8 release

2009-12-19 Thread saulgoode
I have extracted the following list of changes from the GIT log and am presenting it here in case it might facilitate the efforts to announce the 2.6.8 release. I have tried to follow the format used on the 2.6 NEWS page (http://developer.gimp.org/NEWS-2.6). Overview of Changes from GIMP

[Gimp-developer] Layer scaling in 2.6

2009-12-10 Thread saulgoode
I am using the latest GIT of the STABLE branch (2.6.8) and am noticing an anomaly when scaling layers. When upscaling a fully opaque layer using the Scale Tool, the edges of the resulting layer are sometimes have partial transparency. This doesn't always happen -- it seems dependent upon

[Gimp-developer] default-gradient in gimprc

2009-12-02 Thread saulgoode
According to its man page, a user should be able to set the default-gradient property in his local gimprc. However, this setting is apparently never honored (unless the user manually edits either the contextrc file or the tool-options/paintbrush file). It would seem that either there is no

Re: [Gimp-developer] default-gradient in gimprc

2009-12-02 Thread saulgoode
Thanks for the response. You have allowed me to resolve my problem; though I would note that the name of the applicable file is devicerc and that this file will only exist if the user has performed a Save Input Device Setting Now within the Edit-Preferences-Input Devices dialog. Regards.

Re: [Gimp-developer] Creation of script-fu dialogs?

2009-11-30 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: I'm guessing this is a startup thing, where the pdb menus are being built as the scripts are loaded, so if the hex script is loaded first then it will work, but if not it won't? Any suggestion if I am wasting my time? (I can just trap the

Re: [Gimp-developer] Peter's single-window proposal

2009-09-28 Thread saulgoode
Citing a passage regarding the image parade on Peter Sikking's blog post: What I find very intriguing is that the notion of which file is open starts to blur. Having a file being loaded from disk becomes a side effect of clicking it to make it the current file. Similarly GIMP can decide

Re: [Gimp-developer] GIMP in-game feature

2009-08-30 Thread saulgoode
Quoting Eckhard M.\ Jäger b...@neeneenee.de: So we like to get the permission to do so and we like to know what kind of license the GIMP logo has (the artwork must be distrubuted as CC/ Free Art License). According to http://www.gimp.org/about/linking.html , the provided images of Wilber,

Re: [Gimp-developer] Register script in Vectors Menu?

2009-07-28 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: Brilliant - Thanks. I was confused by the message, not realizing that the initial INT32 in the error message was the image type (set to in my case). Actually, the first argument is the RUN-MODE, which is implicit when calling a Script-fu

Re: [Gimp-developer] Register script in Vectors Menu?

2009-07-27 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: I have written a script to fractalize a path (vector) and wanted to register it in the paths menu. Here is my register statements: : : SF-IMAGE image 0 SF-DRAWABLE drawable

Re: [Gimp-developer] What would be a better set of default resources?

2009-07-20 Thread saulgoode
Martin Nordholts wrote: Does anyone have any suggestions on adjustments and additions to the default set of GIMP resources? I would propose having a hard-edged, foreground color to background color gradient. Such a gradient can be useful for creating circles, boxes, blinds, bullseyes, and

Re: [Gimp-developer] GAP Encoding

2009-06-28 Thread saulgoode
Quoting Jason van Gumster ja...@handturkeystudios.com: I've been working my way through explaining GAP's video encoding feature and stumbled across something that I couldn't find any obvious documentation to (or figure out on my via trial and error). Basically, I'd like to know the difference

Re: [Gimp-developer] GIMP GAP question

2009-06-27 Thread saulgoode
Quoting Mirai Warren the.future.comes...@gmail.com: How can I get the layer id of the current layer to use in a GAP layer operation? Is there already a way to get it in GAP code? Whenever specifying layers in GAP dialogs, the layers are described by their stack positions -- by default:

Re: [Gimp-developer] need help with script-fu vector creation

2009-06-05 Thread saulgoode
I don't have access to GIMP right now but if I recall correctly, the PDB's description of the third parameter is misleading; it is actually the number of coordinates and not the number of points. Also, note that each vertex of your triangle will require three points: the anchor plus the two

Re: [Gimp-developer] Mock-ups for Adaptable GIMP

2009-05-30 Thread saulgoode
I really enjoyed the talks[1] you gave at LGM 2009 (or I should say the videos of them as I didn't attend). The kinematics talk[2] was quite intriguing and I hope to see the concept incorporated into GIMP sometime in the future. You are probably already familiar with it, but your usability

Re: [Gimp-developer] Curves Tool feature request (again?) - and Color Picker

2009-05-24 Thread saulgoode
In addition to Mr Neumann's comments, while the Color Picker dialog can not be raised simultaneous with the Curves dialog, you can display the Sample Points dialog (Windows-Dockable Dialogs-Sample Points) and display the pixel values for multiple points after placing them on the image.

Re: [Gimp-developer] enhancement for eraser/brush tools: resurrect erased/cleared

2009-05-24 Thread saulgoode
You can accomplish the same thing by adding a layermask to the layer, and initialize the layermask using the Transfer Layer's Alpha Channel. Subsequently hiding, editing, disabling, and/or removing the layermask permits full control of whether the layer's RGB values are shown. Quoting

Re: [Gimp-developer] [wish] alignment rotation

2009-05-14 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: there is such a plugin. I think I saw it in the Meet the Gimp forums. I wrote the following script a while back for a coin collector who wanted to easily crop his scans and rotate them so that the coin was oriented properly. The interface I

Re: [Gimp-developer] Save + export spec essentials implemented

2009-05-07 Thread saulgoode
Quoting Martin Nordholts ense...@gmail.com: I have been working on implementing the Save + export spec [1] for a while. : : Comments very much appreciated! I haven't GITified my development yet and thus have not tried your implementation. If your request for comments is only on the

Re: [Gimp-developer] Background color property for GIMP images

2009-04-28 Thread saulgoode
Quoting David Gowers 00a...@gmail.com: The eraser currently does change color values, in the case of layers without alpha (it's like using paintbrush or pencil with the background color). Yahvuu's proposition would make sure it never changed color values because there would be no layers

Re: [Gimp-developer] Background color property for GIMP images

2009-04-27 Thread saulgoode
Perhaps I am misunderstanding this proposal, but the ramifications seem to be more confusing than the present method. And while I realize that GIMP does not make any guarantees about retaining the colors of transparent pixels, its current behavior is quite useful for editing files destined

Re: [Gimp-developer] a good student UI project...

2009-03-29 Thread saulgoode
Quoting peter sikking pe...@mmiworks.net: so now we need a design problem. the course is short but intense, 3 days with me full-time to work up a solutions model and then they take some days to finish their presentation. so now huge redesign problems, more something like a compact tool.

Re: [Gimp-developer] save + export...

2009-03-06 Thread saulgoode
Quoting peter sikking pe...@mmiworks.net: we have discussed this intensely before, the ambiguity of what you really got in your document window after opening--or saving to--a non-GIMP-type image (e.g. jpeg, png). : : So here is a short spec:

Re: [Gimp-developer] 2.6 plugin menu changes

2009-02-19 Thread saulgoode
Quoting Alesh Slovak alesh.slo...@avasys.jp: As a sidenote I was wondering why the screenshot plugin defines its menu entry as Image/File/Create/Acquire, but the menu entry shows up as File-Create-Screenshot. Why is the extra Acquire there? The Acquire portion of the Screenshot plug-in's menu

Re: [Gimp-developer] Gimp on a Commercial CD-Rom ?

2009-02-11 Thread saulgoode
Quoting Alpár Jüttner al...@cs.elte.hu: You don't need permission as long as you follow the rules of the license. As Gimp is under the GPL the most important rule is to add the source code on the CD too. By the way, isn't it enough to publish it on the net? E.g. one could provide a link to

Re: [Gimp-developer] Gaussian highpass filter

2009-02-11 Thread saulgoode
Quoting Daniel Andrei andrei.daniel.ste...@gmail.com: Hello, I'm sorry if this is not the proper place to post this , but I have a question and I hope some of you may be able to help me, so here goes: I need to apply a gaussian high pass filter on a grayscale image represented as a pixel

Re: [Gimp-developer] Using parasites in script-fu

2009-01-30 Thread saulgoode
Quoting Sven Neumann s...@gimp.org: First of all you should upgrade to GIMP 2.6.4. Whenever you have a problem, try to update to the latest stable release. You never know, it might even solve your problem. I can verify that the anomalous behavior Rob A. described occurs in version 2.6.5

Re: [Gimp-developer] Using parasites in script-fu

2009-01-29 Thread saulgoode
Quoting Rob Antonishen rob.antonis...@gmail.com: OK - This could be a problem with tinyscheme and parasites. Here is a a console trace: (gimp-parasite-list) (1 (exif-orientation-rotate)) (gimp-parasite-attach (list test-counter 1 123)) (#t) (gimp-parasite-list) (2

Re: [Gimp-developer] Artificial limitation to script fu ?

2009-01-13 Thread saulgoode
Quoting Alchemie foto\grafiche fotocom...@yahoo.it: If what i described was done intentionally i will fear Sadism Uncalled for! The GIMP developers have put a LOT of time into considering how to present dialogs, what controls should be provided, how to describe those controls, and how to

Re: [Gimp-developer] Gimp license

2009-01-09 Thread saulgoode
Quoting C Wang chris.w...@sun.com: All: Gimp has bundled babl and gegl since 2.5.0 release, and these two modules are under LGPLv3 license. According to this diagram http://www.fsf.org/licensing/licenses/gpl-faq.html#matrix-skip-target , the Gimp license has already been converted to GPLv3.

Re: [Gimp-developer] Gimp license

2009-01-09 Thread saulgoode
Quoting saulgo...@flashingtwelve.brickfilms.com: I don't see why you'd have to remove BABL and GEGL code; they are libraries and to my understanding there is nothing wrong with linking GPL2 code to LGPL3 libraries. The above should have been: ... nothing wrong with linking GPL2 or later code

Re: [Gimp-developer] Gimp license

2009-01-09 Thread saulgoode
Quoting Michael Natterer mi...@gimp.org: So finally, I hereby suggest to move to GPL3 asap. Comments from any developers appreciated. Personally, I would welcome such a change. The licensing specified in the files app/gui/ige-mac-menu.[ch] appears to be LGPL2.1 with no or later clause.

Re: [Gimp-developer] script-fu problem in 2.6

2008-12-18 Thread saulgoode
Quoting Luis A. Florit gimpde...@luisflorit.endjunk.com: I haven't been following this discussion that closely; however, I would point out that the PDB function 'gimp-layer-get-mask' will return -1 if the layer does not have a mask. Yes. I manage to use that in 2.4 (because some strange

Re: [Gimp-developer] Run-Mode Enums

2008-12-18 Thread saulgoode
Quoting Pablo Yaggi pya...@alsurdelsur.com: But I try to call my own script with the RUN-NONINTERACTIVE argument and it complains about the argument list, if i remove it, it works just fine, then when i use my script with the parameters i declared in the define everything goes perfect but

Re: [Gimp-developer] SF-TOGGLE type?

2008-12-17 Thread saulgoode
You have been using TRUE and FALSE correctly. The problem with Pablo's script is that he passing the 'image' variable to 'gimp-drawable-is-rgb'. Presumably his script does not generate an error because he is executing his script on the first image he opened thus the imageID is 1 -- which

Re: [Gimp-developer] Using GIMP from my own program

2008-12-16 Thread saulgoode
Quoting Pablo Yaggi pya...@alsurdelsur.com: Ok, I made it work, I just replaced newlayer for newimage in the gimp-edit-paste call and it worked. But pasting into the image should work, shouldn't ?, do I have to set up a current layer or something ? There is no paste-as-new-layer function

Re: [Gimp-developer] script-fu problem in 2.6

2008-12-16 Thread saulgoode
Quoting Sven Neumann s...@gimp.org: Perhaps we need to add gimp-layear-has-mask then. Until then you could use gimp-plugin-set-pdb-error-handler to take over the error handling in order to suppress the warning. I haven't been following this discussion that closely; however, I would point

Re: [Gimp-developer] Using GIMP from my own program

2008-12-14 Thread saulgoode
Quoting Pablo Yaggi pya...@alsurdelsur.com: So ..., I think a couple of things are not clear to me about gimp, if plugins communicate with the core of gimp thought a pipe, I should be able to create a plugin to do what i want, even call other plugins, but could that plugin be executed from

[Gimp-developer] Freehand paths

2008-11-12 Thread saulgoode
The enhancements made to the Free Select tool in version 2.6 are quite phenomenal. The implementation is powerful yet intuitive and I congratulate those involved in its development (from the Changelog I am led to believe that Martin Nordholts handled the brunt of the coding effort). I was

Re: [Gimp-developer] Script-fu primitive wishlist: islands, integrals/sums, and data files

2008-11-01 Thread saulgoode
Quoting Adam C Powell IV [EMAIL PROTECTED]: I don't suppose there's a script-fu interface to the file browser for setting the file name... The registration parameters (SF-FILE) get evaluated when Script-fu is loaded (or scripts are Refreshed) and dialog boxes for file browsing otherwise

Re: [Gimp-developer] Script-fu primitive wishlist: islands, integrals/sums, and data files

2008-10-31 Thread saulgoode
Quoting Kevin Cozens [EMAIL PROTECTED]: Finally, opening and storing data files. See section 6.6 of the R5RS. Working with external files is handled via the use of pipes. A problem which I encountered with TinyScheme's character I/O is that the 'read-char' and 'write-char' functions

[Gimp-developer] SHIFT+bracket versus brace

2008-10-08 Thread saulgoode
I am running GIMP-2.6 on Slackware 12.1 and encountered a problem with the default shortcut key assignments for Decrease Value 2 more and Increase Value 2 more. The preferences dialog says that those to functions are assigned to shift + [ and shift + ] respectively but with my setup these

Re: [Gimp-developer] Automatically save curves file

2008-10-03 Thread saulgoode
Quoting Kent Tenney [EMAIL PROTECTED]: will there be provisions to apply a saved curve to an image without the gui? If you have the GIMP Animation Package installed, you will find a plug-in named 'plug-in-wr-curves' which permits application of a curves file. plug-in-wr-curves GIMP

Re: [Gimp-developer] script-fu error.

2008-10-01 Thread saulgoode
Quoting Kevin Cozens [EMAIL PROTECTED]: Giovanni Rizzardi wrote: I'm trying to update an old script (stegano.scm) that uses the functions bit-or and bit-and. Both these function should be ported from SIOD to TinyScheme but the interpreter raises an exception complaining about an unbound

Re: [Gimp-developer] translation related - who's right ?

2008-09-26 Thread saulgoode
Sample points are covered in chapter 5.5 of the online GIMP Users Manual[1]. The text strings will appear as messages in the status bar of the image window. The Add Sample Point message appears when you hold down the CTRL key and click on either the horizontal or vertical ruler, and then

Re: [Gimp-developer] Should we replace the 'Zoom when resizing image window'-button?

2008-08-12 Thread saulgoode
Quoting Martin Nordholts [EMAIL PROTECTED]: One adjustment to the behaviour was also agreed upon: When the toggle is turned on and the (scaled) image is smaller than and within the viewport, implicitly do a View - Fit Image in Image Window. Would it also not be reasonable to perform a Fit

Re: [Gimp-developer] Script proposed for inclusion in gimp 2.6

2008-08-05 Thread saulgoode
In my opinion, a better solution to the copy visible to new layer functionality would be to add an option to Merge Visible Layers which would retain the original visible layers. This approach would seem more intuitive and would not entail an additional menu command. It would also be more

Re: [Gimp-developer] Enhancement idea: Snapshot tool for quick comparisons

2008-06-27 Thread saulgoode
Quoting vabijou2 [EMAIL PROTECTED]: What I'm after is a fast-rendering, easy to use method of flipping through snapshots of my workflow. Shift-clicking on the eye-ball by each layer comes close, but it is slowed by the processing required during rendering. My proposal is a way to get around

Re: [Gimp-developer] ‘no image’ window: pro gress...

2008-03-17 Thread saulgoode
Quoting peter sikking [EMAIL PROTECTED]: some good news on this front, I have spent a couple of man-days rethinking and re-specifying the ‘no image’ window situation. It is now roughly complete: http://gui.gimp.org/index.php/No_image_open_specification If wrinkles need to be ironed out,

Re: [Gimp-developer] no image open spec...

2008-02-04 Thread saulgoode
The no image window should have a status line, as this provides useful feedback with regard to the hover-over hints of the menu commands. ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU

Re: [Gimp-developer] GAP Export?

2008-01-16 Thread saulgoode
The information about layer offsets in a frame sequence is not made readily available and a plug-in would need to be written (and, IMO, it would be simpler to write a Script run in batch mode). Also, once an object has been added to a frame sequence, GIMP only knows the offsets and extents

Re: [Gimp-developer] proposal for usability enhancements for Stroke dialog

2007-12-08 Thread saulgoode
I agree with all of your suggestions. I would assume that changes made in the dialog would update the stroke interactively and, hopefully, that the path could be reshaped while the dialog remained open. This would be very useful. I find myself doing Edit-Stroke pretty often, and there are a few

Re: [Gimp-developer] proposal for usability enhancements for Stroke dialog

2007-12-08 Thread saulgoode
I agree with all of your suggestions. I would assume that changes made in the dialog would update the stroke interactively and, hopefully, that the path could be reshaped while the dialog remained open. This would be very useful. Those are both feasible, but they go beyond the scope of what

Re: [Gimp-developer] using the GIMP donations

2007-11-22 Thread saulgoode
Martin Nordholts wrote: But I still can't see why it would be a bad thing to allow donors to donate money to specific features and what legal problems that would then arise. The administrative overhead would fall on me to the extent possible, and as long as patches are GPL and taxes etc

Re: [Gimp-developer] OpenPalette Implementation.

2007-11-22 Thread saulgoode
Hi, I would like to ask for the development team's consideration for implementing the OpenPalette format for their palettes. OpenPalette is really hoping for a medium with interoperability and flexibility. The file format is XML-based; there's a DTD and XSD already written and ready for

Re: [Gimp-developer] Resizing GIF animation: BUG/Feature request (repost)

2007-11-12 Thread saulgoode
Usually the GIMP does a good job resizing images, but not with the following GIF animation: http://pixloads.com/public/pview/45183/halloween31.gif When I scale it down using Image-Scale some ugly black dots get visible. This happens with GIMP 2.4 windows binary. Also on GIMP 2.2.13 under

Re: [Gimp-developer] 2.6 roadmapping, the UI part of it...

2007-10-31 Thread saulgoode
Quoting Robert Krawitz [EMAIL PROTECTED]: From: Sven Neumann [EMAIL PROTECTED] For the rare cases where you need more than one Layers dialog, you can open a second (or even a third one). At least currently GIMP doesn't keep you from doing that. Using 2.4.0, I tried opening

Re: [Gimp-developer] 2.6 roadmapping, the UI part of it...

2007-10-29 Thread saulgoode
What Mitch is referring to is that tabs are raised when doing drag-n-drops. I wish to thank Mitch for his brilliant implementation of this at the last minute of the 2.4 release. This functionality is already extremely useful for d-n-d'ing colors, channels, and layers between tabs and would

Re: [Gimp-developer] Message error in gimp 2.4

2007-10-27 Thread saulgoode
Quoting Daniel Pinheiro Lima [EMAIL PROTECTED]: ... But, in the new version of Gimp, the gap tool are sending a Message error: The image convert aren't working. The duplicate continue, the navigation resources (next frame, previous...last...) works, but send the same error message. The

Re: [Gimp-developer] discussing the roadmap for 2.6

2007-10-26 Thread saulgoode
Regarding the process of developing a roadmap, I think this mailing list should be where proposals are made and commented upon (there has already been some nice commentary in this thread). The main GIMP developers should fairly rapidly be able to come to a decision about the roadmap

Re: [Gimp-developer] discussing the roadmap for 2.6

2007-10-26 Thread saulgoode
time for a new format to be decided upon (not an insignificant task in itself). Quoting Alexandre Prokoudine [EMAIL PROTECTED]: On 10/26/07, saulgoode wrote: Finally, there should be an effort to maintain integrity of the XCF file format by converting between the core implementation of layer

Re: [Gimp-developer] Help needed for the gimp web site

2007-10-13 Thread saulgoode
I have written the following short blurb on the Sample Points feature and provided a corresponding screenshot (http://flashingtwelve.brickfilms.com/GIMP/Images/samplepoints.png). --- SAMPLE POINTS The ability to display information about sample points of an image has

Re: [Gimp-developer] other things we need for the 2.4 release (again)

2007-10-03 Thread saulgoode
Quoting Sven Neumann [EMAIL PROTECTED]: Here's a list of things that would be nice to have for the 2.4.0 release, in addition to the actual release tarball. Help with these tasks would be very much appreciated. Please volunteer. ... [snipped] ... - script-fu migration howto A document,

Re: [Gimp-developer] Gap documentation

2007-09-12 Thread saulgoode
Quoting Alchemie foto\\grafiche [EMAIL PROTECTED]: i will like to know where, i the Gap source code (or elsewhere ) i can find the doc listing the specifics needed to a plugin to be compatible with GAP (with this i mean that, as example, could be used by Filter all layers or from

Re: [Gimp-developer] add a polygonal selection tool

2007-09-12 Thread saulgoode
Quoting Liam R E Quin [EMAIL PROTECTED]: It's not entirely true to say you had to have used paths from the start, since you can save the first selection to a channel, make the new one with paths, including an approximate, much larger outer rectangle, and then convert to selection and

Re: [Gimp-developer] add a polygonal selection tool

2007-09-12 Thread saulgoode
Quoting The Peach [EMAIL PROTECTED]: maybe the polygonal selection tool is just syntactic sugar. a sort of one click less than using the path tool. So, if this is the way to think about polygonal selection tool, then add a default keybind for make it a selection, ... Try hitting the ENTER

[Gimp-developer] any plans to repack RC1 or release RC2

2007-08-27 Thread saulgoode
Michael Natterer wrote on Mon, 27 Aug 2007 04:31:00 -0700 On Mon, 2007-08-27 at 13:28 +0300, Alexander Rabtchevich wrote: Sorry for posting here, but RC1 is really unusable - it can crash on every image. As it was said, the bug had been fixed in SVN. Are there plans to release RC2 or

Re: [Gimp-developer] Missing button to confirm some tool actions (usability)

2007-08-20 Thread saulgoode
Quoting David Marrs [EMAIL PROTECTED]: Yes, I suspected I was over-simplifying. Nevertheless, the ability to hide the handles is very useful, maybe less so for selections but definitely for crops. Is the ability to do this implemented in some other way. If it isn't, can we consider

Re: [Gimp-developer] New option Use custom quality settings for JPEG files

2007-08-15 Thread saulgoode
Quoting Robert L Krawitz [EMAIL PROTECTED]: The problem is that custom tables seems very confusing -- it sounds like the user's going to be asked to input something she knows nothing about. One could argue that Use existing image quality settings means the same thing as Use quality settings

Re: [Gimp-developer] GAP

2007-08-05 Thread saulgoode
Hi, On Sat, 2007-08-04 at 03:44 -0400, I did notice that the file 'gap/sel-to-anim-img.scm' does not run under the TinyScheme-based Script-fu Did you also check the other Script-Fu script in the gap subdirectory? Yes. It appears to be fine. ___

Re: [Gimp-developer] GAP

2007-08-05 Thread saulgoode
Hi, On Sat, 2007-08-04 at 01:58 -0300, Joao S. O. Bueno Calligaris wrote: I am getting an error linking gimp-gap svn in a 64bit enviromment, in both trunk and gap-2-2 branch: That's a problem with the copy of libavcodec that is included with GAP. You better disable support for libavcodec

Re: [Gimp-developer] GAP

2007-08-04 Thread saulgoode
Sven Neumann wrote: I have fixed that in gimp-gap, both in trunk and gap-2-2. Would be cool if someone could do some more testing in the gap-2-2 branch before I do the release... So far I have not encountered any problems with the changes. I did notice that the file 'gap/sel-to-anim-img.scm'

Re: [Gimp-developer] Script-Fu/tinyscheme: using scheme_call?

2007-07-19 Thread saulgoode
There is a flaw in my approach (I suspected there would be). Once my 'test-call' function is evaluated, a subsequent error (of any kind) will quit TinyScheme. I hope this doesn't mean it is necessary to replicate the environment -- that would seem a pretty heavy penalty just to call a

  1   2   >