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
227           /**
228            * Filter the GD image resource to be streamed to the browser.
229            *
230            * @since 2.9.0
231            * @deprecated 3.5.0 Use image_editor_save_pre instead.
232            *
233            * @param resource $image   Image resource to be streamed.
234            * @param int      $post_id Post ID.
235            */
236           $image = apply_filters( 'image_save_pre', $image, $post_id );
237
238           switch ( $mime_type ) {
239                case 'image/jpeg':
240                     header( 'Content-Type: image/jpeg' );
241                     return imagejpeg( $image, null, 90 );
242                case 'image/png':
243                     header( 'Content-Type: image/png' );
244                     return imagepng( $image );
245                case 'image/gif':
 
Line Code
284
285           if ( null !== $saved )
286                return $saved;
287
288           return $image->save( $filename, $mime_type );
289      } else {
290           _deprecated_argument( __FUNCTION__, '3.5', __( '$image needs to be an WP_Image_Editor object' ) );
291
292           /** This filter is documented in wp-admin/includes/image-edit.php */
293           $image = apply_filters( 'image_save_pre', $image, $post_id );
294
295           /**
296            * Filter whether to skip saving the image file.
297            *
298            * Returning a non-null value will short-circuit the save method,
299            * returning that value instead.
300            *
301            * @since 2.9.0
302            * @deprecated 3.5.0 Use wp_save_image_editor_file instead.