Hook docs fixes following [26645].

See #25721.


git-svn-id: https://develop.svn.wordpress.org/trunk@26648 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2013-12-04 23:31:21 +00:00
parent 62ce5c7a8c
commit ba4187de33
3 changed files with 15 additions and 10 deletions

View File

@ -259,6 +259,7 @@ function wp_save_image_file( $filename, $image, $mime_type, $post_id ) {
switch ( $mime_type ) {
case 'image/jpeg':
/** This filter is documented in wp-includes/class-wp-image-editor.php */
return imagejpeg( $image, $filename, apply_filters( 'jpeg_quality', 90, 'edit_image' ) );
case 'image/png':
return imagepng( $image, $filename );

View File

@ -91,7 +91,8 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
*
* @since 3.5.0
*
* @param int Maximum memory limit to allocate (default is WP_MAX_MEMORY_LIMIT)
* @param string $limit Maximum memory limit to allocate for images. Default value
* of WP_MAX_MEMORY_LIMIT is '256M'.
*/
// Set artificially high because GD uses uncompressed images in memory
@ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );

View File

@ -213,7 +213,7 @@ abstract class WP_Image_Editor {
}
/**
* Filter the default quality setting.
* Filter the default image compression quality setting.
*
* @since 3.5.0
*
@ -221,15 +221,18 @@ abstract class WP_Image_Editor {
*/
$quality = apply_filters( 'wp_editor_set_quality', $quality, $this->mime_type );
/**
* Filter the JPEG quality for backwards compatibilty.
*
* @since 2.5.0
*
* @param int $quality Quality level between 0 (low) and 100 (high) of the JPEG.
* @param string The context of the filter.
*/
if ( 'image/jpeg' == $this->mime_type ) {
/**
* Filter the JPEG compression quality for backward-compatibility.
*
* 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.
*/
$quality = apply_filters( 'jpeg_quality', $quality, 'image_resize' );
// Allow 0, but squash to 1 due to identical images in GD, and for backwards compatibility.