1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-03 20:22:46 +01:00
phorge-phorge/src/applications/phortune/pdf/PhabricatorPDFFontObject.php

15 lines
304 B
PHP
Raw Normal View History

<?php
final class PhabricatorPDFFontObject
extends PhabricatorPDFObject {
protected function writeObject() {
$this->writeLine('/Type /Font');
$this->writeLine('/BaseFont /Helvetica-Bold');
$this->writeLine('/Subtype /Type1');
$this->writeLine('/Encoding /WinAnsiEncoding');
}
}