gd_edit_image_support

函数
gd_edit_image_support ( $mime_type )
参数
  • (string) $mime_type
    Required:
返回值
  • (bool)
相关
  • wp_image_editor_supports()
定义位置
相关方法
get_theme_supportadd_theme_supportget_image_tag_add_default_theme_supportswp_timezone_supported
引入
2.9.0
弃用
3.5.0

gd_edit_image_support: 这个函数用来确定服务器是否支持GD库,GD库用于在WordPress中编辑图像。

检查所安装的GD版本是否支持特定的图像类型。

function gd_edit_image_support($mime_type) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'wp_image_editor_supports()' );

	if ( function_exists('imagetypes') ) {
		switch( $mime_type ) {
			case 'image/jpeg':
				return (imagetypes() & IMG_JPG) != 0;
			case 'image/png':
				return (imagetypes() & IMG_PNG) != 0;
			case 'image/gif':
				return (imagetypes() & IMG_GIF) != 0;
			case 'image/webp':
				return (imagetypes() & IMG_WEBP) != 0;
		}
	} else {
		switch( $mime_type ) {
			case 'image/jpeg':
				return function_exists('imagecreatefromjpeg');
			case 'image/png':
				return function_exists('imagecreatefrompng');
			case 'image/gif':
				return function_exists('imagecreatefromgif');
			case 'image/webp':
				return function_exists('imagecreatefromwebp');
		}
	}
	return false;
}

常见问题

FAQs
查看更多 >