Search found 2 matches

by J.D.
2013-01-29T09:08:03-07:00
Forum: Users
Topic: Initilizing an image from a string intead of a file
Replies: 3
Views: 4853

Re: Initilizing an image from a string intead of a file

Thank you for the reply. It looks like my image is too large for that, so I'll just have to save it as a file and then have the script delete the file once the conversion is complete.
by J.D.
2013-01-28T15:37:24-07:00
Forum: Users
Topic: Initilizing an image from a string intead of a file
Replies: 3
Views: 4853

Initilizing an image from a string intead of a file

I am running ImageMagick from the command line, via PHP's exec() function. I need to convert an SVG image to PNG. Something like this: exec('-convert image.svg image.png'); I need to get the contents of image.svg, and manipulate them before converting the file to PNG. Do I have to save the altered ...