jQuery调用WebMethod(PageMethod) NET2.0的方法
404
2024-03-07
(PHP 4, PHP 5)
imagecharup — 垂直地画一个字符
$image
, int $font
, int $x
, int $y
, string $c
, int $color
)
imagecharup() 将字符
c
垂直地画在
image
指定的图像上,位于
x
,y
(图像左上角为 0, 0),颜色为
color
。如果 font
为 1,2,3,4 或 5,则使用内置的字体。
Example #1 imagecharup() 例子
<?php
$im = imagecreate(100,100);
$string = 'Note that the first letter is a N';
$bg = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// prints a black "Z" on a white background
imagecharup($im, 3, 10, 10, $string, $black);
header('Content-type: image/png');
imagepng($im);
?>
参见 imagechar() 和 imageloadfont()。
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!