wepnop Posted February 14, 2011 Share Posted February 14, 2011 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. Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted February 14, 2011 Share Posted February 14, 2011 seems undefined, Did you include the Class definitions that are part of that library into your code before you attempted to create the instances of the Classes? Quote Link to comment Share on other sites More sharing options...
wepnop Posted February 14, 2011 Author Share Posted February 14, 2011 Whats the keyword to use?include cairo? Quote Link to comment Share on other sites More sharing options...
wepnop Posted February 15, 2011 Author Share Posted February 15, 2011 I tested with cairo and its still not working. Anybody uses these library and can help me? Quote Link to comment Share on other sites More sharing options...
zenlord Posted February 15, 2011 Share Posted February 15, 2011 http://be.php.net/manual/en/cairo.requirements.php Are those requirements fulfilled? Did you install the library or not? V Quote Link to comment Share on other sites More sharing options...
patser Posted May 21, 2013 Share Posted May 21, 2013 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.