Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: image_strip_meta

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
326            * Filters whether to strip metadata from images when they're resized.
327            *
328            * This filter only applies when resizing using the Imagick editor since GD
329            * always strips profiles by default.
330            *
331            * @since 4.5.0
332            *
333            * @param bool $strip_meta Whether to strip image metadata during resizing. Default true.
334            */
335           if ( apply_filters( 'image_strip_meta', $strip_meta ) ) {
336                $this->strip_meta(); // Fail silently if not supported.
337           }
338
339           try {
340                /*
341                 * To be more efficient, resample large images to 5x the destination size before resizing
342                 * whenever the output size is less that 1/3 of the original image size (1/3^2 ~= .111),
343                 * unless we would be resampling to a scale smaller than 128x128.
344                 */