in reply to imagemagick alternative

I agree that Imager is great, but as we are listing alternatives here, I'd like to mention Tk::Photo to be a serious contestant when generating images from within a Tk script/application.

# Create an xpm image of this graph my $img = $w->Photo (-format => "Window", -data => oct ($w->id)); $img->write ("speed.xpm", -format => "xpm");

Enjoy, Have FUN! H.Merijn

Replies are listed 'Best First'.
Re^2: imagemagick alternative
by kcott (Archbishop) on Jun 02, 2023 at 08:06 UTC

    ++ Good suggestion. The images in the animation on my home node were all made using Tk::Photo.

    — Ken