PHP imagecreatefromxpm 图像GD库函数
-
定义和用法
imagecreatefromxpm - 由文件或 URL 创建一个新图象。 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 注意: 此函数仅在与 GD 库捆绑编译的 PHP 版本中可用。
注意: 此函数未在 Windows 平台下实现。
-
语法
imagecreatefromxpm ( string $filename )
imagecreatefromxpm() 返回一图像标识符,代表了从给定的文件名取得的图像。 -
参数
参数 必需的 描述 filename 是 XPM图像的路径。 -
返回值
成功后返回图象资源,失败后返回 FALSE 。 -
示例
// Check for XPM support if(!(imagetypes() & IMG_XPM)) { die('Support for xpm was not found!'); } // Create the image instance $xpm = imagecreatefromxpm('./example.xpm'); // Do image operations here // PHP has no support for writing xpm images // so in this case we save the image as a // jpeg file with 100% quality imagejpeg($xpm, './example.jpg', 100); imagedestroy($xpm);
-
相关函数
imagecreatefromjpeg() - 由文件或 URL 创建一个新图象。imagecreatefrompng() - 由文件或 URL 创建一个新图象。imagecreatefromgif() - 由文件或 URL 创建一个新图象。