Problem with converting image from remote url
Posted: 2012-10-01T23:42:58-07:00
Hi !
I'm trying to convert SVG file to JPG.
the SVG includes two images one comes from a remote URL and the other photo is under my server - when the final result should be one photo(JPG) combined with the two photos in the SVG.
When i'm running the command -
exec("convert -density 100 http://remoteurl.com/blabla.svg -compress none -depth 16 blabla.jpg);
The output is that i see only the photo the one from my local server.
but if i run this command(when both of the files under the my server) -
exec("convert -density 100 blabla.svg -compress none -depth 16 blabla.jpg);
It works great !
What might be the problem ?
I'm trying to convert SVG file to JPG.
the SVG includes two images one comes from a remote URL and the other photo is under my server - when the final result should be one photo(JPG) combined with the two photos in the SVG.
When i'm running the command -
exec("convert -density 100 http://remoteurl.com/blabla.svg -compress none -depth 16 blabla.jpg);
The output is that i see only the photo the one from my local server.
but if i run this command(when both of the files under the my server) -
exec("convert -density 100 blabla.svg -compress none -depth 16 blabla.jpg);
It works great !
What might be the problem ?