source: gs2-extensions/parallel-building/trunk/src/perllib/cpan/Image/ExifTool/Charset/PDFDoc.pm@ 24626

Last change on this file since 24626 was 24626, checked in by jmt12, 13 years ago

An (almost) complete copy of the perllib directory from a (circa SEP2011) head checkout from Greenstone 2 trunk - in order to try and make merging in this extension a little easier later on (as there have been some major changes to buildcol.pl commited in the main trunk but not in the x64 branch)

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1#------------------------------------------------------------------------------
2# File: PDFDoc.pm
3#
4# Description: PDFDocEncoding to Unicode
5#
6# Revisions: 2010/10/16 - P. Harvey created
7#
8# References: 1) http://www.adobe.com/devnet/pdf/pdf_reference.html
9#
10# Notes: The table omits 1-byte characters with the same values as Unicode
11# This set re-maps characters with codepoints less than 0x80
12#------------------------------------------------------------------------------
13use strict;
14
15%Image::ExifTool::Charset::PDFDoc = (
16 0x18 => 0x02d8, 0x82 => 0x2021, 0x8c => 0x201e, 0x96 => 0x0152,
17 0x19 => 0x02c7, 0x83 => 0x2026, 0x8d => 0x201c, 0x97 => 0x0160,
18 0x1a => 0x02c6, 0x84 => 0x2014, 0x8e => 0x201d, 0x98 => 0x0178,
19 0x1b => 0x02d9, 0x85 => 0x2013, 0x8f => 0x2018, 0x99 => 0x017d,
20 0x1c => 0x02dd, 0x86 => 0x0192, 0x90 => 0x2019, 0x9a => 0x0131,
21 0x1d => 0x02db, 0x87 => 0x2044, 0x91 => 0x201a, 0x9b => 0x0142,
22 0x1e => 0x02da, 0x88 => 0x2039, 0x92 => 0x2122, 0x9c => 0x0153,
23 0x1f => 0x02dc, 0x89 => 0x203a, 0x93 => 0xfb01, 0x9d => 0x0161,
24 0x80 => 0x2022, 0x8a => 0x2212, 0x94 => 0xfb02, 0x9e => 0x017e,
25 0x81 => 0x2020, 0x8b => 0x2030, 0x95 => 0x0141, 0xa0 => 0x20ac,
26);
27
281; # end
Note: See TracBrowser for help on using the repository browser.