mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
f5c380bfc9
Summary: Ref T13358. This is very minimal, but technically works. The eventual goal is to generate PDF invoices to make my life easier when I have to interact with Enterprise Vendor Procurement. Test Plan: {F6672439} Maniphest Tasks: T13358 Differential Revision: https://secure.phabricator.com/D20692
14 lines
304 B
PHP
14 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');
|
|
}
|
|
|
|
}
|