Docs: Ensure hook and duplicate hook docs directly precede all instances of the `image_memory_limit` filter.
Hook docs must directly precede hooks in order for the Code Reference parser to correctly identify them as such. Fixes #36968. Built from https://develop.svn.wordpress.org/trunk@37592 git-svn-id: http://core.svn.wordpress.org/trunk@37560 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a7c601b74f
commit
311f800907
|
@ -104,8 +104,10 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
|
||||||
* @param int|string $limit Maximum memory limit to allocate for images. Default WP_MAX_MEMORY_LIMIT.
|
* @param int|string $limit Maximum memory limit to allocate for images. Default WP_MAX_MEMORY_LIMIT.
|
||||||
* Accepts an integer (bytes), or a shorthand string notation, such as '256M'.
|
* Accepts an integer (bytes), or a shorthand string notation, such as '256M'.
|
||||||
*/
|
*/
|
||||||
// Set artificially high because GD uses uncompressed images in memory
|
$image_memory_limit = apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT );
|
||||||
@ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
|
||||||
|
// Set artificially high because GD uses uncompressed images in memory.
|
||||||
|
@ini_set( 'memory_limit', $image_memory_limit );
|
||||||
|
|
||||||
$this->image = @imagecreatefromstring( file_get_contents( $this->file ) );
|
$this->image = @imagecreatefromstring( file_get_contents( $this->file ) );
|
||||||
|
|
||||||
|
|
|
@ -138,8 +138,13 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
||||||
return new WP_Error( 'error_loading_image', __('File doesn’t exist?'), $this->file );
|
return new WP_Error( 'error_loading_image', __('File doesn’t exist?'), $this->file );
|
||||||
|
|
||||||
/** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
|
/** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
|
||||||
// Even though Imagick uses less PHP memory than GD, set higher limit for users that have low PHP.ini limits
|
$image_memory_limit = apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT );
|
||||||
@ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
|
||||||
|
/*
|
||||||
|
* Even though Imagick uses less PHP memory than GD, set higher limit
|
||||||
|
* for users that have low PHP.ini limits.
|
||||||
|
*/
|
||||||
|
@ini_set( 'memory_limit', $image_memory_limit );
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$this->image = new Imagick( $this->file );
|
$this->image = new Imagick( $this->file );
|
||||||
|
|
|
@ -3175,8 +3175,12 @@ function wp_load_image( $file ) {
|
||||||
if ( ! function_exists('imagecreatefromstring') )
|
if ( ! function_exists('imagecreatefromstring') )
|
||||||
return __('The GD image library is not installed.');
|
return __('The GD image library is not installed.');
|
||||||
|
|
||||||
// Set artificially high because GD uses uncompressed images in memory
|
/** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
|
||||||
@ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );
|
$image_memory_limit = apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT );
|
||||||
|
|
||||||
|
// Set artificially high because GD uses uncompressed images in memory.
|
||||||
|
@ini_set( 'memory_limit', $image_memory_limit );
|
||||||
|
|
||||||
$image = imagecreatefromstring( file_get_contents( $file ) );
|
$image = imagecreatefromstring( file_get_contents( $file ) );
|
||||||
|
|
||||||
if ( !is_resource( $image ) )
|
if ( !is_resource( $image ) )
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.6-alpha-37591';
|
$wp_version = '4.6-alpha-37592';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue