On this page
apply_filters( 'jpeg_quality', int $quality, string $context )
Filters the JPEG compression quality for backward-compatibility.
Description
Applies only during initial editor instantiation, or when set_quality() is run manually without the $quality argument.
The WP_Image_Editor::set_quality() method has priority over the filter.
The filter is evaluated under two contexts: ‘image_resize’, and ‘edit_image’, (when a JPEG image is saved to file).
Parameters
$qualityint-
Quality level between 0 (low) and 100 (high) of the JPEG.
$contextstring-
Context of the filter.
Source
File: wp-includes/class-wp-image-editor.php. View all references
$quality = apply_filters( 'jpeg_quality', $quality, 'image_resize' );
Related
Used By
| Used By | Description |
|---|---|
| wp_save_image_file() wp-admin/includes/image-edit.php | Saves image to file. |
| WP_Image_Editor::set_quality() wp-includes/class-wp-image-editor.php | Sets Image Compression quality on a 1-100% scale. |
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/jpeg_quality