in reply to Reflections on graphic screwing!
can be changed to the followingopen O, '>:raw', $fname or die $!; print O $im->png; close O; system $fname;
That will print it to a conveniently named file instead of trying to display it.open(GD, ">$0.png") or die; binmode GD; print GD $im->png; close GD;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Reflections on graphic screwing!
by BrowserUk (Patriarch) on Apr 02, 2017 at 14:32 UTC |