Hello, all
I desire to set up, in a virtual machine, a Linux environment for the development of ImageMagick plugins. Being direly limited on resources, I need as lightweight a distribution as possibly can run ImageMagick. How can I find out, for example, whether it will work on Damn Small Linux or Not Damn Small Linux? I am asking this in order to save trying various Linux distributions one by one.
EDIT: Since it works on Windows XP SP3, can you please point me to instruction about the setting up of a development environment on that OS?
Miminal requirements for a Linux distribution
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Miminal requirements for a Linux distribution
I know nothing about Linux requirements, beyond the (fairly) obvious: you need a C compiler (Gnu C is fine), and libraries for whatever image formats you need: JPG, PNG etc.
For Windows 8.1, I use Cygwin tools. If Cygwin is available on Windows XP, that's what I would suggest.
For Windows 8.1, I use Cygwin tools. If Cygwin is available on Windows XP, that's what I would suggest.
snibgo's IM pages: im.snibgo.com
Re: Miminal requirements for a Linux distribution
Thank you, I will see what I can do. Is it possible to write in interactive plugin for IMDisplay?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Miminal requirements for a Linux distribution
I've never tried. I have written loads of plugins for ImageMagick (see Process modules ) but these are driven from the command line, not interactive.Ant_222 wrote:Is it possible to write in interactive plugin for IMDisplay?
If your primary interest is interactivity, Gimp may be a more promising route.
snibgo's IM pages: im.snibgo.com
Re: Miminal requirements for a Linux distribution
I have looked at your page already, and found it interesting.snibgo wrote: ↑2018-02-13T14:10:11-07:00I've never tried. I have written loads of plugins for ImageMagick (see Process modules ) but these are driven from the command line, not interactive.Ant_222 wrote:Is it possible to write in interactive plugin for IMDisplay?
No, it is not primary, but I want to let the user select two points in an image represenging the highst and lowest tones with useful information, and then pass these samples to the plugin. Another option is to estimate them automatically. But accepting them as command-line parameters seems rather cumbersome.If your primary interest is interactivity, Gimp may be a more promising route.
The Gimp API is much more difficult in both use and setup. I failed to install it on Windows XP.