WP_Image_Editor::get_quality(): int

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


Return

int Compression Quality. Range: [1,100]


Top ↑

Source

File: wp-includes/class-wp-image-editor.php. View all references

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

	return $this->quality;
}


Top ↑

Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.