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
Image Magick
Re: Image Magick
Code: Select all
<?php
echo "<pre>";
system("convert -version");
echo "</pre>";
?>
<?php
echo "<pre>";
system("type convert");
echo "</pre>";
?>
Re: Image Magick
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
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: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.Code: Select all
<?php echo "<pre>"; system("convert -version"); echo "</pre>"; ?> <?php echo "<pre>"; system("type convert"); echo "</pre>"; ?>