-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
37 lines (26 loc) · 995 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
``PDFFonts``
============
This is a tiny program that uses Mac OS X’s PDF capabilities to list fonts
embedded in a PDF document. It can be used as a replacement for the ``pdffonts``
utility found in most Linux distributions.
Installation
------------
Compile the code with the Xcode IDE or the ``xcodebuild`` command, and copy the
binary file ``build/Release/PDFFonts`` into any directory in your search path.
Usage
-----
::
PDFFonts [options] [files]
Options
-------
-m merge lists from all files; implies ``-U -N``
-M don’t merge; this is the default
-r don’t prettify font names, opposite of ``-R``
-R remove everything up to first plus sign (garbage written by PDFTeX to
create unique names); this is the default
-u don’t sort the list; implies ``-M``
-U sort the list; this is the default
-n add header line for each file; implies ``-M``
-N never add header lines
-a add header lines if and only if more than one file was given; this is the
default