Need Help! Having issue in converting EPS to JPG
Posted: 2009-05-20T06:53:37-07:00
Hello Friends,
Currently I am working on a project where I need to convert few image files into different format. I am using ImageMagick for same.
I need to convert 3 formats, PSD, AI and EPS to JPG
PSD to JPG
EPS to JPG
AI to JPG
PSD to JPG and AI to JPG works fine, but EPS to JPG does not work. No error on the screen as well.
I am using below code
<?php
exec("/usr/bin/convert psd1.psd[0] -flatten psd1_jpg.jpg");
exec("/usr/bin/convert grindstop.eps eps111_jpg.png");
exec("/usr/bin/convert ai.ai ai1_jpg.jpg");
?>
Above code works perfect in my local server but same code does not work on server for EPS (for PSD and AI it works)
Please assist me where is the issue.
Thanks a lot!
Best Regards,
Rakesh Jain
Currently I am working on a project where I need to convert few image files into different format. I am using ImageMagick for same.
I need to convert 3 formats, PSD, AI and EPS to JPG
PSD to JPG
EPS to JPG
AI to JPG
PSD to JPG and AI to JPG works fine, but EPS to JPG does not work. No error on the screen as well.
I am using below code
<?php
exec("/usr/bin/convert psd1.psd[0] -flatten psd1_jpg.jpg");
exec("/usr/bin/convert grindstop.eps eps111_jpg.png");
exec("/usr/bin/convert ai.ai ai1_jpg.jpg");
?>
Above code works perfect in my local server but same code does not work on server for EPS (for PSD and AI it works)
Please assist me where is the issue.
Thanks a lot!
Best Regards,
Rakesh Jain