Page 1 of 1

Image Magick

Posted: 2008-09-09T01:53:20-07:00
by ashishphp
My service provoder says that the following services are available for me
Image Magick
Ghost Script

How can i check them ?
please tell me soon!!!!!!!!!

with regards
ASHISH

Re: Image Magick

Posted: 2008-09-09T02:53:42-07:00
by Bonzo

Code: Select all

<?php
echo "<pre>";
system("convert -version");  
echo "</pre>";
?> 
<?php
echo "<pre>";
system("type convert"); 
echo "</pre>";
?> 
Running these 2 php codes will give you the version and path for ImageMagick. I do not know how to do the same for ghostscript.

Re: Image Magick

Posted: 2008-10-14T22:48:01-07:00
by ashishphp
thanks a lot
now can you please tell me how to increase my page conversion limits as i am able to convert a 35 pages pdf to jpeg only
i want that it could be at least of 100 pages.

with regards
ashishphp@gmail.com

Bonzo wrote:

Code: Select all

<?php
echo "<pre>";
system("convert -version");  
echo "</pre>";
?> 
<?php
echo "<pre>";
system("type convert"); 
echo "</pre>";
?> 
Running these 2 php codes will give you the version and path for ImageMagick. I do not know how to do the same for ghostscript.