コード例 #1
0
ファイル: sample.php プロジェクト: mwoerlein/vector-graphics
$text->setStrokeWidth(1);
$graphic->addCircle(-40, -40, 40)->setStrokeColor('yellow');
$graphic->addText("C\nh\nj i", -40, -40);
$graphic->addCircle(40, -40, 40)->setStrokeColor('yellow');
$text = $graphic->addText('DaDa', 40, -40);
$text->setRotation(45);
$text->setFont(60, FontStyle::FONT_HELVETICA);
$text->align(FontStyle::HORIZONTAL_ALIGN_MIDDLE, FontStyle::VERTICAL_ALIGN_CENTRAL);
$text->setStrokeColor('red');
$text->setStrokeWidth(1);
$text->setOpacity(0.4);
$shape = $graphic->addPath((new Path(0, 0))->lineTo(80, -80)->moveTo(0, -80)->lineTo(80, 0));
$shape->setStrokeColor('black');
$shape->setFillColor(null);
$shape->setOpacity(0.6);
$rect = $graphic->addRectangle(-20, 0, 20, 15);
$rect->setFillColor('red');
$rect->setStrokeColor('green');
$rect->setOpacity(0.3);
$rect = $graphic->addRectangle(-35, 10, 30, 30);
$rect->setFillColor('red');
$rect->setStrokeColor('green');
$rect->setOpacity(0.7);
$rect = $graphic->addRectangle(0, 0, 30, 30);
$rect->setFillColor('blue');
$rect->setStrokeColor(null);
$rect = $graphic->addRectangle(-30, -30, 30, 30);
$rect->setFillColor('yellow');
$rect->setStrokeColor('red');
$rect = $graphic->addRectangle(0, -30, 30, 30);
$rect->setFillColor('green');
コード例 #2
0
h<?php 
use VectorGraphics\Model\Graphic;
use VectorGraphics\Model\Path;
$graphic = new Graphic();
$graphic->setViewportCorners(-50, -50, 50, 50);
$graphic->addRectangle(-49, -49, 98, 98)->setStrokeWidth(2);
$graphic->addCircle(0, 0, 45)->setFillColor('red', 0.5);
$radius = 40;
$path = new Path($radius * sin(0.0 / 5.0 * pi()), $radius * cos(0.0 / 5.0 * pi()));
$path->lineTo($radius * sin(4.0 / 5.0 * pi()), $radius * cos(4.0 / 5.0 * pi()));
$path->lineTo($radius * sin(8.0 / 5.0 * pi()), $radius * cos(8.0 / 5.0 * pi()));
$path->lineTo($radius * sin(2.0 / 5.0 * pi()), $radius * cos(2.0 / 5.0 * pi()));
$path->lineTo($radius * sin(6.0 / 5.0 * pi()), $radius * cos(6.0 / 5.0 * pi()));
$path->close();
$graphic->addPath($path);
return $graphic;