Cairo
PHP Manual

The CairoLineCap class

導入

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

The default line cap style is CairoLineCap::BUTT.

クラス概要

CairoLineCap {
/* 定数 */
const integer CairoLineCap::BUTT = 0 ;
const integer CairoLineCap::ROUND = 1 ;
const integer CairoLineCap::SQUARE = 2 ;
}

定義済み定数

CairoLineCap Node Types

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