Re: [MacPerl] GD.pm How to call images created on the fly.
Try something like this: open (myImage, "> $image_path/$myImage_name.png"); binmode myImage; print myImage $png_data; close myImage; print ""; -- Bill Stephenson www.SecureShopper.com 1-417-546-5593
[MacPerl] GD.pm How to call images created on the fly.
Hello all, I'm perplexed. I've been writing programs to generate images using MacPerl. Now, I want to install them and call them using a browser. But I'm having problems, and I can't seem to find their solution. To isolate problems, I installed Lincoln Stein's circle example on my server. I ch