mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
18 lines
178 B
PHP
Executable File
18 lines
178 B
PHP
Executable File
<?php
|
|
|
|
namespace Mpdf\Fonts;
|
|
|
|
class GlyphOperator
|
|
{
|
|
|
|
const WORDS = 1 << 0;
|
|
|
|
const SCALE = 1 << 3;
|
|
|
|
const MORE = 1 << 5;
|
|
|
|
const XYSCALE = 1 << 6;
|
|
|
|
const TWOBYTWO = 1 << 7;
|
|
}
|