imagecreatefrombmp
(PHP 7 >= 7.2.0, PHP 8)
imagecreatefrombmp — 由檔案或 URL 建立一個新圖像。
說明
imagecreatefrombmp() returns an image identifier representing the image obtained from the given filename.
小技巧
如已啟用fopen 包裝器,在此函式中, URL 可作為檔名。關於如何指定檔名詳見 fopen()。各種 wapper 的不同功能請參見 支援的協議和封裝協議,注意其用法及其可提供的預定義變數。
參數
-
filename
-
Path to the BMP image.
返回值
成功后返回圖像對像,失敗后返回 false
。
更新日誌
版本 | 說明 |
---|---|
8.0.0 | On success, this function returns a GDImage instance now; previously, a resource was returned. |
範例
示例 #1 Convert an BMP image to a PNG image using imagecreatefrombmp()
<?php
// Load the BMP file
$im = imagecreatefrombmp('./example.bmp');
// Convert it to a PNG file with default settings
imagepng($im, './example.png');
imagedestroy($im);
?>