wp_image_maybe_exif_rotate

过滤钩子
apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file )
参数
  • (int) $orientation EXIF Orientation value as retrieved from the image file.
    Required:
  • (string) $file Path to the image file.
    Required:
定义位置
相关勾子
wp_read_image_metadatawp_maybe_auto_updateimage_make_intermediate_sizewp_edited_image_metadatawp_read_image_metadata_types
相关方法
wp_image_matches_ratiowp_maybe_decline_datewp_oembed_register_routewp_image_editor_wp_get_image_size_from_metawp_read_image_metadata
引入
5.3.0
弃用
-

wp_image_maybe_exif_rotate:这是 WordPress 中的一个函数,用于检查图像的 EXIF 数据以确定是否应旋转图像。如果 EXIF 数据指示图像应该旋转,该函数将相应地旋转图像。此功能通常在将图像上传到媒体库时使用。

过滤`$orientation’值,以便在旋转前纠正它,或防止旋转图像。

$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );

常见问题

FAQs
查看更多 >