jpeg_quality WordPress Filter Hook

The jpeg_quality hook is a filter hook that allows you to change the JPEG compression quality for images uploaded to your WordPress site. This can be useful if you want to save space on your server, or if you want to improve the load time of your site by reducing the file size of your images.

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).


Top ↑

Parameters

$quality

(int)Quality level between 0 (low) and 100 (high) of the JPEG.

$context

(string)Context of the filter.


Top ↑

Source

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

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.