4 $sur = new CairoImageSurface(FORMAT_ARGB32
, $width, $height);
5 $con = new CairoContext($sur);
7 $dash = array(8.0, 2.0);
9 $con->setSourceRgb ( 1, 1, 1);
12 $con->setSourceRgb ( 0., 0., 0);
14 //$con->translate ( 0.5, .5);
15 $con->setLineWidth ( 2); /* This is vital to reproduce the bug. */
17 /* First check simple rectangles */
18 $con->rectangle (2,2,67,24);
20 $con->setDash ( $dash, 2, 9.0);
23 $sur->writeToPng("leaky-dash-php.png");