wpseek.com
A WordPress-centric search engine for devs and theme authors



image_max_bit_depth › WordPress Filter Hooks

Since6.8.0
Deprecatedn/a
apply_filters( 'image_max_bit_depth', $this->image->getImageDepth()
Parameters: (2)
  • (int) $max_depth The maximum bit depth. Default is the input depth.
    Required: Yes
  • (int) $image_depth The bit depth of the original image.
    Required: Yes
Defined at:
Codex:

Filters the maximum bit depth of resized images.

This filter only applies when resizing using the Imagick editor since GD does not support getting or setting bit depth.

Use this to adjust the maximum bit depth of resized images.





Source

$max_depth = apply_filters( 'image_max_bit_depth', $this->image->getImageDepth(), $this->image->getImageDepth() );