i was successfull to convert a full pdf file into different png files according to pages in pdf. But now the problem is that resolution of image is not as good as it is in pdf file, its little blurry. can anyone help me resolving this problem ?
i am using following code:-
if ($_FILES["file"]["error"] > 0)
{
echo $msg = $_FILES["file"]["error"] . "<br />";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],"images/" . $_FILES["file"]["name"]);
}
ini_set('max_execution_time', 100);
$file1=$_FILES["file"]["name"];
$file='images/' . $_FILES["file"]["name"];
$pages=exec("identify -format %n $file");
$explode=explode('.',$file);
$explode=$explode[0];
for($i=0;$i<$pages;$i++)
{
$im = new imagick( 'C:\wamp\www\test\upload\images\\'.$file1.'['.$i.']' );
//$im->setImageColorspace(0);
#for thumbnail
//$im->cropThumbnailImage(90,90);
$im->setResolution(200,200);
$im->setImageCompression(Imagick::COMPRESSION_LZW);
$im->setImageCompressionQuality(0);
$im->setImageFormat('png');
$im->adaptiveResizeImage(768,1024);
$im->writeImage($explode.$i.'.png');
//echo $explode.$i.'.png';
$im->clear();
$im->destroy();
}
unlink($file);
$im->setResolutionand$im->adaptiveResizeImage? How did that change the image? – cegfault Dec 1 '12 at 5:32setResolutionwill set the resolution of the image – cegfault Dec 1 '12 at 5:42