]> git.ipfire.org Git - thirdparty/cups.git/blame - examples/grouping.drv
Changelog.
[thirdparty/cups.git] / examples / grouping.drv
CommitLineData
ab798324 1// Include standard font and media definitions
2#include <font.defs>
3#include <media.defs>
4
5// List the fonts that are supported, in this case all standard
6// fonts...
7Font *
8
9// Manufacturer and version
10Manufacturer "Foo"
11Version 1.0
12
13// Each filter provided by the driver...
14Filter application/vnd.cups-raster 100 rastertofoo
15
16// Supported page sizes
17*MediaSize Letter
18MediaSize A4
19
20{
21 // Supported resolutions
22 *Resolution k 8 0 0 0 "600dpi/600 DPI"
23
24 // Specify the model name and filename...
25 ModelName "FooJet 2000"
26 PCFileName "foojet2k.ppd"
27}
28
29{
30 // Supported resolutions
31 *Resolution k 8 0 0 0 "1200dpi/1200 DPI"
32
33 // Specify the model name and filename...
34 ModelName "FooJet 2001"
35 PCFileName "foojt2k1.ppd"
36}