Ejemplo n.º 1
0
<?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'>";
Ejemplo n.º 2
0
    $uploader = new uploader();
    $uploader->checkAndMove();
}
if (!empty($_SESSION['filename'])) {
    $image = new image();
    $image->getDimensions();
    if (!empty($_POST['imageCrop'])) {
        $image->cropImage();
    }
}
?>
</head>
<body>
<center>
<h1>Загрузка и обработка изображения</h1>
<?php 
$menu->showUploadMenu();
if (!empty($_SESSION['filename'])) {
    $menu->showCropMenu();
    $image->checkCrop($menu);
    $menu->showSepia();
    if (!empty($_GET['sepia']) and $_GET['sepia'] == 'yes') {
        $image->applySepia();
    }
    $image->showImage();
    $image->saveImage();
}
?>
</center>
</body>
</html>
Ejemplo n.º 3
0
$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'>";