由檔案或 URL 建立一個新圖像。

imagecreatefromxpm

(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

imagecreatefromxpm由檔案或 URL 建立一個新圖像。

說明

imagecreatefromxpm(string $filename): resource

imagecreatefromxpm() 返回一影象識別符號,代表了從給定的檔名取得的影象。

小技巧

如已啟用fopen 包裝器,在此函式中, URL 可作為檔名。關於如何指定檔名詳見 fopen()。各種 wapper 的不同功能請參見 支援的協議和封裝協議,注意其用法及其可提供的預定義變數。

注意: 此函式未在 Windows 平臺下實現。

參數

filename

Path to the XPM image.

返回值

成功后返回圖像對像,失敗后返回 false

範例

示例 #1 Creating an image instance using imagecreatefromxpm()

<?php
// 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);
?>

返回值

注意: 此函式未在 Windows 平臺下實現。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *