Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the trimming color in Imagick?

Tags:

php

imagick

I am trying to remove transparent areas of an image with php using imagick.

Image Magick provides the trim method: Imagick::trimImage

Remove edges that are the background color from the image. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.

How do I set the color which Imagick may trim?

The following script sets the background color to grey. However trim removes the blue background color as you can see below.

$im = new Imagick( "1.png" );
// Set background color to grey
$im->setImageBackgroundColor( new ImagickPixel( "rgb(213,213,213)" ) );
$im->trimImage( 0 );
$im->writeImage('2.png');

enter image description here

Is there any way to limit the trim colors?

imagick module version => 2.1.1-rc1

like image 818
jantimon Avatar asked Mar 05 '12 13:03

jantimon


1 Answers

Matt Gibsons Hint led me to the right solution: http://www.imagemagick.org/Usage/crop/#trim_color

As Matt already explained the trim method takes the corner colors to trim the image. The given solution from the documentation is a workaround: They draw a border around the image before they call the trim method.

$img = new Imagick("stripes.gif"); 
// Set the color to trim:
$img->borderImage("#FF0000", 1, 1); 
$img->trimImage(0); 
$img->setImagePage(0, 0, 0, 0);
$img->writeImage("test.jpg");'

Demo

like image 156
jantimon Avatar answered Sep 22 '22 22:09

jantimon