File: pxl_mediasize.h

package info (click to toggle)
pxljr 1.4%2Brepack0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 352 kB
  • sloc: ansic: 1,968; sh: 105; perl: 54; makefile: 36; python: 8
file content (58 lines) | stat: -rw-r--r-- 1,923 bytes parent folder | download | duplicates (4)
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
/**
 * Copyright (c) 2005 Hin-Tak Leung. All rights reserved.
 *
 **/
/*
    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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/
/**
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 **/

/* PCL XL paper codes */
typedef enum {
eDefault        = 96, 
eLetterPaper    = 0, 
eLegalPaper     = 1, 
eA4Paper        = 2,
eExecPaper      = 3, 
eLedgerPaper    = 4, 
eA3Paper        = 5, 
eCOM10Envelope  = 6, 
eMonarchEnvelope= 7, 
eC5Envelope     = 8, 
eDLEnvelope     = 9, 
eJB4Paper       = 10, 
eJB5Paper       = 11, 
eB5Paper        = 13,
eB5Envelope     = 12, 
eJPostcard      = 14, 
eJDoublePostcard= 15,
eA5Paper        = 16, 
eA6Paper        = 17, 
eJB6Paper        = 18, 
eJIS8K          = 19,
eJIS16K         = 20, 
eJISExec        = 21
} MediaSize;

unsigned char mediasize2pxlenum(int pixel_h, int pixel_v);