Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432699
retrieveMetaData.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
retrieveMetaData.sh
View Options
#!/bin/sh
# Get parameters from environment
export
PDFHANDLER_INFO
=
"
${
PDFHANDLER_INFO
:-
pdfinfo
}
"
export
PDFHANDLER_TOTEXT
=
"
${
PDFHANDLER_TOTEXT
:-
pdftotext
}
"
runInfo
()
{
# Note in poppler 0.26 the -meta and page data options worked together,
# but as of poppler 0.48 they must be queried separately.
# https://bugs.freedesktop.org/show_bug.cgi?id=96801
# Report metadata as UTF-8 text...and report XMP metadata
"
$PDFHANDLER_INFO
"
\
-enc
'UTF-8'
\
-meta
\
file.pdf
1
>
meta
# Check for errors and forward them
if
[
$?
-ne
0
]
;
then
exit
1
;
fi
# Report metadata as UTF-8 text...and report page sizes for all pages
"
$PDFHANDLER_INFO
"
\
-enc
'UTF-8'
\
-l
9999999
\
file.pdf
1
>
pages
# Check for errors and forward them
if
[
$?
-ne
0
]
;
then
exit
1
;
fi
}
runToText
()
{
# CropBox defines the region that the PDF viewer application is expected to display or print.
# pdftotext's -cropbox was only introduced in poppler 21.03.0
# It also only works with -bbox so we cannot use it.
# Some text that is not visible in the PDF might thus be included in the output
"
$PDFHANDLER_TOTEXT
"
\
file.pdf
-
>
text
# Store exit code so we can use it later
echo
$?
>
text_exit_code
}
if
[
-x
"
$(
command
-v
$PDFHANDLER_INFO
)
"
]
;
then
runInfo
fi
if
[
-x
"
$(
command
-v
$PDFHANDLER_TOTEXT
)
"
]
;
then
runToText
fi
File Metadata
Details
Attached
Mime Type
text/x-shellscript
Expires
Sat, May 16, 22:12 (1 d, 3 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
58/5d/9d1e263db058498f21b237a958dd
Default Alt Text
retrieveMetaData.sh (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment