Gets the Image Compression quality on a 1-100% scale.
Source
public function get_quality() {
if ( ! $this->quality ) {
$this->set_quality();
}
return $this->quality;
}
Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |
CARVIEW |
Gets the Image Compression quality on a 1-100% scale.
public function get_quality() {
if ( ! $this->quality ) {
$this->set_quality();
}
return $this->quality;
}
Uses | Description |
---|---|
WP_Image_Editor::set_quality()wp-includes/class-wp-image-editor.php | Sets Image Compression quality on a 1-100% scale. |
Version | Description |
---|---|
4.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.