Example #1
0
require '../src/GDImage/GDCanvas.php';
// Creating an avatar image
$avatar_image = new GDImage();
$avatar_image->load('http://www.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=100.jpg');
$avatar_image->setTop(60);
$avatar_image->setLeft(70);
$about_text = new GDText("MY AWESOME PRESENTATION CARD GENERATED WITH GDIMAGE");
$about_text->setSize(16);
$about_text->setWidth(300);
$about_text->setLeft(210);
$about_text->setTop(75);
$about_text->setColor(204, 164, 116);
$about_text->setFontface('fonts/Lato-Lig.ttf');
$twitter_text = new GDText('@myname');
$twitter_text->setSize(11);
$twitter_text->setWidth(70);
$twitter_text->setLeft(450);
$twitter_text->setTop(210);
$twitter_text->setColor(130, 127, 125);
$twitter_text->setFontface('fonts/Lato-Reg.ttf');
$canvas_figure = new GDFigure(550, 250);
$canvas_figure->setBackgroundColor(47, 42, 39);
$canvas_figure->create();
$avatar_box = new GDFigure($avatar_image->getWidth() + 16, $avatar_image->getHeight() + 17);
$avatar_box->setBackgroundColor(63, 56, 52);
$avatar_box->setLeft($avatar_image->getLeft() - 7);
$avatar_box->setTop($avatar_image->getTop() - 8);
$avatar_box->create();
$avatar_box2 = new GDFigure($avatar_image->getWidth() + 3, $avatar_image->getHeight() + 19);
$avatar_box2->setBackgroundColor(79, 72, 67);
$avatar_box2->setLeft($avatar_image->getLeft() + 7);
Example #2
0
 public function testCreateText()
 {
     $text = new GDText('This is cool text!');
     $text->setWidth(400);
     $text->setHeight(250);
     $text->setAlign('center');
     $text->setValign('center');
     $text->setSize(22);
     $text->setColor(255, 255, 255);
     $text->setFontface(GDIMAGE_PATH_APP . DS . 'examples/fonts/Lato-Lig.ttf');
     $this->assertInstanceOf('GDText', $text);
     return $text;
 }
Example #3
0
<?php

/**
 * Creating Canvas with Text
 */
require '../src/GDImage/GDUtils.php';
require '../src/GDImage/GDImage.php';
require '../src/GDImage/GDFigure.php';
require '../src/GDImage/GDText.php';
require '../src/GDImage/GDCanvas.php';
$figure = new GDFigure(400, 250);
$figure->setBackgroundColor(47, 42, 39);
$figure->create();
$text = new GDText('This is cool text!');
$text->setWidth(400);
$text->setHeight(250);
$text->setAlign('center');
$text->setValign('center');
$text->setSize(22);
$text->setColor(255, 255, 255);
$text->setFontface('fonts/Lato-Lig.ttf');
$canvas = new GDCanvas($figure);
$canvas->append($text);
$canvas->toPNG();
$canvas->draw();
$canvas->output();