PHP imagecreatefrombmp 图像GD库函数
-
定义和用法
imagecreatefrombmp - 由文件或 URL 创建一个新图象。 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
imagecreatefrombmp ( string $filename )
imagecreatefrombmp() 返回表示从给定文件名获得的图像的图像标识符。 -
参数
参数 必需的 描述 filename 是 BMP图像的路径。 -
返回值
成功后返回图象资源,失败后返回 FALSE 。 -
示例
// Load the BMP file $im = imagecreatefrombmp('./example.bmp'); // Convert it to a PNG file with default settings imagepng($im, './example.png'); imagedestroy($im);
-