= 4.0.7, PHP 5, PHP 7, PHP 8)imagegd2 — 將 GD2 圖像輸出到瀏覽器或文件說明imagegd2( resource $image, string $filename = ?, int $chunk_size =">
(PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8)
imagegd2 — 將 GD2 圖像輸出到瀏覽器或文件
$image
,$filename
= ?,$chunk_size
= ?,$type
= IMG_GD2_RAW
imagegd2() 將一個 GD 圖像輸出到
filename
。image
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的 GdImage 對象。
filename
文件保存的路徑或者已打開的流資源(此方法返回后自動關(guān)閉該流資源),如果未設(shè)置或為 null
,將會直接輸出原始圖象流。
chunk_size
Chunk size.
type
可以是
IMG_GD2_RAW
或 IMG_GD2_COMPRESSED
。默認(rèn)為
IMG_GD2_RAW
。
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 輸出一個 GD2 圖像
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
// Output the image
imagegd2($im);
// Free up memory
imagedestroy($im);
?>
示例 #2 保存 GD2 圖像
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
// Save the gd2 image
// The file format for GD2 images is .gd2, see http://www.libgd.org/GdFileFormats
imagegd2($im, 'simple.gd2');
// Free up memory
imagedestroy($im);
?>
注意:
GD2 格式一般是用來加載圖像中的一部分時更快。注意 GD2 格式只能用于兼容于 GD2 的應(yīng)用程序。
版本 | 說明 |
---|---|
4.3.2 |
添加了參數(shù) chunk_size 和 type 。
|