Search found 1 match
- 2013-08-28T01:53:08-07:00
- Forum: PerlMagick
- Topic: How to create an image from scratch?
- Replies: 6
- Views: 126108
Re: How to create an image from scratch?
I was beating my head against the wall with the same error message, and eventually found the answer in the docs. It seems you need to create the image by reading from something, and there's a built-in 'canvas' source for this: $image = Image::Magick->new; $image->Set(size=>'100x100'); $image ...