Image Magick

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ashishphp

Image Magick

Post 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
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Image Magick

Post 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.
ashishphp

Re: Image Magick

Post 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.
Post Reply