本文整理汇总了PHP中image::drawFilledRectangle方法的典型用法代码示例。如果您正苦于以下问题:PHP image::drawFilledRectangle方法的具体用法?PHP image::drawFilledRectangle怎么用?PHP image::drawFilledRectangle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类image
的用法示例。
在下文中一共展示了image::drawFilledRectangle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: image
<?php
include 'image.class.php';
$image = new image(320, 200);
for ($i = 1; $i <= 15; $i++) {
$image->drawFilledRectangle(10 + 10 * $i, 170 - 10 * $i, 30 + 10 * $i, 190 - 10 * $i, '0000ff50');
}
for ($i = 1; $i <= 15; $i++) {
$image->drawFilledRectangle(110 + 10 * $i, 170 - 10 * $i, 130 + 10 * $i, 190 - 10 * $i, '0000ff50');
}
for ($i = 1; $i <= 15; $i++) {
$image->drawFilledRectangle(10 + 10 * $i, 10 + 10 * $i, 30 + 10 * $i, 30 + 10 * $i, 'ff000050');
}
for ($i = 1; $i <= 15; $i++) {
$image->drawFilledRectangle(110 + 10 * $i, 10 + 10 * $i, 130 + 10 * $i, 30 + 10 * $i, 'ff000050');
}
$image->saveImage('demo.png');
echo "<img hspace='0' vspace='0' src='demo.png' border='0'>";
示例2: image
$image->saveImage('test_03.png');
echo "<img hspace='2' vspace='2' src='test_03.png' border='0'>";
echo "<hr />";
echo "<p>draw a red alpha transparent filled box</p>";
$image = new image(50, 50);
$image->drawFilledRectangle(5, 5, 45, 45, 'ff000050');
$image->saveImage('test_04.png');
echo "<img hspace='2' vspace='2' src='test_04.png' border='0'>";
echo "<hr />";
echo "<p>draw a red alpha transparent filled blue bordered box with a border of 4 pixels</p>";
$image = new image(50, 50);
$image->drawFilledBorderedRectangle(5, 5, 45, 45, 4, '00007f50', 'ff000050');
$image->saveImage('test_05.png');
echo "<img hspace='2' vspace='2' src='test_05.png' border='0'>";
echo "<hr />";
echo "<p>draw a red alpha transparent filled blue bordered box. The border will increase in size from 0 to 10 pixels pixels for the border and some white text in the box</p>";
for ($i = 0; $i <= 10; $i++) {
$image = new image(200, 50);
$image->drawFilledBorderedRectangle(0, 0, 200, 50, $i, '00007f50', 'ff000050');
$image->addFont('verdana.ttf');
$image->drawText(4, 14, 0, 'verdana.ttf', 12, 'ffffff00', 'Some text');
$image->saveImage("test_06_" . $i . ".png");
echo "<img hspace='2' vspace='2' src='test_06_" . $i . ".png' border='0'></br >";
}
echo "<hr />";
echo "<p>draw a red and blue alpha transparent box that overlap. This demonstrates the alpha blending of the images</p>";
$image = new image(50, 50);
$image->drawFilledRectangle(5, 5, 30, 30, 'ff000050');
$image->drawFilledRectangle(20, 20, 45, 45, '0000ff50');
$image->saveImage('test_07.png');
echo "<img hspace='2' vspace='2' src='test_07.png' border='0'>";