Tagged Questions
The imagick tag has no wiki summary.
11
votes
3answers
613 views
Issues porting PHP/GD wrapper to Imagick
I've recently discovered that Imagick can support color profiles and thus produce images of better quality compared to GD (see this question / answer for more details), so I'm trying to port my GD ...
9
votes
3answers
252 views
How to use Imagick to merge and mask images?
I know very little of image processing and even less of the terminology used, so please bear with me.
Basically, I want to merge two images together where one of them will act as a mask. That image ...
7
votes
2answers
171 views
imagick crash with PHP 5.3
I'm getting this error:
The connection to the server was reset while the page was loading.
This only occurs when I try to load an image using ImageMagick.
<?php
header('Content-type: ...
7
votes
2answers
4k views
Using a transparent PNG as a clip mask
Is it possible to take this image:
And apply this mask:
And turn it into this:
Using either GD or Imagick? I know it's possible to mask an image using shapes but I'm not sure how to go on ...
6
votes
4answers
227 views
User name as Watermark
Ok, I searched the internet and stackoverflow but I just can't seem to find an answer for my problem.
I need to watermark images uploaded by users dynamically, but I don't want just text applied on ...
5
votes
4answers
196 views
PDF to JPG conversion using PHP
I'm trying to convert PDF to IMG (JPG) with help PHP.
I'm using imagick extension.
this is my code
$fp_pdf = fopen($pdf, 'rb');
$img = new imagick(); // [0] can be used to set page number
...
4
votes
2answers
660 views
How to stop PHP iMagick auto-rotating images based on EXIF 'orientation' data
Currently working with PHP and iMagick to develop a poster printing Web application.
This is the example image I am using to test upload/image editing features of the application:
The image ...
4
votes
2answers
952 views
Get/set DPI with PHP GD/Imagick?
I'm building a Web application that will handle image files that will ultimately be printed, large format.
As part of this, I need to get (i.e. read) and set (i.e. change) the DPI of an image file.
...
3
votes
1answer
544 views
Transparent to white in Imagick for PHP
I have a png image with a transparent background and I want to convert it to a jpg image with a white background.
The code is basically this:
$image = new Imagick('transparent.png');
...
3
votes
2answers
150 views
How to isolate only one colour on image with PHP?
Is it possible to leave (isolate) only one colour in image?
Currently I'm interested in green:005d00
3
votes
4answers
2k views
Creating two pdf pages with Imagick
Currently i can create PDF files from images in Imagick with this function
$im->setImageFormat("pdf");
$im->writeImage("file.pdf");
And it's possible to fetch multiple pages with imagick like ...
2
votes
2answers
88 views
center crop with gravity using Imagick and PHP
I'm looking to center crop and image using Imagick PHP apis (not command line version of Imagick).
Essentially I want to do what is possible via command line, using API. Here is an example via ...
2
votes
1answer
95 views
Image resize without Imagick and losing transparency
Is there a way, to resize images with formats: GIF, PNG, JP(E)G, without installing additional classes like Imagick?
The most important thing is that images can't lose their transparency (PNG, GIF) ...
2
votes
2answers
269 views
ImageMagick: how to draw two strings with different size over image?
I want to draw a rectangle with two strings in it. I want the first string to be 15pt size (its a number), second to be 10pt size (the label). It's easy to draw single string with one size to the ...
2
votes
1answer
140 views
Using Imagick in Symfony2?
I am trying to use Imagick with Symfony2, but every time I try and use it, it gives me the following error:
Fatal error: Class 'Acme\TestBundle\Services\Imagick' not found...
I am using Imagick in ...
2
votes
2answers
120 views
PHP imagick detect transparency
I want to be able to detect whether an image is transparent or not using the Imagick PHP extension.
So far, the only luck I've been having is to run the exec() / some other command, and use the ...
2
votes
3answers
196 views
thumbnail generation / image resize
What PHP library would you recommend for thumbnails generation?
I need it to work with GD (not only Imagick), be able to stretch images or keep aspect ratio when only one dimension given, and - most ...
2
votes
1answer
689 views
Set imagemagick png image background color
I have a php script to create png thumbnail of pdf file as follows;
<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setImageFormat("png");
...
2
votes
2answers
163 views
PDF dimensions vs actual content dimension
I'm currently using php's imagick to convert some PDF to images - This works well for the small detail that the images are 'chopped' during output.
This is due to the difference in information ...
2
votes
1answer
291 views
Reducing GIF filesize using ImageMagick and PHP
I am writing some code using PHP and Imagick which gathers multiple images into one animated GIF using the following code:
<?php
error_reporting(E_ALL);
ini_set('display_errors',1);
...
2
votes
2answers
580 views
Imagick::resizeImage vs Imagick::scaleImage?
Could you explain which are the differences between them?
I need to resize an image if its size is > $myLimit
Example (pseudocode):
$myLimit = 1MB
user uplaod an image of 1000x1000 of 2MB
2MB > ...
2
votes
2answers
51 views
get lowermost left corner of an iamge and write text there
I'm trying to get the lowermost left (x,y) coordinates of an image.
I'm doing that to be able to write a text in different-sized picture, in the left lowermost corner. Below is the code. Could you ...
2
votes
2answers
200 views
Resize the images after uploading!
html form
<form action="upload.php" method="POST" enctype="multipart/form-data">
<input type="file" name="file" /><p /><input type="submit" value="Uplaod" />
</form>
...
2
votes
1answer
483 views
Imagick PHP Extension — Montage help?
I've been having some trouble generating an image with the Imagick PHP extension. Everything works fine, except my following "montage" has a white background and therefore I cannot overlay it on top ...
2
votes
3answers
1k views
Imagick Installation Errors - Class Undefined
Okay, Here's a breakdown of what's up:
<? $foo = new Imagick(); ?> works without error when ran from the command-line (e.g., sudo php myscript.php
However, when run via the web browswer I get ...
1
vote
1answer
44 views
How can a transform PDF to PNG using ImageMagick (CGI/Perl)
I've been searching about this . But i have found only a php example .
I'll appreciate Any idea , link or book you can suggest me.
1
vote
2answers
40 views
Imagick and GridFS
I have images stored in GridFS for MongoDB. When I pull the image out, I want to resize it and then store it back into the database. I tried this:
$image = $grid_collection ->findOne(array('_id' ...
1
vote
1answer
67 views
Create a QR-Code Image with the php imagick library
Hi,
We are using imagick for different image manipulations and have a request to add
QR watermarks in the end.
Right now I could only find PHP QR Code library which uses the GD2 library:
...
1
vote
1answer
35 views
Generating Lots of Thumbnails Using Imagick
When I'm generating thumbnails using Imagick, I load the image once, using:
$im = new Imagick( $filePath );
Then I pass this $im object around to create different sizes using
...
1
vote
0answers
72 views
How to optimize video to animated GIF conversion using PHP + shell commands
I have a web application that converts any video into an animated GIF. The app runs in PHP and the following steps are executed through php's shell_exec:
Scale video to smaller dimensions, if they ...
1
vote
2answers
42 views
Imagick colorizeImage Hex darker
I use PHP and Imagick to change the color of a transparent PNG. The image in the PNG is a simple shape with a transparent background.
I use the colorizeImage function to change the color.
$img = new ...
1
vote
1answer
112 views
Install imagick on mac
I need to install imagick extension for php. I have already installed Image Magick. Then I did "sudo pecl install imagick". After this I had such output in console:
Installing ...
1
vote
3answers
67 views
Memory leakage in php unrelated to GC?
I have a php script which takes an image, processes it and then writes the new image to file. I'm using imagick/imagemagick with php 5.3.8 with fastcgi. After reading around I thought maybe the ...
1
vote
1answer
58 views
How do I change the color of a caption drawn with PHP Imagick's newPseudoImage function?
I am creating an image with a caption using the Imagick::newPseudoImage function as follows:
$txt = new Imagick();
$txt->setFont("templates/fonts/Gloria.ttf");
...
1
vote
1answer
44 views
Large thumnail size for tiny image created with Imagick->resize()
Ok, I have a simple PHP script, that generates a thumbnail for a large picture using Imagick PHP extension.
The simplified script is:
$this->image = new Imagick ();
...
1
vote
2answers
164 views
PHP Imagick how to best fit text annotation
I'm adding annotation text to a newPseudoImage which works fine but I'd like to make the text scale to fit the image size.
Any ideas how I might do this?
$im = new Imagick();
$draw = new ...
1
vote
1answer
59 views
Imagick and html tags
I'm trying to make a thumbnail image on the go with imagick.
Everything works fine when i use this code:
<?php
header('Content-type: image/jpeg');
$source = "image.jpg";
$image = new Imagick();
...
1
vote
2answers
98 views
Recommendation for compress jpg files with image magick
Hello i want to compress a JPG image file with Image Magick but cant get too much difference in size, by default the output size is bigger than the input, dont know why, but after adding some +profile ...
1
vote
1answer
460 views
Compiling PHP Imagick Extension for XAMPP 1.7.3 on OS X Lion
I'm having some trouble getting the PHP Imagick extension compiled and running with XAMPP 1.7.3 on OS X Lion.
I get the following error in my PHP error log when launching Apache (and the extension ...
1
vote
1answer
237 views
Imagick (Imagemagick) Defect in Debian Sqeeze (6)
I have huge troubles running my cakephp application now.
after upgrading vom lenny to squeeze (even tried a complete reinstall of sqeeze) imagick is so incredible slow that it simply shuts down my ...
1
vote
4answers
446 views
php imagick convert PNG to jpg
$image = "[...]"; //binary string containing PNG image
$file = fopen('image.tmp', 'wb');
fputs($file, $image);
fclose($file);
$image = new Imagick('PNG:image.tmp');
$image->thumbnailImage($width, ...
1
vote
1answer
154 views
No formats supported in PHP/ImageMagik/imagick
I've installed pecl-imagick from FreeBSD ports and it can't do a thing with images.
phpinfo() reports this:
ImageMagick number of supported formats: 0
ImageMagick supported formats: no value
...
1
vote
1answer
111 views
How to extract alpha and other channels from a PNG file with PHP Gmagick?
I am trying to port 2 graphics magick commands to the Gmagick php library (mind: not Imagick).
The commands are:
gm convert -matte -flatten image.png output.png
gm convert -channel Matte -negate ...
1
vote
2answers
90 views
PHP imagick not working for a certain photo
There is a large .jpeg photo that one of the users on my site is unable to upload.
I tried to share the photo here, but it took 5+ minutes to get uploaded and still didn't upload so I had to cancel ...
1
vote
1answer
390 views
php Imagemagick jpg black background
I have a php script to create jpg thumbnail of pdf as follows;
<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setImageFormat("jpg");
$im->resizeImage(200,200,1,0);
...
1
vote
3answers
252 views
PHP-Imagemagick image display
I have php code which create pdf thumbnail as follows;
<?php
$file ="test.pdf";
$im = new imagick(realpath($file).'[0]');
$im->setImageFormat("png");
$im->resizeImage(200,200,1,0);
...
1
vote
3answers
82 views
problem with host- imagick
I have a problem with this module.
In my local server i open my php.ini and i have the module imagick in the list.
Now i changed the site to a webserver, but in php.ini, the module is not showed.
I ...
1
vote
1answer
176 views
Imagick: setting the gravity on a Imagick item
I'm having some real difficulties setting the gravity of an image in Imagick.
I've managed to set the gravity of an ImaickDraw object but I've not been successful setting it in a Imagick object.
...
1
vote
1answer
378 views
How can I draw wrapped text using Imagick in PHP?
The Imagick library in PHP allows you to draw text on top of an image. How to I tell Imagick to wrap the text based upon some bounded text box?
1
vote
1answer
127 views
how do i convert text into an image using php's imagick?
I have a text files which I'm trying to convert into images. I know how to do this with GD but I'm having trouble finding suitable functions with imagick/imagemagick.