Tagged Questions

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 ...
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 ...
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
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
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 > ...
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
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
238 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
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
392 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
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
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.
1
vote
2answers
163 views

Image Magick, installed, loaded, error opening files php

Using php 5.3 on windows 2008 in IIS 7. I've installed NTS image magick and add php_imagick.dll to the php extensions directory and included it in php.ini . Restarted the machine and imagick shows up ...
1
vote
1answer
261 views

IMagick function to cut an image into roughly equally-sized tiles

I'm trying to use the IMagick PHP wrapper to assist in chopping a specified image into a set of tiles (the number of which is variable). In the ImageMagick documentation there is reference to the ...
1
vote
1answer
246 views

PHP Imagick: copy a specific color from an image to a new image

I have an image and I want to copy/extract a specific color (i.e., #00ffff) from the image, ideally specifying a fuzz factor, to a new image. I know about transparentPaintImage(), but it's unavailable ...
1
vote
2answers
447 views

Using Remote Image in ImageMagick

I'm trying to do a simple thumbnail generation from an image that isn't located on my server using the iMagick wrapper for ImageMagick. For some reason, the following code will not display anything ...
1
vote
2answers
635 views

How to convert .PDF file to .PNG using Imagemagick PHP api

i want to convert .pdf file to .png file using Imagemagick php API. we can do this from shell using this: $convert sample.pdf sample_image.png we can issue this command using php exec() function ...
1
vote
1answer
35 views

creating a box with an image

I'd like to take an image and turn the corners over to make a box (like a canvas painting) i have gd library, imagemagick installed on the server and imagick php extension installed. is it possible? ...
1
vote
1answer
324 views

Imagick doesn't render svg opacity properly

First image was properly exported by Inscape, second by following code. I need same output from inkscape and imagick. PHP code: <?php $im = new Imagick(); $im->setResolution(400,400); ...
1
vote
1answer
826 views

Change background from white to transparent in imagemagick

I'm importing SVGs with imagick using this syntax $graphic = new Imagick($this->img); The problem is this image is imported with a white background. How can I change the white background to a ...
1
vote
2answers
382 views

Imagick (Imagemagick on PHP): serve a file without saving to disk first?

I'm trying to use Imagemagick (actually PHP's Imagick) to create and output (serve) an image without saving it to disk first. Currently I'm having to save the file and then use verot upload class to ...
1
vote
2answers
874 views

PHP Imagick “wand contains no images”

When attempting to do a simple conversion from PHP, I receive this error : exception 'ImagickException' with message 'wand contains no images `MagickWand-2' @ ...
1
vote
1answer
460 views

Outputing resized animated gif to browser using imagick

I intend to resize an animated gif and output it to the browser on-the-fly. My problem is that when I save the resized image, it is of good quality, but if I echo it to the browser, it is of poor ...
1
vote
1answer
910 views

Limit number of threads in IMagick (PHP)

When using ImageMagick, I can set certain limits for memory usage and maximum number of threads. There are 3 ways to do this, as far as I know: use a command line options like "convert -limit memory ...
0
votes
2answers
32 views

Why does my ImageMagick / Imagick setup always crash when I read from an SVG?

I'm running ImageMagick 6.7.4-0 and Imagick 3.0.1. I have all of the delegates necessary for SVG (output of convert -list configure | grep DELEGATES shows bzlib djvu fontconfig freetype gvc jpeg jng ...
0
votes
0answers
24 views

Imagick - Converting a PNG to JPG, transparent background turns black

I've taken a look at the other questions and none of the answers seemed to really solve this problem. I'm using Imagick version 2.3, and here's what I have: $this->_object = new Imagick(); ...
0
votes
3answers
41 views

ImageMagick creating thumbnail

here is code which creats animated text using imagemagick.. $label=$_POST["label"]; $cmd = " -background transparent -font $font -pointsize $size label:$label -stroke black -strokewidth 2 ". " \( ...
0
votes
0answers
49 views

ImageMagick not converting SVG correctly, other issues

Ok, to start off, ImageMagick with Imagick is not working right. I just moved my site from a different server, and installed ImageMagick and Imagick on the new one. The versions are the same for both ...
0
votes
1answer
53 views

