BP_Attachment_Avatar:: is_too_small (字符串美元的文件='')
检查图像尺寸是否小于完整的头像尺寸。
描述
参数
- 美元的文件
-
(字符串)(可选)文件的绝对路径。
默认值:“
返回
(保龄球)
源
文件:bp-core /类/ class-bp-attachment-avatar.php
Public static function is_too_small($file = ") {$uploaded_image = @getimagesize($file); / /上传图片$ full_width = bp_core_avatar_full_width ();$ full_height = bp_core_avatar_full_height ();If (isset($uploaded_image[0]) && $uploaded_image[0] < $full_width || $uploaded_image[1] < $full_height){返回true;}返回false;}
更新日志
版本 | 描述 |
---|---|
BuddyPress tripwire | 介绍了。 |