W3cubDocs

/WordPress

WP_Image_Editor::get_quality()

Gets the Image Compression quality on a 1-100% scale.

Return

(int) Compression Quality. Range: [1,100]

Source

File: wp-includes/class-wp-image-editor.php

public function get_quality() {
		if ( ! $this->quality ) {
			$this->set_quality();
		}

		return $this->quality;
	}

Changelog

Version Description
4.0.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor/get_quality