poppler 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +1 -1
- data/Rakefile +69 -9
- data/ext/poppler/extconf.rb +5 -2
- data/ext/poppler/rbpoppler-action.c +242 -86
- data/ext/poppler/{rbpoppler-annotationcalloutline.c → rbpoppler-annotation-callout-line.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationfreetext.c → rbpoppler-annotation-free-text.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmapping.c → rbpoppler-annotation-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-annotationmarkup.c → rbpoppler-annotation-markup.c} +5 -4
- data/ext/poppler/{rbpoppler-annotationtext.c → rbpoppler-annotation-text.c} +2 -7
- data/ext/poppler/{rbpoppler-buttonfield.c → rbpoppler-button-field.c} +0 -0
- data/ext/poppler/{rbpoppler-choicefield.c → rbpoppler-choice-field.c} +0 -0
- data/ext/poppler/{rbpoppler-fontinfo.c → rbpoppler-font-info.c} +2 -8
- data/ext/poppler/{rbpoppler-fontsiter.c → rbpoppler-fonts-iter.c} +5 -6
- data/ext/poppler/{rbpoppler-formfieldmapping.c → rbpoppler-form-field-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-imagemapping.c → rbpoppler-image-mapping.c} +2 -7
- data/ext/poppler/{rbpoppler-indexiter.c → rbpoppler-index-iter.c} +2 -3
- data/ext/poppler/{rbpoppler-linkmapping.c → rbpoppler-link-mapping.c} +2 -3
- data/ext/poppler/{rbpoppler-pagetransition.c → rbpoppler-page-transition.c} +2 -3
- data/ext/poppler/rbpoppler-page.c +0 -29
- data/ext/poppler/rbpoppler-private.h +13 -13
- data/ext/poppler/{rbpoppler-psfile.c → rbpoppler-ps-file.c} +2 -3
- data/ext/poppler/{rbpoppler-textfield.c → rbpoppler-text-field.c} +0 -0
- data/ext/poppler/rbpoppler.c +14 -22
- data/ext/poppler/rbpoppler.h +3 -6
- data/ext/poppler/rbpopplerconversions.h +1 -1
- data/lib/1.9/poppler.so +0 -0
- data/lib/2.0/poppler.so +0 -0
- data/sample/pdf2.rb +46 -10
- data/test/fixtures/image.png +0 -0
- data/test/run-test.rb +7 -4
- data/test/test_page.rb +1 -0
- data/vendor/local/bin/cjpeg.exe +0 -0
- data/vendor/local/bin/djpeg.exe +0 -0
- data/vendor/local/bin/jpegtran.exe +0 -0
- data/vendor/local/bin/libjpeg-9.dll +0 -0
- data/vendor/local/bin/libpoppler-44.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-8.dll +0 -0
- data/vendor/local/bin/libsqlite3-0.dll +0 -0
- data/vendor/local/bin/pdfdetach.exe +0 -0
- data/vendor/local/bin/pdffonts.exe +0 -0
- data/vendor/local/bin/pdfimages.exe +0 -0
- data/vendor/local/bin/pdfinfo.exe +0 -0
- data/vendor/local/bin/pdfseparate.exe +0 -0
- data/vendor/local/bin/pdftocairo.exe +0 -0
- data/vendor/local/bin/pdftohtml.exe +0 -0
- data/vendor/local/bin/pdftoppm.exe +0 -0
- data/vendor/local/bin/pdftops.exe +0 -0
- data/vendor/local/bin/pdftotext.exe +0 -0
- data/vendor/local/bin/pdfunite.exe +0 -0
- data/vendor/local/bin/rdjpgcom.exe +0 -0
- data/vendor/local/bin/sqlite3.exe +0 -0
- data/vendor/local/bin/wrjpgcom.exe +0 -0
- data/vendor/local/include/jconfig.h +8 -0
- data/vendor/local/include/jerror.h +2 -2
- data/vendor/local/include/jmorecfg.h +28 -7
- data/vendor/local/include/jpeglib.h +46 -8
- data/vendor/local/include/poppler/glib/poppler-action.h +156 -2
- data/vendor/local/include/poppler/glib/poppler-annot.h +57 -1
- data/vendor/local/include/poppler/glib/poppler-attachment.h +17 -0
- data/vendor/local/include/poppler/glib/poppler-document.h +133 -26
- data/vendor/local/include/poppler/glib/poppler-enums.h +8 -0
- data/vendor/local/include/poppler/glib/poppler-features.h +58 -4
- data/vendor/local/include/poppler/glib/poppler-form-field.h +4 -0
- data/vendor/local/include/poppler/glib/poppler-media.h +73 -0
- data/vendor/local/include/poppler/glib/poppler-movie.h +42 -0
- data/vendor/local/include/poppler/glib/poppler-page.h +133 -44
- data/vendor/local/include/poppler/glib/poppler.h +125 -24
- data/vendor/local/include/sqlite3.h +7338 -0
- data/vendor/local/include/sqlite3ext.h +487 -0
- data/vendor/local/lib/girepository-1.0/Poppler-0.18.typelib +0 -0
- data/vendor/local/lib/libjpeg.a +0 -0
- data/vendor/local/lib/libjpeg.dll.a +0 -0
- data/vendor/local/lib/libjpeg.la +41 -0
- data/vendor/local/lib/libpoppler-glib.a +0 -0
- data/vendor/local/lib/libpoppler-glib.dll.a +0 -0
- data/vendor/local/lib/libpoppler-glib.la +41 -0
- data/vendor/local/lib/libpoppler.a +0 -0
- data/vendor/local/lib/libpoppler.dll.a +0 -0
- data/vendor/local/lib/libpoppler.la +41 -0
- data/vendor/local/lib/libsqlite3.a +0 -0
- data/vendor/local/lib/libsqlite3.dll.a +0 -0
- data/vendor/local/lib/libsqlite3.la +41 -0
- data/vendor/local/lib/pkgconfig/poppler-cairo.pc +9 -0
- data/vendor/local/lib/pkgconfig/poppler-glib.pc +3 -3
- data/vendor/local/lib/pkgconfig/poppler-splash.pc +2 -2
- data/vendor/local/lib/pkgconfig/poppler.pc +1 -1
- data/vendor/local/lib/pkgconfig/sqlite3.pc +13 -0
- data/vendor/local/share/gir-1.0/Poppler-0.18.gir +5452 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAnnot.html +1671 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerAttachment.html +214 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerDocument.html +2587 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerFormField.html +1070 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerLayer.html +228 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMedia.html +306 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerMovie.html +156 -0
- data/vendor/local/share/gtk-doc/html/poppler/PopplerPage.html +2132 -0
- data/vendor/local/share/gtk-doc/html/poppler/annotation-glossary.html +71 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-12.html +128 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-14.html +107 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-16.html +185 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-18.html +77 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-20.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-0-22.html +62 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-deprecated.html +42 -0
- data/vendor/local/share/gtk-doc/html/poppler/api-index-full.html +1352 -0
- data/vendor/local/share/gtk-doc/html/poppler/ch01.html +21 -19
- data/vendor/local/share/gtk-doc/html/poppler/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/index.html +35 -18
- data/vendor/local/share/gtk-doc/html/poppler/index.sgml +548 -300
- data/vendor/local/share/gtk-doc/html/poppler/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-PopplerAction.html +662 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-Version-and-Features-Information.html +145 -0
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler.html +319 -364
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp2 +506 -265
- data/vendor/local/share/gtk-doc/html/poppler/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/poppler/style.css +153 -54
- data/vendor/local/share/gtk-doc/html/poppler/up.png +0 -0
- data/vendor/local/share/license/poppler/AUTHORS +5 -0
- data/vendor/local/share/license/poppler/COPYING +339 -0
- data/vendor/local/share/man/man1/cjpeg.1 +51 -10
- data/vendor/local/share/man/man1/djpeg.1 +5 -4
- data/vendor/local/share/man/man1/jpegtran.1 +15 -2
- data/vendor/local/share/man/man1/pdfdetach.1 +86 -0
- data/vendor/local/share/man/man1/pdffonts.1 +16 -7
- data/vendor/local/share/man/man1/pdfimages.1 +114 -7
- data/vendor/local/share/man/man1/pdfinfo.1 +16 -7
- data/vendor/local/share/man/man1/pdfseparate.1 +49 -0
- data/vendor/local/share/man/man1/pdftocairo.1 +266 -0
- data/vendor/local/share/man/man1/pdftohtml.1 +30 -8
- data/vendor/local/share/man/man1/pdftoppm.1 +42 -12
- data/vendor/local/share/man/man1/pdftops.1 +26 -10
- data/vendor/local/share/man/man1/pdftotext.1 +18 -7
- data/vendor/local/share/man/man1/pdfunite.1 +33 -0
- data/vendor/local/share/man/man1/sqlite3.1 +229 -0
- metadata +107 -64
- data/vendor/local/bin/libgcc_s_dw2-1.dll +0 -0
- data/vendor/local/bin/libjpeg-7.dll +0 -0
- data/vendor/local/bin/libpng12-0.dll +0 -0
- data/vendor/local/bin/libpoppler-5.dll +0 -0
- data/vendor/local/bin/libpoppler-glib-4.dll +0 -0
- data/vendor/local/include/libpng12/png.h +0 -3726
- data/vendor/local/include/libpng12/pngconf.h +0 -1508
- data/vendor/local/include/png.h +0 -3726
- data/vendor/local/include/pngconf.h +0 -1508
- data/vendor/local/lib/libpng.def +0 -366
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng12.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng12.pc +0 -11
- data/vendor/local/manifest/jpeg-dev_7-1_win32.mft +0 -18
- data/vendor/local/manifest/jpeg_7-1_win32.mft +0 -2
- data/vendor/local/manifest/libpng-dev_1.2.40-1_win32.mft +0 -15
- data/vendor/local/manifest/libpng_1.2.40-1_win32.mft +0 -2
- data/vendor/local/manifest/poppler-dev_0.12.0-1_win32.mft +0 -49
- data/vendor/local/manifest/poppler_0.12.0-1_win32.mft +0 -4
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-action.html +0 -386
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-annot.html +0 -854
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-attachment.html +0 -205
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-document.html +0 -1122
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-enums.html +0 -412
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-features.html +0 -143
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-form-field.html +0 -871
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-layer.html +0 -214
- data/vendor/local/share/gtk-doc/html/poppler/poppler-poppler-page.html +0 -1258
- data/vendor/local/share/gtk-doc/html/poppler/poppler.devhelp +0 -281
- data/vendor/local/share/man/man3/libpng.3 +0 -4349
- data/vendor/local/share/man/man3/libpngpf.3 +0 -790
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.log +0 -249
- data/vendor/local/src/tml/packaging/jpeg_7-1_win32.sh +0 -44
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.log +0 -269
- data/vendor/local/src/tml/packaging/libpng_1.2.40-1_win32.sh +0 -63
@@ -1,4 +1,4 @@
|
|
1
|
-
.TH CJPEG 1 "
|
1
|
+
.TH CJPEG 1 "4 May 2012"
|
2
2
|
.SH NAME
|
3
3
|
cjpeg \- compress an image file to a JPEG file
|
4
4
|
.SH SYNOPSIS
|
@@ -49,6 +49,17 @@ By saying
|
|
49
49
|
.BR \-grayscale ,
|
50
50
|
you'll get a smaller JPEG file that takes less time to process.
|
51
51
|
.TP
|
52
|
+
.B \-rgb
|
53
|
+
Create RGB JPEG file.
|
54
|
+
Using this switch suppresses the conversion from RGB
|
55
|
+
colorspace input to the default YCbCr JPEG colorspace.
|
56
|
+
You can use this switch in combination with the
|
57
|
+
.BI \-block " N"
|
58
|
+
switch (see below) for lossless JPEG coding.
|
59
|
+
See also the
|
60
|
+
.B \-rgb1
|
61
|
+
switch below.
|
62
|
+
.TP
|
52
63
|
.B \-optimize
|
53
64
|
Perform optimization of entropy encoding parameters. Without this, default
|
54
65
|
encoding parameters are used.
|
@@ -64,7 +75,10 @@ Create progressive JPEG file (see below).
|
|
64
75
|
.TP
|
65
76
|
.BI \-scale " M/N"
|
66
77
|
Scale the output image by a factor M/N. Currently supported scale factors are
|
67
|
-
|
78
|
+
M/N with all N from 1 to 16, where M is the destination DCT size, which is 8
|
79
|
+
by default (see
|
80
|
+
.BI \-block " N"
|
81
|
+
switch below).
|
68
82
|
.TP
|
69
83
|
.B \-targa
|
70
84
|
Input file is Targa format. Targa files that contain an "identification"
|
@@ -135,7 +149,7 @@ and assigned to components with
|
|
135
149
|
.B \-qslots
|
136
150
|
parameter (see the "wizard" switches below).
|
137
151
|
.B Caution:
|
138
|
-
You must
|
152
|
+
You must explicitly add
|
139
153
|
.BI \-sample " 1x1"
|
140
154
|
for efficient separate color
|
141
155
|
quality selection, since the default value used by library is 2x2!
|
@@ -152,6 +166,39 @@ about the same --- often a little smaller.
|
|
152
166
|
.PP
|
153
167
|
Switches for advanced users:
|
154
168
|
.TP
|
169
|
+
.B \-arithmetic
|
170
|
+
Use arithmetic coding.
|
171
|
+
.B Caution:
|
172
|
+
arithmetic coded JPEG is not yet widely implemented, so many decoders will
|
173
|
+
be unable to view an arithmetic coded JPEG file at all.
|
174
|
+
.TP
|
175
|
+
.BI \-block " N"
|
176
|
+
Set DCT block size. All N from 1 to 16 are possible.
|
177
|
+
Default is 8 (baseline format).
|
178
|
+
Larger values produce higher compression,
|
179
|
+
smaller values produce higher quality
|
180
|
+
(exact DCT stage possible with 1 or 2; with the default quality of 75 and
|
181
|
+
default Luminance qtable the DCT+Quantization stage is lossless for N=1).
|
182
|
+
.B Caution:
|
183
|
+
An implementation of the JPEG SmartScale extension is required for this
|
184
|
+
feature. SmartScale enabled JPEG is not yet widely implemented, so many
|
185
|
+
decoders will be unable to view a SmartScale extended JPEG file at all.
|
186
|
+
.TP
|
187
|
+
.B \-rgb1
|
188
|
+
Create RGB JPEG file with reversible color transform.
|
189
|
+
Works like the
|
190
|
+
.B \-rgb
|
191
|
+
switch (see above) and inserts a simple reversible color transform
|
192
|
+
into the processing which significantly improves the compression.
|
193
|
+
Use this switch in combination with the
|
194
|
+
.BI \-block " N"
|
195
|
+
switch (see above) for lossless JPEG coding.
|
196
|
+
.B Caution:
|
197
|
+
A decoder with inverse color transform support is required for
|
198
|
+
this feature. Reversible color transform support is not yet
|
199
|
+
widely implemented, so many decoders will be unable to view
|
200
|
+
a reversible color transformed JPEG file at all.
|
201
|
+
.TP
|
155
202
|
.B \-dct int
|
156
203
|
Use integer DCT method (default).
|
157
204
|
.TP
|
@@ -219,12 +266,6 @@ visibly blur the image, however.
|
|
219
266
|
.PP
|
220
267
|
Switches for wizards:
|
221
268
|
.TP
|
222
|
-
.B \-arithmetic
|
223
|
-
Use arithmetic coding.
|
224
|
-
.B Caution:
|
225
|
-
arithmetic coded JPEG is not yet widely implemented, so many decoders will be
|
226
|
-
unable to view an arithmetic coded JPEG file at all.
|
227
|
-
.TP
|
228
269
|
.B \-baseline
|
229
270
|
Force baseline-compatible quantization tables to be generated. This clamps
|
230
271
|
quantization values to 8 bits even at low quality settings. (This switch is
|
@@ -322,4 +363,4 @@ Not all variants of BMP and Targa file formats are supported.
|
|
322
363
|
The
|
323
364
|
.B \-targa
|
324
365
|
switch is not a bug, it's a feature. (It would be a bug if the Targa format
|
325
|
-
designers had not been clueless.)
|
366
|
+
designers had not been clueless.)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.TH DJPEG 1 "
|
1
|
+
.TH DJPEG 1 "3 October 2009"
|
2
2
|
.SH NAME
|
3
3
|
djpeg \- decompress a JPEG file to an image file
|
4
4
|
.SH SYNOPSIS
|
@@ -62,9 +62,10 @@ runs noticeably faster in this mode.
|
|
62
62
|
.TP
|
63
63
|
.BI \-scale " M/N"
|
64
64
|
Scale the output image by a factor M/N. Currently supported scale factors are
|
65
|
-
M/
|
66
|
-
|
67
|
-
|
65
|
+
M/N with all M from 1 to 16, where N is the source DCT size, which is 8 for
|
66
|
+
baseline JPEG. If the /N part is omitted, then M specifies the DCT scaled
|
67
|
+
size to be applied on the given input. For baseline JPEG this is equivalent
|
68
|
+
to M/8 scaling, since the source DCT size for baseline JPEG is 8.
|
68
69
|
Scaling is handy if the image is larger than your screen; also,
|
69
70
|
.B djpeg
|
70
71
|
runs much faster when scaling down the output.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.TH JPEGTRAN 1 "28
|
1
|
+
.TH JPEGTRAN 1 "28 December 2009"
|
2
2
|
.SH NAME
|
3
3
|
jpegtran \- lossless transformation of JPEG files
|
4
4
|
.SH SYNOPSIS
|
@@ -165,7 +165,7 @@ The image can be losslessly cropped by giving the switch:
|
|
165
165
|
.B \-crop WxH+X+Y
|
166
166
|
Crop to a rectangular subarea of width W, height H starting at point X,Y.
|
167
167
|
.PP
|
168
|
-
|
168
|
+
Other not-strictly-lossless transformation switches are:
|
169
169
|
.TP
|
170
170
|
.B \-grayscale
|
171
171
|
Force grayscale output.
|
@@ -178,6 +178,19 @@ is particularly handy for fixing a monochrome picture that was mistakenly
|
|
178
178
|
encoded as a color JPEG. (In such a case, the space savings from getting rid
|
179
179
|
of the near-empty chroma channels won't be large; but the decoding time for
|
180
180
|
a grayscale JPEG is substantially less than that for a color JPEG.)
|
181
|
+
.TP
|
182
|
+
.BI \-scale " M/N"
|
183
|
+
Scale the output image by a factor M/N.
|
184
|
+
.IP
|
185
|
+
Currently supported scale factors are M/N with all M from 1 to 16, where N is
|
186
|
+
the source DCT size, which is 8 for baseline JPEG. If the /N part is omitted,
|
187
|
+
then M specifies the DCT scaled size to be applied on the given input. For
|
188
|
+
baseline JPEG this is equivalent to M/8 scaling, since the source DCT size
|
189
|
+
for baseline JPEG is 8.
|
190
|
+
.B Caution:
|
191
|
+
An implementation of the JPEG SmartScale extension is required for this
|
192
|
+
feature. SmartScale enabled JPEG is not yet widely implemented, so many
|
193
|
+
decoders will be unable to view a SmartScale extended JPEG file at all.
|
181
194
|
.PP
|
182
195
|
.B jpegtran
|
183
196
|
also recognizes these switches that control what to do with "extra" markers,
|
@@ -0,0 +1,86 @@
|
|
1
|
+
.\" Copyright 2011 Glyph & Cog, LLC
|
2
|
+
.TH pdfdetach 1 "15 August 2011"
|
3
|
+
.SH NAME
|
4
|
+
pdfdetach \- Portable Document Format (PDF) document embedded file
|
5
|
+
extractor (version 3.03)
|
6
|
+
.SH SYNOPSIS
|
7
|
+
.B pdfdetach
|
8
|
+
[options]
|
9
|
+
.RI [ PDF-file ]
|
10
|
+
.SH DESCRIPTION
|
11
|
+
.B Pdfdetach
|
12
|
+
lists or extracts embedded files (attachments) from a Portable
|
13
|
+
Document Format (PDF) file.
|
14
|
+
.SH OPTIONS
|
15
|
+
Some of the following options can be set with configuration file
|
16
|
+
commands. These are listed in square brackets with the description of
|
17
|
+
the corresponding command line option.
|
18
|
+
.TP
|
19
|
+
.B \-list
|
20
|
+
List all of the embedded files in the PDF file. File names are
|
21
|
+
converted to the text encoding specified by the "\-enc" switch.
|
22
|
+
.TP
|
23
|
+
.BI \-save " number"
|
24
|
+
Save the specified embedded file. By default, this uses the file name
|
25
|
+
associated with the embedded file (as printed by the "\-list" switch);
|
26
|
+
the file name can be changed with the "\-o" switch.
|
27
|
+
.TP
|
28
|
+
.BI \-saveall
|
29
|
+
Save all of the embedded files. This uses the file names associated
|
30
|
+
with the embedded files (as printed by the "\-list" switch). By
|
31
|
+
default, the files are saved in the current directory; this can be
|
32
|
+
changed with the "\-o" switch.
|
33
|
+
.TP
|
34
|
+
.BI \-o " path"
|
35
|
+
Set the file name used when saving an embedded file with the "\-save"
|
36
|
+
switch, or the directory used by "\-saveall".
|
37
|
+
.TP
|
38
|
+
.BI \-enc " encoding-name"
|
39
|
+
Sets the encoding to use for text output (embedded file names).
|
40
|
+
This defaults to "UTF-8".
|
41
|
+
.TP
|
42
|
+
.BI \-opw " password"
|
43
|
+
Specify the owner password for the PDF file. Providing this will
|
44
|
+
bypass all security restrictions.
|
45
|
+
.TP
|
46
|
+
.BI \-upw " password"
|
47
|
+
Specify the user password for the PDF file.
|
48
|
+
.TP
|
49
|
+
.B \-v
|
50
|
+
Print copyright and version information.
|
51
|
+
.TP
|
52
|
+
.B \-h
|
53
|
+
Print usage information.
|
54
|
+
.RB ( \-help
|
55
|
+
and
|
56
|
+
.B \-\-help
|
57
|
+
are equivalent.)
|
58
|
+
.SH EXIT CODES
|
59
|
+
The Xpdf tools use the following exit codes:
|
60
|
+
.TP
|
61
|
+
0
|
62
|
+
No error.
|
63
|
+
.TP
|
64
|
+
1
|
65
|
+
Error opening a PDF file.
|
66
|
+
.TP
|
67
|
+
2
|
68
|
+
Error opening an output file.
|
69
|
+
.TP
|
70
|
+
3
|
71
|
+
Error related to PDF permissions.
|
72
|
+
.TP
|
73
|
+
99
|
74
|
+
Other error.
|
75
|
+
.SH AUTHOR
|
76
|
+
The pdfinfo software and documentation are copyright 1996-2011 Glyph &
|
77
|
+
Cog, LLC.
|
78
|
+
.SH "SEE ALSO"
|
79
|
+
.BR pdfimages (1),
|
80
|
+
.BR pdffonts (1),
|
81
|
+
.BR pdfinfo (1),
|
82
|
+
.BR pdftocairo (1),
|
83
|
+
.BR pdftohtml (1),
|
84
|
+
.BR pdftoppm (1),
|
85
|
+
.BR pdftops (1),
|
86
|
+
.BR pdftotext (1)
|
@@ -1,8 +1,8 @@
|
|
1
|
-
.\" Copyright 1999-
|
2
|
-
.TH pdffonts 1 "
|
1
|
+
.\" Copyright 1999-2011 Glyph & Cog, LLC
|
2
|
+
.TH pdffonts 1 "15 August 2011"
|
3
3
|
.SH NAME
|
4
4
|
pdffonts \- Portable Document Format (PDF) font analyzer (version
|
5
|
-
3.
|
5
|
+
3.03)
|
6
6
|
.SH SYNOPSIS
|
7
7
|
.B pdffonts
|
8
8
|
[options]
|
@@ -21,6 +21,9 @@ a subset prefix)
|
|
21
21
|
.B type
|
22
22
|
the font type -- see below for details
|
23
23
|
.TP
|
24
|
+
.B encoding
|
25
|
+
the font encoding
|
26
|
+
.TP
|
24
27
|
.B emb
|
25
28
|
"yes" if the font is embedded in the PDF file
|
26
29
|
.TP
|
@@ -66,6 +69,9 @@ Specifies the first page to analyze.
|
|
66
69
|
.BI \-l " number"
|
67
70
|
Specifies the last page to analyze.
|
68
71
|
.TP
|
72
|
+
.BI \-subst
|
73
|
+
List the substitute fonts that poppler will use for non embedded fonts.
|
74
|
+
.TP
|
69
75
|
.BI \-opw " password"
|
70
76
|
Specify the owner password for the PDF file. Providing this will
|
71
77
|
bypass all security restrictions.
|
@@ -100,11 +106,14 @@ Error related to PDF permissions.
|
|
100
106
|
99
|
101
107
|
Other error.
|
102
108
|
.SH AUTHOR
|
103
|
-
The pdffonts software and documentation are copyright 1996-
|
109
|
+
The pdffonts software and documentation are copyright 1996-2011 Glyph
|
104
110
|
& Cog, LLC.
|
105
111
|
.SH "SEE ALSO"
|
106
|
-
.BR
|
107
|
-
.BR
|
112
|
+
.BR pdfdetach (1),
|
113
|
+
.BR pdfimages (1),
|
108
114
|
.BR pdfinfo (1),
|
115
|
+
.BR pdftocairo (1),
|
116
|
+
.BR pdftohtml (1),
|
109
117
|
.BR pdftoppm (1),
|
110
|
-
.BR
|
118
|
+
.BR pdftops (1),
|
119
|
+
.BR pdftotext (1)
|
@@ -1,8 +1,8 @@
|
|
1
|
-
.\" Copyright 1998-
|
2
|
-
.TH pdfimages 1 "
|
1
|
+
.\" Copyright 1998-2011 Glyph & Cog, LLC
|
2
|
+
.TH pdfimages 1 "15 August 2011"
|
3
3
|
.SH NAME
|
4
4
|
pdfimages \- Portable Document Format (PDF) image extractor
|
5
|
-
(version 3.
|
5
|
+
(version 3.03)
|
6
6
|
.SH SYNOPSIS
|
7
7
|
.B pdfimages
|
8
8
|
[options]
|
@@ -35,6 +35,107 @@ Normally, all images are written as PBM (for monochrome images) or PPM
|
|
35
35
|
format are saved as JPEG files. All non-DCT images are saved in
|
36
36
|
PBM/PPM format as usual.
|
37
37
|
.TP
|
38
|
+
.B \-list
|
39
|
+
Instead of writing the images, list the images along with various information for each image. Do not specify an
|
40
|
+
.IR image-root
|
41
|
+
with this option.
|
42
|
+
.IP
|
43
|
+
The following information is listed for each image:
|
44
|
+
.RS
|
45
|
+
.TP
|
46
|
+
.B page
|
47
|
+
the page number containing the image
|
48
|
+
.TP
|
49
|
+
.B num
|
50
|
+
the image number
|
51
|
+
.TP
|
52
|
+
.B type
|
53
|
+
the image type:
|
54
|
+
.PP
|
55
|
+
.RS
|
56
|
+
image - an opaque image
|
57
|
+
.RE
|
58
|
+
.RS
|
59
|
+
mask - a monochrome mask image
|
60
|
+
.RE
|
61
|
+
.RS
|
62
|
+
smask - a soft-mask image
|
63
|
+
.RE
|
64
|
+
.RS
|
65
|
+
stencil - a monochrome mask image used for painting a color or pattern
|
66
|
+
.RE
|
67
|
+
.PP
|
68
|
+
Note: Tranparency in images is represented in PDF using a separate image for the image and the mask/smask.
|
69
|
+
The mask/smask used as part of a transparent image always immediately follows the image in the image list.
|
70
|
+
.TP
|
71
|
+
.B width
|
72
|
+
image width (in pixels)
|
73
|
+
.TP
|
74
|
+
.B height
|
75
|
+
image height (in pixels)
|
76
|
+
.PP
|
77
|
+
Note: the image width/height is the size of the embedded image, not the size the image will be rendered at.
|
78
|
+
.TP
|
79
|
+
.B color
|
80
|
+
image color space:
|
81
|
+
.PP
|
82
|
+
.RS
|
83
|
+
gray - Gray
|
84
|
+
.RE
|
85
|
+
.RS
|
86
|
+
rgb - RGB
|
87
|
+
.RE
|
88
|
+
.RS
|
89
|
+
cmyk - CMYK
|
90
|
+
.RE
|
91
|
+
.RS
|
92
|
+
lab - L*a*b
|
93
|
+
.RE
|
94
|
+
.RS
|
95
|
+
icc - ICC Based
|
96
|
+
.RE
|
97
|
+
.RS
|
98
|
+
index - Indexed Color
|
99
|
+
.RE
|
100
|
+
.RS
|
101
|
+
sep - Separation
|
102
|
+
.RE
|
103
|
+
.RS
|
104
|
+
devn - DeviceN
|
105
|
+
.RE
|
106
|
+
.TP
|
107
|
+
.B comp
|
108
|
+
number of color components
|
109
|
+
.TP
|
110
|
+
.B bpc
|
111
|
+
bits per component
|
112
|
+
.TP
|
113
|
+
.B enc
|
114
|
+
encoding:
|
115
|
+
.PP
|
116
|
+
.RS
|
117
|
+
image - raster image (may be Flate or LZW compressed but does not use an image encoding)
|
118
|
+
.RE
|
119
|
+
.RS
|
120
|
+
jpeg - Joint Photographic Experts Group
|
121
|
+
.RE
|
122
|
+
.RS
|
123
|
+
jp2 - JPEG2000
|
124
|
+
.RE
|
125
|
+
.RS
|
126
|
+
jbig2 - Joint Bi-Level Image Experts Group
|
127
|
+
.RE
|
128
|
+
.RS
|
129
|
+
ccitt - CCITT Group 3 or Group 4 Fax
|
130
|
+
.RE
|
131
|
+
.TP
|
132
|
+
.B interp
|
133
|
+
"yes" if the interpolation is to be performed when scaling up the image
|
134
|
+
.TP
|
135
|
+
.B object ID
|
136
|
+
the image dictionary object ID (number and generation)
|
137
|
+
.RE
|
138
|
+
.TP
|
38
139
|
.BI \-opw " password"
|
39
140
|
Specify the owner password for the PDF file. Providing this will
|
40
141
|
bypass all security restrictions.
|
@@ -42,6 +143,9 @@ bypass all security restrictions.
|
|
42
143
|
.BI \-upw " password"
|
43
144
|
Specify the user password for the PDF file.
|
44
145
|
.TP
|
146
|
+
.B \-p
|
147
|
+
Include page numbers in output file names.
|
148
|
+
.TP
|
45
149
|
.B \-q
|
46
150
|
Don't print any messages or errors.
|
47
151
|
.TP
|
@@ -72,11 +176,14 @@ Error related to PDF permissions.
|
|
72
176
|
99
|
73
177
|
Other error.
|
74
178
|
.SH AUTHOR
|
75
|
-
The pdfimages software and documentation are copyright 1998-
|
179
|
+
The pdfimages software and documentation are copyright 1998-2011 Glyph
|
76
180
|
& Cog, LLC.
|
77
181
|
.SH "SEE ALSO"
|
78
|
-
.BR
|
79
|
-
.BR pdftotext (1),
|
80
|
-
.BR pdfinfo (1),
|
182
|
+
.BR pdfdetach (1)
|
81
183
|
.BR pdffonts (1),
|
184
|
+
.BR pdfinfo (1),
|
185
|
+
.BR pdftocairo (1),
|
186
|
+
.BR pdftohtml (1),
|
82
187
|
.BR pdftoppm (1),
|
188
|
+
.BR pdftops (1),
|
189
|
+
.BR pdftotext (1)
|
@@ -1,8 +1,8 @@
|
|
1
|
-
.\" Copyright 1999-
|
2
|
-
.TH pdfinfo 1 "
|
1
|
+
.\" Copyright 1999-2011 Glyph & Cog, LLC
|
2
|
+
.TH pdfinfo 1 "15 August 2011"
|
3
3
|
.SH NAME
|
4
4
|
pdfinfo \- Portable Document Format (PDF) document information
|
5
|
-
extractor (version 3.
|
5
|
+
extractor (version 3.03)
|
6
6
|
.SH SYNOPSIS
|
7
7
|
.B pdfinfo
|
8
8
|
[options]
|
@@ -45,6 +45,9 @@ In addition, the following information is printed:
|
|
45
45
|
tagged (yes/no)
|
46
46
|
.RE
|
47
47
|
.RS
|
48
|
+
form (AcroForm / XFA / none)
|
49
|
+
.RE
|
50
|
+
.RS
|
48
51
|
page count
|
49
52
|
.RE
|
50
53
|
.RS
|
@@ -87,6 +90,9 @@ TrimBox, and ArtBox.
|
|
87
90
|
Prints document-level metadata. (This is the "Metadata" stream from
|
88
91
|
the PDF file's Catalog object.)
|
89
92
|
.TP
|
93
|
+
.B \-rawdates
|
94
|
+
Prints the raw (undecoded) date strings, directly from the PDF file.
|
95
|
+
.TP
|
90
96
|
.BI \-enc " encoding-name"
|
91
97
|
Sets the encoding to use for text output. This defaults to "UTF-8".
|
92
98
|
.TP
|
@@ -127,11 +133,14 @@ Error related to PDF permissions.
|
|
127
133
|
99
|
128
134
|
Other error.
|
129
135
|
.SH AUTHOR
|
130
|
-
The pdfinfo software and documentation are copyright 1996-
|
136
|
+
The pdfinfo software and documentation are copyright 1996-2011 Glyph &
|
131
137
|
Cog, LLC.
|
132
138
|
.SH "SEE ALSO"
|
133
|
-
.BR
|
134
|
-
.BR pdftotext (1),
|
139
|
+
.BR pdfdetach (1),
|
135
140
|
.BR pdffonts (1),
|
136
|
-
.BR pdftoppm (1),
|
137
141
|
.BR pdfimages (1),
|
142
|
+
.BR pdftocairo (1),
|
143
|
+
.BR pdftohtml (1),
|
144
|
+
.BR pdftoppm (1),
|
145
|
+
.BR pdftops (1),
|
146
|
+
.BR pdftotext (1)
|