Jump to content

Cairo example and installation


wepnop

Recommended Posts

Im looking to use this library but if i use this sample:

<?php
// test_cairo.php
$s = new CairoImageSurface(CairoFormat::ARGB32, 400, 400);
$c = new CairoContext($s);
$c->fill();
$c->setSourceRGB(1, 0, 0);
$c->setLineWidth(50);
$c->arc(200, 200, 100, 0, 2 * M_PI);
$c->stroke();
$c->setSourceRGB(0, 0, 0.6);
$c->rectangle(0, 160, 400, 75);
$c->fill();

$s->writeToPng(dirname(__FILE__)  . '/test.png');

 

It dont works, seems undefined, and checking for the url that php manuals tells to visit i dont work:

 

http://perisama.net/cairo/

 

How i can install and test it? I use php 6.

Link to comment
https://forums.phpfreaks.com/topic/227639-cairo-example-and-installation/
Share on other sites

  • 2 years later...

      Hello all,

 

      This code comes from http://cambiatablog.wordpress.com/2010/11/06/getting-started-with-cairo-graphics-and-php/

 

     So, it means that the library these classes come from are part of WordPress. I think that WordPress is a free software.

 

      Hoping that it will help, cheers

 

Patrick

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.