WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about jpeg_quality

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-admin/includes/image-edit.php apply_filters 438 /**
* Filters whether to skip saving the image file.
*
* Returning a non-null value will short-circuit the save method,
* returning that value instead.
*
* @since 2.9.0
* @deprecated 3.5.0 Use {@see 'wp_save_image_editor_file'} instead.
*
* @param bool|null $override Value to return instead of saving. Default null.
* @param string $filename Name of the file to be saved.
* @param resource|GdImage $image Image resource or GdImage instance.
* @param string $mime_type The mime type of the image.
* @param int $post_id Attachment post ID.
*/
wp-includes/class-wp-image-editor.php apply_filters 279 /**
* Filters the JPEG compression quality for backward-compatibility.
*
* 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).
*
* @since 2.5.0
*
* @param int $quality Quality level between 0 (low) and 100 (high) of the JPEG.
* @param string $context Context of the filter.
*/

Hook Parameters

Parameter Type Name Description
int $quality Quality level between 0 (low) and 100 (high) of the JPEG.
string $context Context of the filter.