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’值,以便在旋轉前糾正它,或防止旋轉影象。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );
$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );
$orientation = apply_filters( 'wp_image_maybe_exif_rotate', $orientation, $this->file );

常見問題

FAQs
檢視更多 >