mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
78 lines
4.6 KiB
HTML
78 lines
4.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>从 GD 文件或 URL 新建一图像</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.imagecreatefromgd" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">imagecreatefromgd</h1>
|
|
<p class="verinfo">(PHP 4 >= 4.0.7, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">imagecreatefromgd</span> — <span class="dc-title">从 GD 文件或 URL 新建一图像</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.imagecreatefromgd-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>imagecreatefromgd</strong></span>
|
|
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$filename</code></span>
|
|
) : <span class="type">resource</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
从 GD 文件或 URL 新建一图像。
|
|
</p>
|
|
<div class="tip"><strong class="tip">Tip</strong><p class="simpara">如已启用<a href="filesystem.configuration.html#ini.allow_url_fopen" class="link">fopen 包装器</a>,在此函数中, URL 可作为文件名。关于如何指定文件名详见 <span class="function"><a href="fopen.html" class="function">fopen()</a></span>。各种
|
|
wapper 的不同功能请参见 <a href="wrappers.html" class="xref">支持的协议和封装协议</a>,注意其用法及其可提供的预定义变量。</p></div>
|
|
</div>
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.imagecreatefromgd-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">filename</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
GD 文件的路径。
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.imagecreatefromgd-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">成功后返回图象资源,失败后返回 <strong><code>FALSE</code></strong> 。</p>
|
|
</div>
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.imagecreatefromgd-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-3680">
|
|
<p><strong>Example #1 <span class="function"><strong>imagecreatefromgd()</strong></span> 例子</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br /></span><span style="color: #FF8000">// Load the gd image<br /></span><span style="color: #0000BB">$im </span><span style="color: #007700">= @</span><span style="color: #0000BB">imagecreatefromgd</span><span style="color: #007700">(</span><span style="color: #DD0000">'./test.gd'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// Test if the image was loaded<br /></span><span style="color: #007700">if(!</span><span style="color: #0000BB">is_resource</span><span style="color: #007700">(</span><span style="color: #0000BB">$im</span><span style="color: #007700">))<br />{<br /> die(</span><span style="color: #DD0000">'Unable to load gd image!'</span><span style="color: #007700">);<br />}<br /><br /></span><span style="color: #FF8000">// Do image operations here<br /><br />// Save the image<br /></span><span style="color: #0000BB">imagegd</span><span style="color: #007700">(</span><span style="color: #0000BB">$im</span><span style="color: #007700">, </span><span style="color: #DD0000">'./test_updated.gd'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">imagedestroy</span><span style="color: #007700">(</span><span style="color: #0000BB">$im</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 notes" id="refsect1-function.imagecreatefromgd-notes">
|
|
<h3 class="title">注释</h3>
|
|
<div class="warning"><strong class="warning">Warning</strong><p class="para">Windows 版本的 PHP 在 4.3.0
|
|
版之前不支持通过此函数访问远程文件,即使已经启用 <a href="filesystem.configuration.html#ini.allow-url-fopen" class="link">allow_url_fopen</a>.
|
|
</p></div>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |