downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Imagick::setImageUnits> <Imagick::setImageTicksPerSecond
[edit] Last updated: Thu, 23 May 2013

view this page in

Imagick::setImageType

(PECL imagick 2.0.0)

Imagick::setImageTypeConfigure le type d'image

Description

bool Imagick::setImageType ( int $image_type )

Configure le type d'image.

Liste de paramètres

image_type

Valeurs de retour

Returns TRUE on success.



add a note add a note User Contributed Notes Imagick::setImageType - [1 notes]
up
1
lee dot traynor at skeptic dot de
1 year ago
This function can be used to desaturate an image, i.e. to convert a coloured image into a greyscale:

<?php

$im
= new Imagick ("image.jpg");
$im->setImageType (2);
//is now in 256 shades of grey

?>

 
show source | credits | sitemap | contact | advertising | mirror sites