imagick_set_attribute --
Sets an image attribute.
Description
Warnung |
Diese Funktion ist EXPERIMENTELL. Das bedeutet, dass sich das Verhalten der Funktion, ihr Name, und ALLES andere, das hier dokumentiert ist, in zukünftigen Versions des Pakets OHNE WARNUNG ändern kann. Seien Sie gewarnt und nutzen Sie das Paket auf eigenes Risiko. |
This function takes either two string with the attribute and the
value, or a array with attributes as key and the values as
values...
At the moment following attributes are supported:
adjoin |
delay |
format |
magick |
quality |
size |
More Options will follow soon, it's more or less only copy&paste work.
Beispiel 1. imagick_set_attribue() example <?php
$handle = imagick_create ()
or die ("Could not create handle");
imagick_read($handle,"mypic.gif");
imagick_set_attribue($handle,"quality",10);
imagick_write($handle,"mypic.jpg");
imagick_free($handle);
?> |
|
See also: imagick_get_attribute().