Imagick::setImageOpacity
(PECL imagick 2, PECL imagick 3)
Imagick::setImageOpacity — Sets the image opacity level
Avertizare
Această funcție este ÎNVECHITĂ începând cu Imagick
3.4.4. Utilizarea acesteia este foarte nerecomandată.
Descrierea
public Imagick::setImageOpacity
( float $opacity
) : bool
Parametri
-
opacity
-
The level of transparency: 1.0 is fully opaque and 0.0 is fully
transparent.
Valorile întoarse
Întoarce true
în caz de succes.
Exemple
Example #1 A Imagick::setImageOpacity() example
An example of using Imagick::setImageOpacity()
<?php
/* Create the object */
$image = new Imagick('source.png');
/* Set the opacity */
$image->setImageOpacity(0.7);
/* output the image */
header('Content-type: image/png');
echo $image;
?>