Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_save_pre

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

This hook occurs 2 times in this file.

Line Code
261           /**
262            * Filters the GD image resource to be streamed to the browser.
263            *
264            * @since 2.9.0
265            * @deprecated 3.5.0 Use image_editor_save_pre instead.
266            *
267            * @param resource $image   Image resource to be streamed.
268            * @param int      $post_id Post ID.
269            */
270           $image = apply_filters( 'image_save_pre', $image, $post_id );
271
272           switch ( $mime_type ) {
273                case 'image/jpeg':
274                     header( 'Content-Type: image/jpeg' );
275                     return imagejpeg( $image, null, 90 );
276                case 'image/png':
277                     header( 'Content-Type: image/png' );
278                     return imagepng( $image );
279                case 'image/gif':
 
Line Code
318
319           if ( null !== $saved )
320                return $saved;
321
322           return $image->save( $filename, $mime_type );
323      } else {
324           _deprecated_argument( __FUNCTION__, '3.5.0', __( '$image needs to be an WP_Image_Editor object' ) );
325
326           /** This filter is documented in wp-admin/includes/image-edit.php */
327           $image = apply_filters( 'image_save_pre', $image, $post_id );
328
329           /**
330            * Filters whether to skip saving the image file.
331            *
332            * Returning a non-null value will short-circuit the save method,
333            * returning that value instead.
334            *
335            * @since 2.9.0
336            * @deprecated 3.5.0 Use wp_save_image_editor_file instead.