Re: [Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-31 Thread David Hodson
Michael Terry wrote: If I could access the image manipulation functions through a plug-in that remained resident, that would work, but a plug-in is unloaded once its method (whether query or run) is finished (if I understand correctly). I've done a couple of things like this. The simpler is

Re: [Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-30 Thread Simon Budig
Michael Andrew Terry ([EMAIL PROTECTED]) wrote: I'm trying to understand how to control the GIMP through plain old C code. I have tried doing this with a module, but have been unsuccessful. The module loads successfully, but segfaults when I attempt to create an image and add a layer. What

Re: [Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-30 Thread Simon Budig
Michael Terry ([EMAIL PROTECTED]) wrote: I am actually trying to control the GIMP through Java, which is my interest in creating a module. But if what you say is true -- you cannot add arbitrary modules to the GIMP at this time -- then I'll hard-wire some code into the app for now. But if I

Re: [Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-30 Thread Michael Terry
Hi again - If I could access the image manipulation functions through a plug-in that remained resident, that would work, but a plug-in is unloaded once its method (whether query or run) is finished (if I understand correctly). Essentially, I want to use the GIMP as an image manipulation engine

Re: [Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-30 Thread Sven Neumann
Hi, Michael Terry [EMAIL PROTECTED] writes: If I could access the image manipulation functions through a plug-in that remained resident, that would work, but a plug-in is unloaded once its method (whether query or run) is finished (if I understand correctly). you could do it just like

[Gimp-developer] Module or plug-in for embedded control of GIMP?

2001-12-29 Thread Michael Andrew Terry
Hi all - I'm trying to understand how to control the GIMP through plain old C code. I have tried doing this with a module, but have been unsuccessful. The module loads successfully, but segfaults when I attempt to create an image and add a layer. What is the proper way to take control of the