Cairo
PHP Manual

The CairoLineCap class

(Não há informação de versão disponível, talvez apenas no SVN)

Introdução

Specifies how to render the endpoints of the path when stroking.

The default line cap style is CairoLineCap::BUTT.

Sinopse da classe

CairoLineCap {
/* Constantes */
const integer BUTT = 0 ;
const integer ROUND = 1 ;
const integer SQUARE = 2 ;
}

Constantes pré-definidas

CairoLineCap::BUTT

Start(stop) the line exactly at the start(end) point

CairoLineCap::ROUND

Use a round ending, the center of the circle is the end point

CairoLineCap::SQUARE

Use squared ending, the center of the square is the end point


Cairo
PHP Manual