mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
15 lines
304 B
PHP
15 lines
304 B
PHP
|
<?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');
|
||
|
}
|
||
|
|
||
|
}
|