创建图片[CreateImage]
<table>
<thead>
<tr>
<th>function</th>
<th>Parent</th>
<th>Name</th>
<th>Left</th>
<th>Top</th>
<th>Width</th>
<th>Height</th>
<th>Visible</th>
<th>Hint</th>
<th>ret</th>
</tr>
</thead>
<tbody>
<tr>
<td>CreateImage</td>
<td>父窗口</td>
<td>名称</td>
<td>左边</td>
<td>顶边</td>
<td>宽度</td>
<td>高度</td>
<td>是否显示</td>
<td>提示</td>
<td>返回对象</td>
</tr>
</tbody>
</table>
<ul>
<li>注意,必须置图片对象数据,否则不显示.</li>
</ul>
<pre><code class="language-lua">local aim= CreateImage{Parent = &#039;Handle&#039;,Name = &#039;a&#039;, Left = 62 , Top = 88, Width = 68, Height = 88, Visible = true, Hint = &#039;&#039;};
aim.BackImage=&#039;img_store_head_bg.png&#039;</code></pre>