PHP - Manual: imagecreatefromgd
2024-11-14
(PHP 4 >= 4.0.7, PHP 5, PHP 7, PHP 8)
imagecreatefromgd — 从 GD 文件或 URL 新建一图像
$filename
): resource从 GD 文件或 URL 新建一图像。
如已启用fopen 包装器,在此函数中, URL 可作为文件名。关于如何指定文件名详见 fopen()。各种 wapper 的不同功能请参见 支持的协议和封装协议,注意其用法及其可提供的预定义变量。
filename
GD 文件的路径。
成功后返回图象对象,失败后返回 false
。
示例 #1 imagecreatefromgd() 例子
<?php
// Load the gd image
$im = @imagecreatefromgd('./test.gd');
// Test if the image was loaded
if(!is_resource($im))
{
die('Unable to load gd image!');
}
// Do image operations here
// Save the image
imagegd($im, './test_updated.gd');
imagedestroy($im);
?>
官方地址:https://www.php.net/manual/en/function.imagecreatefromgd.php