[Gimp-developer] 32bit BMP appear blank

2007-01-03 Thread Aurimas Juška
Hi, This is a summary of Bug 352262 – 32bit bitmaps (*.bmp) appear blank ( http://bugzilla.gnome.org/show_bug.cgi?id=352262 ) which as Sven said is important to be settled before releasing 2.4 version. After bmp plug-in has been updated it, among other things, started parsing bytes which were

Re: [Gimp-developer] Save As JPG Integrated (mockup)

2007-02-06 Thread Aurimas Juška
On 2/3/07, peter sikking [EMAIL PROTECTED] wrote: Thorsten Wilms wrote: BTW, some apps have web export dialogs with side by side panes original/compressed. I found toggling between original/preview in the same view to be superior if you want to spot JPG artifacts. It's important it can

Re: [Gimp-developer] Save As JPG Integrated (mockup)

2007-02-07 Thread Aurimas Juška
Hi, On 2/6/07, Sven Neumann [EMAIL PROTECTED] wrote: BTW, does this plug-in use GimpPreview widgets? I would like to get some feedback on features and API of GimpPreview and its derivatives. It actually uses GtkDrawingArea. This is related to zoom cropping functionality. If we dropped

Re: [Gimp-developer] Save As JPG Integrated

2007-02-07 Thread Aurimas Juška
Hi, On 2/7/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Tuesday, February 6, 2007, 20:03:59, peter sikking wrote: - that in-dialog cropping looks like a very uncomfortable way to do that to me; - simply display the Size in the fields that are now called Resize now without the

[Gimp-developer] GimpZoomPreview usability

2007-02-09 Thread Aurimas Juška
Hi, It uses GtkDrawingArea. ... I don't see why you couldn't implement cropping with one of the GimpPreview widgets. I tried to use GimpZoomPreview instead of GtkDrawingArea and want to tell you what I have found out. As I understand it, GimpZoomPreview is designed to be very efficient for

[Gimp-developer] Rewritten save-for-web

2007-03-08 Thread Aurimas Juška
Hi, Save-for-web plug-in has been rewritten in order to make code maintainable and to introduce some features previously discussed on the mailing list. If someone tests it (last version 0.8), please tell if it is useful and comment whether it should be added as standard gimp plugin. (There is an

Re: [Gimp-developer] save for web plugin feedback

2007-03-19 Thread Aurimas Juška
Hi, It seems that your friend has tried an older version. In newer version (0.8.1) there were some changes which affect plug-ins usability. It would be very nice to hear detailed comments about it from someone who would use save-for-web often. The plug-in is still missing some options, but

[Gimp-developer] GimpImage to GdkPixbuf

2007-03-22 Thread Aurimas Juška
Hi, What's the best way to render gimp image to GdkPixbuf (which in turn can be rendered to GdkWindow)? The GdkPixbuf would contain the same pixels as if they were rendered with Gimp on GdkWindow (display filters, color management, etc). In other words, it should pre-bake this stuff. Is it

Re: [Gimp-developer] GimpImage to GdkPixbuf

2007-03-23 Thread Aurimas Juška
On 3/22/07, Michael Natterer [EMAIL PROTECTED] wrote: I would say making a screenshot and loading the resulting file with gdk_pixbuf_new_from_file() is probably the easiest way. I would like to implement something like GdkPixbuf gimp_image_render_gdk_pixbuf (GimpImage) or even more general void

Re: [Gimp-developer] GimpImage to GdkPixbuf

2007-03-23 Thread Aurimas Juška
On 3/23/07, Michael Natterer [EMAIL PROTECTED] wrote: I could imagine just another copy whatever function that does this. You could then simply paste the buffer as new image and save it. An in-core pixbuf wouldn't help you anyway, you want the pixels in a file anyway to be able to use them.

Re: [Gimp-developer] GimpImage to GdkPixbuf

2007-04-02 Thread Aurimas Juška
On 3/23/07, Sven Neumann [EMAIL PROTECTED] wrote: What you are asking for is currently not possible. There are some ways to get something close though. It would help a lot if you could explain what exactly you want to achieve. We could then see if there are already ways to do that or if a new

[Gimp-developer] Multithreaded plug-in

2007-05-16 Thread Aurimas Juška
hi, I was trying to create a multithreaded plug-in but call to gimp_image_duplicate from worker thread results in the following message and worker thread deadlocks. (webexport:4097): LibGimp-WARNING **: unexpected proc return message received (should not happen) What am I doing wrong?

[Gimp-developer] Gimp save for web

2007-05-29 Thread Aurimas Juška
Hi, Save for web plug-in is getting closer to usable state (version 0.18.0 so far). (For those, who got 0.15 version please update to recent, as it had saving bug.) The plug-in now has most of the stuff that has been suggested as improvement on this mailing list. Most important is that previews

Re: [Gimp-developer] Separate+ plug-in

2007-06-12 Thread Aurimas Juška
Paste the last l :) http://cue.yellowmagic.info/softwares/separate.html On 6/12/07, Kevin Cozens [EMAIL PROTECTED] wrote: Guillermo Espertino wrote: Separate+ plug-in is available at: http://cue.yellowmagic.info/softwares/separate.htm The server is either down or the URL is bad. I can't

[Gimp-developer] Win32 plugin console window

2007-07-11 Thread Aurimas Juška
Hi, How do I change plug-in source tree so that console window wouldn't appear in background (On Win32 platform)? I use gimp-plugin-template, but I may have screwed up something. ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU

[Gimp-developer] plug_in_flush mysterious warning

2007-07-13 Thread Aurimas Juška
While testing my plug-in I noticed, that after quiting the plug-in The Gimp *usually* (but sometimes not, not depending on what you do) prints something like that: plug_in_flush(): broken pipe. It seems The Gimp wants to communicate with the plug-in after it's process has terminated. I added

[Gimp-developer] Solving Bug 356716 – GimpZoom Preview is broken in some plug-ins

2007-07-19 Thread Aurimas Juška
Hi, Some plug-ins which are left, are not so easy to fix, so some discussion: * jigsaw -- looks like lot of code would have to be changed to make it work with GimpZoomPreview correctly. However, I don't understand why this plug-in would need zoom preview at all. It doesn't do anything that

Re: [Gimp-developer] plug_in_flush mysterious warning

2007-07-19 Thread Aurimas Juška
On 7/16/07, Sven Neumann [EMAIL PROTECTED] wrote: On Fri, 2007-07-13 at 14:50 +0300, Aurimas Juška wrote: While testing my plug-in I noticed, that after quiting the plug-in The Gimp *usually* (but sometimes not, not depending on what you do) prints something like that: plug_in_flush

Re: [Gimp-developer] plug_in_flush mysterious warning

2007-07-20 Thread Aurimas Juška
Do other plug-ins show the same behavior for you? This sounds like a bug in your plug-in. Is there perhaps an idle handler or a timeout still running? I used to add GimpProgressbar in order to stop showing progress of temporary processing in image window (it was just created to capture

Re: [Gimp-developer] New Splash for 2.4

2007-09-28 Thread Aurimas Juška
Interestingly enough, I could never think of a splash screen that would be made for one version (2.4) and imposible to rework for other (2.6). You proved it's possible :) Nonetheless, The Gimp allows everyone to change default splash screen, so you can still make it available to the others. What

Re: [Gimp-developer] calling a procedure in a plugin

2007-10-16 Thread Aurimas Juška
http://developer.gimp.org/api/2.0/libgimp/libgimp-gimp.html#gimp-run-procedure Procedure parameters: http://www.goof.com/pcg/marc/pdb/gimp_by_color_select.html But it is generally easier to lookup params in procedure browser. On 10/16/07, Giuseppe Pasquino [EMAIL PROTECTED] wrote: Hello, I'm

Re: [Gimp-developer] calling a procedure in a plugin

2007-10-18 Thread Aurimas Juška
gimp_run_procedure() is not properly terminated with GIMP_PDB_END (see documentation). Again, as Sven said, use c wrappers if they are available for procedure that you need. On 10/18/07, Giuseppe Pasquino [EMAIL PROTECTED] wrote: Thanks to all for the useful help... I'll write this function but

Re: [Gimp-developer] proposal for managing resources such as brushes, gradients, etc

2008-01-17 Thread Aurimas Juška
On Jan 17, 2008 7:45 PM, William Skaggs [EMAIL PROTECTED] wrote: 2) If they are stored in a separate database, keyed by file names, then there is a great danger of losing the linkage between tags and object. If, for example, the user renames the directory holding some brushes, all of the

Re: [Gimp-developer] tagged resources such as brushes, gradients, etc

2008-01-18 Thread Aurimas Juška
On Jan 18, 2008 9:55 AM, Sven Neumann [EMAIL PROTECTED] wrote: My current favorite approach is to put the tags into files in the ~/.gimp-2.x directory, one file per resource type. So there would be a brushrc, gradientrc, patternrc and so on. These files will contain metadata from the actual

Re: [Gimp-developer] tagged resources such as brushes, gradients, etc

2008-01-19 Thread Aurimas Juška
Is it possible that one physical file could represent more than one resource? Let's say, some file format of other application which contains multiple brushes. Or some file format which contains multiple types of resources (brushes, patterns, etc). If such case should be handled, we could look at

Re: [Gimp-developer] Broken blending

2008-02-10 Thread Aurimas Juška
Hi, On Feb 11, 2008 9:29 AM, Sven Neumann [EMAIL PROTECTED] wrote: You aren't perhaps working with an image in Indexed mode, are you? Yes, my fault. ___ Gimp-developer mailing list Gimp-developer@lists.XCF.Berkeley.EDU

Re: [Gimp-developer] A simple (?) question...

2008-04-09 Thread Aurimas Juška
Hi Torsten, Some gimp plug-ins provide random seed value to user. This way user is able to play with the random value and to reproduce the same effect later, i.e. for tutorials. I am aware of that. The point is, that the function is a random but - according to it's documentation should behave

Re: [Gimp-developer] An idea for resource management

2008-05-19 Thread Aurimas Juška
Hi, On Mon, May 19, 2008 at 2:05 AM, Robert Krawitz [EMAIL PROTECTED] wrote: Currently, in order to use a custom brush/gradient/etc, you must first create it, then edit/save/etc. Every time you want a new brush you have to create a new one, even if it is a temporary brush. Instead why

[Gimp-developer] Tagging of Gimp Resources project status

2008-07-13 Thread Aurimas Juška
Hi, Tagging of Gimp Resources project is an attempt to make it easy and efficient to organize Gimp resources (brushes, patterns, gradients, palettes). Currently the project is already somewhat usable, allowing user to assign tags, filter resources on selected tags, preserve tags between session

Re: [Gimp-developer] Tagging of Gimp Resources project status

2008-07-14 Thread Aurimas Juška
Hi, On Mon, Jul 14, 2008 at 3:45 AM, David Gowers There is probably a need to import tags when adding a set of patterns. As in, person A packages up eight patterns into a .zip file; They've tagged these patterns with a few things that make universal sense (eg 'stone', 'stippling', or 'hi

Re: [Gimp-developer] strange tooltip meaning

2008-10-18 Thread Aurimas Juška
Hi, It works in both directions: it can be used to create lens distortion or fix it. On Sun, Oct 19, 2008 at 12:06 AM, Cristian Secară [EMAIL PROTECTED] wrote: On the Filters - Distorts - Lens distortion... menu, the tooltip over the Lens distortion says Corrects lens distortion. Isn't this

Re: [Gimp-developer] Tagging thoughts

2009-01-17 Thread Aurimas Juška
Hi, On Tue, Jan 13, 2009 at 5:04 PM, jbaker jba...@gimpthoughts.com wrote: 1) Have you thought about assigning a 'default' tag to all of the standard gimp items ? - It would be nice to filter out all of the standard items with one click... There were thoughts to assign default tags (which are

[Gimp-developer] Default tags for GIMP resources

2009-02-28 Thread Aurimas Juška
Hi, As you might already know, GIMP from next version will allow to tag resources (brushes, patterns, etc). It would be nice to create a default tag set for resources provided in a standard GIMP distribution. If someone would like to volunteer, there are following options to create (possibly

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

2009-07-24 Thread Aurimas Juška
hi, On Fri, Jul 24, 2009 at 2:59 PM, Alexia Deathalexiade...@gmail.com wrote: Actually, this is the key point of this discussion and IMHO the RIGHT WAY(TM) to solve this. Editing resources during use should not require write access. Saving the changes should. Use tweaking should be a different

[Gimp-developer] Resource tagging: future development

2009-08-13 Thread Aurimas Juška
Hello, How do we imagine resource tagging in the future GIMP versions? It is already usable as it is, but there are many ideas which may help to make it better or worse. First of all, multiple selection in resource windows. There is not much discussion about it, as some time ago we decided that

Re: [Gimp-developer] REQ: Mass-tagging of resources?

2009-08-17 Thread Aurimas Juška
Hi, On Mon, Aug 17, 2009 at 7:41 AM, Renan Birckrenan.dr...@gmail.com wrote: Is there some way (or, if not, would it be possible to add one) of tagging many resources at the same time? (e.g. doing a multiple-selection and then adding the same tags to all selected ones?) We are aware that this

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

2009-08-31 Thread Aurimas Juška
Hi, Hold on. There seems to be confusion here. CC and GPL are not compatible, which would be a problem for you. And I don't have the authority to give you permissions to use the logo in any way, I'm not the author of it. Don't you think there is too much confusion, problems and hold on to

Re: [Gimp-developer] TIFF load/save code

2009-09-17 Thread Aurimas Juška
Hello, On Thu, Sep 17, 2009 at 3:10 PM, Gary Collins gcatl...@yahoo.co.uk wrote: I'd be grateful if someone could post a link for me directly to the part(s) of the code responsible for loading/saving TIFF format files. http://git.gnome.org/cgit/gimp/tree/plug-ins/common/file-tiff-load.c

Re: [Gimp-developer] Hide progress bar

2009-10-06 Thread Aurimas Juška
Hi, On Tue, Oct 6, 2009 at 5:08 PM, Cristi Balas cris...@gmail.com wrote: I have a perl plugin that calls gimp-file-load-layer. and when i call this function, a progress bar apears in the status bar (if the status bar is hidden, then it's temporary made visible). I want my plugin not to

Re: [Gimp-developer] [PATCH] Use Glade + GtkBuilder for file-png.c save_dialog()

2010-01-08 Thread Aurimas Juška
Hi, On Fri, Jan 8, 2010 at 4:30 PM, Martin Nordholts ense...@gmail.com wrote: We need to be aware of that we are introducing extra disk IO which can give us problems, especialy during startup if we have to load a lot of files. In practice I don't think this will be a problem for a long time

Re: [Gimp-developer] Paint Dynamics in git version

2010-03-08 Thread Aurimas Juška
Hi, On Sun, Mar 7, 2010 at 5:50 PM, Alexia Death alexiade...@gmail.com wrote: By the way, is there somewhere some explanations about the purpose and use of tags and filters? I think I can guess a large part of this, but reading authorized text would be useful. I doubt there is a text, even

Re: [Gimp-developer] Paint Dynamics in git version

2010-03-10 Thread Aurimas Juška
Hi, 2010/3/10 Rob Antonishen rob.antonis...@gmail.com: What is the format for this?  If I wanted to distribute (for example) a set of pre-tagged patterns, could this be done currently in the dev build? There is no such feature yet. The idea is a simple archive of resouces + tags + possibly

Re: [Gimp-developer] More on tagging

2010-03-11 Thread Aurimas Juška
Hi, On Wed, Mar 10, 2010 at 10:36 PM, Rob Antonishen rob.antonis...@gmail.com wrote: I found this old thread: http://lists.freedesktop.org/archives/create/2009-February/001578.html That talks about tagging.  I've also looked at the source, and am not able to locate how the checksum is

Re: [Gimp-developer] Another idea for GSoC: Plugin mixer

2010-04-16 Thread Aurimas Juška
Hi, On Fri, Apr 16, 2010 at 10:34 PM, Avgoustinos Kadis avgousti...@gmail.com wrote: Plugin-Mixer: A window that allows you to select a few plugins, put them in order you want them to be applied, modify their parameters and apply them on the current image. The window should allow the user to

Re: [Gimp-developer] GIMP won't quit

2011-02-26 Thread Aurimas Juška
Hi, On Sun, Feb 27, 2011 at 12:15 AM, Roger Penn roger.p...@gmail.com wrote: I'm using the GIMP to create custom graphics on the fly for a CMS by calling the script from the web page through ASP.NET. For what you want to do, Script-fu server should be the best option. See

Re: [Gimp-developer] GIMP Developer Meeting #3 - March 28, 2011

2011-03-27 Thread Aurimas Juška
Hi, On Sun, Mar 27, 2011 at 3:12 PM, Michael Natterer mi...@gimp.org wrote: So when you write code, how much time do you spend writing the boilerplate? 10%? I would say it's much much less, because writing the code is a small fraction of the time actually spent on the code, the rest is