in reply to Re^2: How to display the response from a get request to a browser?
in thread How to display the response from a get request to a browser?

image-magick can be found here if your machine doesn't have it installed already. Its in most linux distros, at least.

basically, do

system("display $image_filename") and die "Error running display";
But you can easily change "display" by any image displaying program that accepts a filename as an argument.
  • Comment on Re^3: How to display the response from a get request to a browser?
  • Download Code

Replies are listed 'Best First'.
Re^4: How to display the response from a get request to a browser?
by unb (Initiate) on Oct 27, 2004 at 17:57 UTC
    Hi
    thanks for the code, I tried using:
     system("display $image_filename") and die "Error running display";
    after storing the set of characters in a file represented by $image_file. but nothing happened I wounder if I need to import the image-magick library with (use), or add something else.
    thank you,
    unb