Re: [Gimp-developer] Announcing Gimpscripter plugin authoring tool, beta prototype

2011-05-09 Thread Tim Chen
. Regards, Tim Chen http://ht-timchen.org On Mon, May 9, 2011 at 9:23 PM, lloyd konneker boo...@nc.rr.com wrote: Announcing a new version of the Make Shortcut plugin, now called GimpScripter. It lets you point-and-click create a plugin that calls a sequence of plugins, PDB procedures, or macros

Re: [Gimp-developer] native osx version

2011-05-03 Thread Tim Chen
On May 3, 2011, at 8:22 PM, Enrico Schröder wrote: Creating a new thread as this has nothing to do with my Summer of Code project... It would be nice, if you can document the steps to compile Gimp for MacOS in the Wiki: http://wiki.gimp.org/index.php/Users:Beginner_Developer%27s_FAQ I

Re: [Gimp-developer] nonlinear revision control system for GIMP

2011-05-03 Thread Tim Chen
On May 3, 2011, at 12:49 AM, Martin Nordholts wrote: I'm convinced (others are not) we should use the proven http://en.wikipedia.org/wiki/Command_pattern and http://en.wikipedia.org/wiki/Composite_pattern for macro recording and wrote some patches a while ago that introduced a GimpCommand

[Gimp-developer] nonlinear revision control system for GIMP

2011-05-02 Thread Tim Chen
Hi all, Recently we have published a paper on SIGGRAPH 2011 about nonlinear revision control system for images. You can find the abstract and videos at https://sites.google.com/site/httimchen/2011_imagesvn As described in the abstract, the core idea is to record users' actions and transform

Re: [Gimp-developer] AdaptableGIMP: Windows + Debian binaries available

2011-04-30 Thread Tim Chen
Very cool work! So you guys has implemented some sort of scripts for recording and replaying commands? Interestingly, I implemented a revision control system in the form of plugin for GIMP and the paper will be published on SIGGRAPH 2011. I had to modify the GIMP core (in a ugly fashion to meet

Re: [Gimp-developer] AdaptableGIMP: Windows + Debian binaries available

2011-04-30 Thread Tim Chen
is useful on its own, AdaptableGIMP will customize the toolbox with only the tools shown in the wiki page. Will you be releasing the source code to your work? Michael On 4/30/11 2:39 PM, Tim Chen wrote: Very cool work! So you guys has implemented some sort of scripts for recording

Re: [Gimp-developer] GLIB version error while compiling GIMP with MacPorts

2011-04-21 Thread Tim Chen
. thanks for your reply, -Tim On Fri, Apr 15, 2011 at 1:36 AM, Tim Chen ht.timc...@gmail.com wrote: Yes, On Apr 15, 2011, at 12:52 AM, Akkana Peck wrote: Tim Chen writes: Note that one has to install gtk2 using command below to avoid some weird dependency problems Most Linux

Re: [Gimp-developer] GLIB version error while compiling GIMP with MacPorts

2011-04-14 Thread Tim Chen
reply, -Tim On Fri, Apr 15, 2011 at 1:36 AM, Tim Chen ht.timc...@gmail.com wrote: Yes, On Apr 15, 2011, at 12:52 AM, Akkana Peck wrote: Tim Chen writes: Note that one has to install gtk2 using command below to avoid some weird dependency problems Most Linux people have to recompile gtk2

[Gimp-developer] c++ gimp plug-in

2010-08-05 Thread Tim Chen
Hi, I am developing a GIMP plug-in with C for quite some time and I just realized that there is a useful C++ library that could save me a lot of trouble. Is it possible to write GIMP plug-in in C++? If it is possible, is there any sample code or template available in GIMP plug-in repository and

Re: [Gimp-developer] Gimp Toolbar Icons

2010-01-03 Thread Tim Chen
It's in themes/Default/images/gimp-stock-pixbufs.h Regards, -Tim On Mon, Jan 4, 2010 at 2:09 PM, Thales img tha...@imgbrasil.com wrote: I looked almost everywhere and I did not find, where is located the Toolbar's Icons? And I cannot forgot to congratulate all of you guys who develop GIMP.

Re: [Gimp-developer] Is ~30 seconds for 750 × 1200 pixels slow or fast?

2009-12-28 Thread Tim Chen
I think using gimp_pixel_rgn functions could improve its performance a lot Please take a look at http://developer.gimp.org/writing-a-plug-in/2/index.html HiH, Tim On Tue, Dec 29, 2009 at 8:49 AM, Louise Hoffman louise.hoff...@gmail.comwrote: Dear developers, I am now more or less finished

[Gimp-developer] modify scale of brush with libgimp

2009-12-27 Thread Tim Chen
Hi all, A quick question, is it possible to modify the scale of the brush using some functions in libgimp from plug-in side? I know there is a gimp_brush_set_radius() function that could set the brush radius, but it is not exactly the *scale* in the tool option and could bring some problem when

Re: [Gimp-developer] Secure logging of GIMP actions

2009-12-15 Thread Tim Chen
I have asked the exactly same question month ago and Martin was kindly enough to provide some code base. Below is the archive link http://www.mail-archive.com/gimp-developer@lists.xcf.berkeley.edu/msg19123.html Since the time frame for my project is pretty tight, so I just insert the ugly

[Gimp-developer] DAG in GEGL and its role in GIMP

2009-11-22 Thread Tim Chen
in GEGL look like? Will it look like a tree with height of two (connecting all operations to the root display node) or a simple 1-D list? Ideally, how should GIMP build the graph to maximize the rendering efficiency? Thanks for your answering, Tim Chen

[Gimp-developer] operation logging

2009-11-09 Thread Tim Chen
Hi all, I am trying to build an instrumented gimp that can record user operation sequentially for further analysis, similar to the command recorder in this project http://vis.berkeley.edu/papers/tutgen/; At first, I tried digging around the code at http://www.ingimp.org; , but it seems like that