in reply to reading in raw data into perl's ImageMagick
Open the scalar containing the data as a ramfile and then supply the glob to Read:
open RAM, '<:raw', \$data; $image->Read( file => \*RAM ); close RAM;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: reading in raw data into perl's ImageMagick
by bet_shemesh_debugger (Novice) on Aug 19, 2010 at 11:31 UTC |