-
Notifications
You must be signed in to change notification settings - Fork 1
/
dptrp1.drv
49 lines (38 loc) · 962 Bytes
/
dptrp1.drv
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
// Include standard font and media definitions
#include <font.defs>
#include <media.defs>
// List the fonts that are supported, in this case all standard fonts...
Font *
// Manufacturer, model name, and version
Manufacturer "Sony"
Version 1.0
// Each filter provided by the driver...
Filter application/pdf 0 -
{
// DPT-RP1
ModelName "DPT-RP1"
#media "DPTRP1" 202mm 270mm
// Supported page sizes
*MediaSize A4
MediaSize A5
MediaSize Letter
MediaSize DPTRP1
// Supported resolutions
*Resolution k 8 0 0 0 "207dpi/207 DPI"
// Specify the name of the PPD file we want to generate...
PCFileName "dptrp1.ppd"
}
{
// DPT-CP1
ModelName "DPT-CP1"
#media "DPTCP1" 172mm 230mm
// Supported page sizes
MediaSize A4
*MediaSize A5
MediaSize Letter
MediaSize DPTCP1
// Supported resolutions
*Resolution k 8 0 0 0 "227dpi/227 DPI"
// Specify the name of the PPD file we want to generate...
PCFileName "dptcp1.ppd"
}