Tagged Questions
11
votes
3answers
651 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
286 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
270 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
1answer
30 views
Imagick. Changing a color to be transparent
I would like to change the black border of this image :
http://dev.loungeup.net/im/
to transparent with Imagick in PHP.
The result image should have the gray border visible, the image inside the gray ...
2
votes
2answers
297 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
722 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
294 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
657 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
903 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
77 views
Imagick - Converting a PNG to JPG, transparent background turns black
And I want my background to end up white instead. 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 ...
1
vote
1answer
67 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( ...
1
vote
3answers
73 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
72 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
51 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
62 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
125 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
291 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
167 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
448 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
314 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
202 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
145 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
173 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
275 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
262 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
502 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
659 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
36 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
345 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
859 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
405 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
1answer
483 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
949 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
0answers
25 views
How to install ImageMagick on Windows 7 (2)
Hopefully, despite similar question titles, this isn't a duplicate issue.
I've installed ImageMagick-6.7.5-6-Q16-windows-dll.exe.
I have php_imagick_dyn-Q16.dll renamed to php_imagick.dll in PHP's ...
0
votes
1answer
35 views
What is the best PHP API to ImageMagick?
I use Imagick extension, but it doesn't give all common options form ImageMagick. Some methods doesn't work or doesn't work properly (like getImageWidth, getFormat, setGravity...).
So what with ...
0
votes
2answers
68 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
3answers
52 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
70 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
66 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
243 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
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
216 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
47 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
75 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
80 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
147 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
367 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
254 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
88 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
124 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 ...