You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
467 B
PHP

<?php
namespace Cijber\GraphicsToolkit\Consts;
class CairoConsts {
const FORMAT_INVALID = -1;
const FORMAT_ARGB32 = 0;
const FORMAT_RGB24 = 1;
const FORMAT_A8 = 2;
const FORMAT_A1 = 3;
const FORMAT_RGB16_565 = 4;
const FORMAT_RGB30 = 5;
const FONT_SLANT_NORMAL = 0;
const FONT_SLANT_ITALIC = 1;
const FONT_SLANT_OBLIQUE = 2;
const FONT_WEIGHT_NORMAL = 0;
const FONT_WEIGHT_BOLD = 1;
}