Gmagick::setCompressionQuality

(No version information available, might only be in Git)

Gmagick::setCompressionQualitySets the object's default compression quality

Beschreibung

Gmagick::setCompressionQuality( int $quality = 75 ): Gmagick

Sets the object's default compression quality.

Parameter-Liste

quality

Rückgabewerte

The Gmagick object.

Fehler/Exceptions

Wirft bei einem Fehler eine GmagickException.

Beispiele

Beispiel #1 Gmagick::setCompressionQuality()

<?php
$gm
= new Gmagick();
$gm->read("magick:rose");
$gm->setCompressionQuality(2);
?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top