source: npl/fileserver/samba_conf/root/home/system/cups/mime.convs.new

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 4.5 KB
Line 
1#
2# "$Id: mime.convs.new 238 2004-10-28 12:05:20Z ronnie $"
3#
4#   MIME converts file for the Common UNIX Printing System (CUPS).
5#
6#   Copyright 1997-2004 by Easy Software Products.
7#
8#   These coded instructions, statements, and computer programs are the
9#   property of Easy Software Products and are protected by Federal
10#   copyright law.  Distribution and use rights are outlined in the file
11#   "LICENSE.txt" which should have been included with this file.  If this
12#   file is missing or damaged please contact Easy Software Products
13#   at:
14#
15#       Attn: CUPS Licensing Information
16#       Easy Software Products
17#       44141 Airport View Drive, Suite 204
18#       Hollywood, Maryland 20636-3111 USA
19#
20#       Voice: (301) 373-9603
21#       EMail: cups-info@cups.org
22#         WWW: http://www.cups.org
23#
24
25########################################################################
26#
27# Format of Lines:
28#
29#   source/type destination/type cost filter
30#
31# General Notes:
32#
33#   The "cost" field is used to find the least costly filters to run
34#   when converting a job file to a printable format.
35#
36#   All filters *must* accept the standard command-line arguments
37#   (job-id, user, title, copies, options, [filename or stdin]) to
38#   work with CUPS.
39#
40
41########################################################################
42#
43# PostScript filters
44#
45
46application/pdf         application/postscript  33      pdftops
47application/postscript  application/vnd.cups-postscript 66      pstops
48application/vnd.hp-HPGL application/postscript  66      hpgltops
49application/x-cshell    application/postscript  33      texttops
50application/x-perl      application/postscript  33      texttops
51application/x-shell     application/postscript  33      texttops
52text/plain              application/postscript  33      texttops
53text/html               application/postscript  33      texttops
54image/gif               application/vnd.cups-postscript 66      imagetops
55image/png               application/vnd.cups-postscript 66      imagetops
56image/jpeg              application/vnd.cups-postscript 66      imagetops
57image/tiff              application/vnd.cups-postscript 66      imagetops
58image/x-bitmap          application/vnd.cups-postscript 66      imagetops
59image/x-photocd         application/vnd.cups-postscript 66      imagetops
60image/x-portable-anymap application/vnd.cups-postscript 66      imagetops
61image/x-portable-bitmap application/vnd.cups-postscript 66      imagetops
62image/x-portable-graymap application/vnd.cups-postscript        66      imagetops
63image/x-portable-pixmap application/vnd.cups-postscript 66      imagetops
64image/x-sgi-rgb         application/vnd.cups-postscript 66      imagetops
65image/x-xbitmap         application/vnd.cups-postscript 66      imagetops
66image/x-xpixmap         application/vnd.cups-postscript 66      imagetops
67#image/x-xwindowdump    application/vnd.cups-postscript 66      imagetops
68image/x-sun-raster      application/vnd.cups-postscript 66      imagetops
69
70
71########################################################################
72#
73# Form filter...
74#
75# This filter does not currently exist, but the file format is defined
76# in the IDD and registered with the IANA for future use...
77#
78
79#application/vnd.cups-form application/vnd.cups-postscript 33 formtops
80
81########################################################################
82#
83# Raster filters...
84#
85
86image/gif               application/vnd.cups-raster     100     imagetoraster
87image/png               application/vnd.cups-raster     100     imagetoraster
88image/jpeg              application/vnd.cups-raster     100     imagetoraster
89image/tiff              application/vnd.cups-raster     100     imagetoraster
90image/x-bitmap          application/vnd.cups-raster     100     imagetoraster
91image/x-photocd         application/vnd.cups-raster     100     imagetoraster
92image/x-portable-anymap application/vnd.cups-raster     100     imagetoraster
93image/x-portable-bitmap application/vnd.cups-raster     100     imagetoraster
94image/x-portable-graymap application/vnd.cups-raster    100     imagetoraster
95image/x-portable-pixmap application/vnd.cups-raster     100     imagetoraster
96image/x-sgi-rgb         application/vnd.cups-raster     100     imagetoraster
97image/x-xbitmap         application/vnd.cups-raster     100     imagetoraster
98image/x-xpixmap         application/vnd.cups-raster     100     imagetoraster
99#image/x-xwindowdump    application/vnd.cups-raster     100     imagetoraster
100image/x-sun-raster      application/vnd.cups-raster     100     imagetoraster
101
102# pstoraster is now part of ESP Ghostscript...
103#application/vnd.cups-postscript        application/vnd.cups-raster     100     pstoraster
104
105########################################################################
106#
107# Raw filter...
108#
109# Uncomment the following filter and the application/octet-stream type
110# in mime.types to allow printing of arbitrary files without the -oraw
111# option.
112#
113
114application/octet-stream        application/vnd.cups-raw        0       -
115
116#
117# End of "$Id: mime.convs.new 238 2004-10-28 12:05:20Z ronnie $".
118#
Note: See TracBrowser for help on using the repository browser.