Search found 5 matches

by Hasniou
2018-01-03T02:35:37-07:00
Forum: Users
Topic: Convert SVG to JPG in Windows produces blank JPG
Replies: 37
Views: 40293

Re: Convert SVG to JPG in Windows produces blank JPG

Inkscape and imagemagick are installed on a remote server. I do not know how to run inscape in the console (my knowledge in linux and Inkscape are limited). Can you save it as a PNG? : No, image is blank too width and height : 7050x7050 pixels I remind you that this problem occurs only when the size...
by Hasniou
2018-01-03T01:22:43-07:00
Forum: Users
Topic: Convert SVG to JPG in Windows produces blank JPG
Replies: 37
Views: 40293

Re: Convert SVG to JPG in Windows produces blank JPG

Hello,
1- I have 11332 MB free memory (not 432).
2-

Code: Select all

convert -verbose -density 45 custom_product_60_1.svg custom_product_60_1.jpg
Give the same result (Image blank)
by Hasniou
2018-01-02T13:53:26-07:00
Forum: Users
Topic: Convert SVG to JPG in Windows produces blank JPG
Replies: 37
Views: 40293

Re: Convert SVG to JPG in Windows produces blank JPG

memory_limit = 2560M total | used | free | shared | buff/cache | available Mem: 15937 | 432 | 11332 | 660 | 4172 | 14629 SVG File : <?xml version="1.0"?> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="none&qu...
by Hasniou
2018-01-02T09:25:43-07:00
Forum: Users
Topic: Convert SVG to JPG in Windows produces blank JPG
Replies: 37
Views: 40293

Re: Convert SVG to JPG in Windows produces blank JPG

Thank you for your reply,

I have this error only when the image is too big (150cm X 150cm). unfortunately I can not reduce the size of my image because they are intended for printing (I must respect a certain resolution and dimensions)
How could I fix this error ?
by Hasniou
2018-01-02T07:59:57-07:00
Forum: Users
Topic: Convert SVG to JPG in Windows produces blank JPG
Replies: 37
Views: 40293

Re: Convert SVG to JPG in Windows produces blank JPG

Hello, I have similar problem with Imagick : I'm trying to convert svg to jpeg as follows (With Imagick): $ svg = file_get_contents('mysvg.svg'), $image = new Imagick (); $image-> readImageBlob ($ svg); $image-> setImageFormat ("jpeg"); header ("Content-Type: image / jpg"); echo ...