How to use imagick's writeImage() function?

This works if I keep the script in the same directory as the image being manipulated. And the resultant image "foo.jpg" is also generated in the same location. <?php $im = new ...
0
votes
2answers
165 views

Installing imagick on a DV [mediatemple] - impossible?

I have it installed on my DV # convert -version Version: ImageMagick 6.7.4-0 2011-12-21 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2011 ImageMagick Studio LLC Features: OpenMP ...
0
votes
1answer
47 views

How do I compress a .png with Imagick in PHP?

I'm converting .jpg and .gif images to .png using PHP's Imagick library. I've successfully converted these images to .png using this: $image = new Imagick( $file_path ); $image->setImageFormat( ...
0
votes
1answer
23 views

Outputting an image from the same PHP file which also receives & sends JSON

Ok, I'm hoping I can explain my situation rather than pasting lines and lines of code. Currently, JSON sends positional info to my PHP file which in turn uses this data to generate an image, saves it ...
0
votes
1answer
173 views

From PostgreSQL bytea, we're trying to read - and write back - an image file using Imagick

From PostgreSQL, am trying to read an image file into an Imagick object - and simply re-write the same file back into another bytea field. Objective is to fully understand the string handling and ...
0
votes
2answers
42 views

How to reference an Imagick object in a PHP UPDATE query?

What is wrong with this query? Am trying to write an ImageMagick object back into a database (a PostgreSQL bytea field). This is PHP code - using the Imagick functions. $query = "UPDATE table SET ...
0
votes
3answers
64 views

In PHP (plphp), how can we manage a file stored in a bytea with Imagick?

We are storing entire image files in PostgreSQL, using bytea columns. In PHP, am trying to open an image file from the bytea field (these stored as hex), then want to manipulate/convert the image ...
0
votes
1answer
60 views

Image filesize after resizing with Imagick and Gmagick

While resizing an image, i have noticed that Imagick and Gmagick produce images with different filesize on HDD with the same options: $image = new Imagick("c.jpg"); ...
0
votes
1answer
122 views

Installing ImageMagick/imagick on shared host

Ok, I'm trying to install something for my website, which requires ImageMagick and imagick. It's driving me nuts because I'm a noob and not entirely sure what I'm doing. When I try and run configure ...
0
votes
2answers
313 views

Count pages in PDF file using Imagemagick - PHP

I am using PHP 5 with Apache in my Windows Vista PC. I have Imagemagick already installed and configured. I want to count the total number of pages in a pdf file using imagick. I fount one solution ...
0
votes
1answer
211 views

How do I fix this error with ImageMagick?

I'm using ImageMagick to convert a RAW file (*.nef extension) into a JPEG image. I'm actually doing this from within PHP, but not using the IMagick extension (I spent too much time banging my head ...
0
votes
0answers
75 views

Smoothing Bitmap Radar Image Edges With Imagick?

I'm a newbie to Imagick. I'm trying to smooth the edges of this Radar image (http://www.infinitymedialabs.com/weather/image.php). The image will be overlaid on a google map. Is there a way to change ...
0
votes
2answers
111 views

Imagick: Failed to query the font metrics

I'm working on (what should be) a simple script that will add text to an image. After going over my script several times looking for any mistakes I finally decided to try running a sample from ...
0
votes
0answers
64 views

Display custom error message in pdf thumbnail creation - PHP - Imagick

I am running Apache with PHP5 in my windows PC. I have successfully configured Ghostscript and Image magic. I have a script to generate pdf thumbnail as follows; <?php $file = 'test.pdf'; $page = ...
0
votes
2answers
97 views

Imagick roundCorners makes image half-transparant

I'm in the process of writing an image script for a website I'm making, and for one of the image modes I need to both crop the image and make round corners for it. This is the code I'm using now: ...
0
votes
0answers
44 views

PHP Pecl Manage option not available on cPanel

I have only cPanel access to the server. I want to install Imagick and ImageMagick but I guess PECL is not configured. The instructions here show WHM -> Software -> Module Installers ->PHP ...

1 2