Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_memory_limit

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
244           $file = get_attached_file( $file );
245
246      if ( ! file_exists( $file ) )
247           return sprintf(__('File “%s” doesn’t exist?'), $file);
248
249      if ( ! function_exists('imagecreatefromstring') )
250           return __('The GD image library is not installed.');
251
252      // Set artificially high because GD uses uncompressed images in memory
253      @ini_set( 'memory_limit', apply_filters( 'image_memory_limit', WP_MAX_MEMORY_LIMIT ) );
254      $image = imagecreatefromstring( file_get_contents( $file ) );
255
256      if ( !is_resource( $image ) )
257           return sprintf(__('File “%s” is not an image.'), $file);
258
259      return $image;
260 }
261
262 /**