| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 6 months |
| seen | Jan 15 at 12:31 | |
| stats | profile views | 2 |
|
Dec 13 |
awarded | Commentator |
|
Dec 13 |
comment |
how to increase image resolution in imagemagick in php yes i have tried different files, also tried to increase, decrease the resolution with setResolution() , imageCompression is--> setImageCompression(Imagick::COMPRESSION_LZW), and increased and decreased setImageCompressionQuality(0). In .png created by imagemagick, photos look ok but if i convert a text pdf to .png, the text in .png looks blurred. Also i have tried functions from [php.net/manual/en/class.imagick.php] @cegfault |
|
Dec 11 |
awarded | Tumbleweed |
|
Dec 4 |
asked | not receiving push notifications on iphone through php code |
|
Dec 1 |
comment |
how to increase image resolution in imagemagick in php yes i tried this, increased its value upto 1024,768 but nothing changed |
|
Dec 1 |
comment |
how to increase image resolution in imagemagick in php i dont know about $im->setResolution but $im->adaptiveResizeImage is maintaining new created png file widht and height to 768 and 1024 px |
|
Dec 1 |
asked | how to increase image resolution in imagemagick in php |
|
Nov 23 |
accepted | apns not connecting in php |
|
Nov 23 |
comment |
apns not connecting in php firstly it didnt workred, then i removed ssl:// from ssl://gateway.sandbox.push.apple.com:2195, then it worked. thanx saeros |
|
Nov 22 |
comment |
apns not connecting in php thanx, i checked it, it showed as follows:- SSL --> supported and OpenSSL support --> disabled (install ext/openssl) what should i do ? |
|
Nov 22 |
revised |
apns not connecting in php edited tags |
|
Nov 22 |
awarded | Editor |
|
Nov 22 |
revised |
apns not connecting in php added 2 characters in body |
|
Nov 22 |
asked | apns not connecting in php |
|
Nov 19 |
awarded | Scholar |
|
Nov 19 |
accepted | imagemagick not working with php |
|
Nov 5 |
comment |
imagemagick not working with php thanx man but i think i have figured it out, i have used following code and all pages are converted to .jpg. thanx for your help man, and if you know any code to count pages of multi-page pdf then plz let me know. thanx. $pages=4;
for($i=0;$i<=$pages;$i++)
{
$im = new imagick( 'C:\wamp\www\test\testing.pdf['.$i.']' );
$im->setImageColorspace(255);
$im->setResolution(300, 300);
$im->setCompressionQuality(95);
$im->setImageFormat('jpeg');
$im->writeImage('thumbes'.$i.'.jpg');
$im->clear();
$im->destroy();
} |
|
Nov 5 |
comment |
imagemagick not working with php when i use [0] only first page of pdf is converted, but i need all of them. the pdf file i am using have 5 pages. |
|
Nov 5 |
comment |
imagemagick not working with php its giving following error ImagickException: Postscript delegate failed C:\wamp\www\test\testing.pdf: No such file or directory @ error/pdf.c/ReadPDFImage/679 in C:\wamp\www\test\test.php on line 10 .......
i am using followng code ..............................................................
$pages=5;
$im = new imagick( 'C:\wamp\www\test\testing.pdf['.$pages.']' );
$im->setImageColorspace(255);
$im->setResolution(300, 300);
$im->setCompressionQuality(95);
$im->setImageFormat('jpeg');
$im->writeImage('thumbes.png');
$im->clear();
$im->destroy(); |
|
Nov 5 |
comment |
imagemagick not working with php oh dude thanx a lot, you are my saviour. but still there's a problem converting more then one page. |