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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/* This is DVIPDFMx, an eXtended version of DVIPDFM by Mark A. Wicks.
Copyright (C) 2002-2018 by Jin-Hwan Cho and Shunsaku Hirata,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by Mark A. Wicks <mwicks@kettering.edu>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "system.h"
#include "error.h"
#include "mem.h"
#include "dpxconf.h"
struct _dpx_conf dpx_conf = {0, dpx_mode_normal_mode, 0, {0}};
#ifndef HAVE_LIBPAPER
const struct paper paperspecs[] = {
{"letter", 612.00, 792.00},
{"legal" , 612.00, 1008.00},
{"ledger", 1224.00, 792.00},
{"tabloid", 792.00, 1224.00},
{"a6", 297.638, 419.528},
{"a5", 419.528, 595.276},
{"a4", 595.276, 841.890},
{"a3", 841.890, 1190.550},
/*
* The B series paper formats were first introduced in Japanese
* patch (jpatch). The size of b6, ..., b5var paper is JIS paper
* size for this reason. Please modify the following line or use
* libpaper if you need ISO paper sizes.
*/
#if defined(USE_ISO_PAPERSIZE) || defined(ISO_PAPERSIZE)
{"b6", 354.331, 498.898},
{"b5", 498.898, 708.661},
{"b4", 708.661, 1000.630},
{"b3", 1000.630, 1417.320},
#else
{"b6", 364.25, 515.91},
{"b5", 515.91, 728.50},
{"b4", 728.50, 1031.81},
{"b3", 1031.81, 1457.00},
{"b5var", 515.91, 651.97},
#endif /* USE_ISO_PAPERSIZE */
/* Alias for JIS and ISO */
{"jisb6", 364.25, 515.91},
{"jisb5", 515.91, 728.50},
{"jisb4", 728.50, 1031.81},
{"jisb3", 1031.81, 1457.00},
{"isob6", 354.331, 498.898},
{"isob5", 498.898, 708.661},
{"isob4", 708.661, 1000.630},
{"isob3", 1000.630, 1417.320},
/* -- */
{NULL, 0, 0},
};
const struct paper *
paperinfo (const char *ppformat)
{
const struct paper *ppinfo;
if (!ppformat)
return NULL;
ppinfo = paperfirst();
while (ppinfo && papername(ppinfo)) {
if (!strcmp(ppformat, ppinfo->name))
/* ppinfo->name == papername(ppinfo), but gcc doesn't like the latter */
break;
ppinfo = papernext(ppinfo);
}
return ((ppinfo && papername(ppinfo)) ? ppinfo : NULL);
}
#endif /* HAVE_LIBPAPER */
void
dumppaperinfo (void)
{
const struct paper *ppinfo;
ppinfo = paperfirst();
while (ppinfo && papername(ppinfo)) {
double wd, ht;
wd = paperpswidth (ppinfo);
ht = paperpsheight(ppinfo);
fprintf(stdout, "%s: %.2f %.2f (%.2fmm %.2fmm)\n",
papername(ppinfo), wd, ht, 25.4 * wd / 72.0, 25.4 * ht / 72.0);
ppinfo = papernext(ppinfo);
}
}
|