Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.