Codebase list splix / b7a726f
Imported Debian patch 2.0.0+svn299-1 Luca Niccoli 10 years ago
337 changed file(s) with 7081 addition(s) and 3375 deletion(s). Raw diff Collapse all Expand all
0 Wed Jul 21 17:11:01 2011 Till Kamppeter <till DOT kamppeter AT gmail DOT com>
1
2 * Added new printer:
3 - Xerox Phaser 3155 (SF Open Discussion forum)
4
5 * Updated translation files po/fr.po and po/pt.po.
6
7 Wed Jul 20 17:44:01 2011 Till Kamppeter <till DOT kamppeter AT gmail DOT com>
8
9 * Added new printers:
10 - Samsung CLP-310 (SF: #3196609)
11 - Samsung CLP-315 (SF: #3196609)
12 - Xerox Phaser 3140 (SF Open Discussion forum)
13
14 * Updated translation files po/fr.po and po/pt.po.
15
16 Mon Jun 27 12:52:01 2011 Till Kamppeter <till DOT kamppeter AT gmail DOT com>
17
18 * Make SpliX query DefaultInputSlot from the PPD for the input slot
19 name, when InputSlot is NULL (SF: #3319051).
20
21 * Moved the cms profiles from cups/model/MFR/cms to cups/profiles/MFR
22 to stop making cups-driverd issuing error messages (SF: #3319110)
23
24 * Add missing delete[] in two error paths (SF patch #3302528).
25
26 * Fixed double free in pstoqpdl filter, which happens when the
27 color profile collection is missing files. Thanks to Leonardo Hamada
28 for thr patch (Ubuntu bug #714259, SF: #3124844).
29
030 Sat Feb 19 19:23:01 2011 Till Kamppeter <till DOT kamppeter AT gmail DOT com>
131
232 * Link with libpthread when building with multithreading.
0 splix (2.0.0+svn299-1) unstable; urgency=low
1
2 * Import r299 from SVN.
3 * Rename splix to printer-driver-splix. (Closes: #647534)
4 * Replace postinst with a ppd-updater trigger (Closes: #647536)
5 Thanks to Didier Raboud for the reports and the patches.
6
7 -- Luca Niccoli <lultimouomo@gmail.com> Mon, 14 Nov 2011 19:58:32 +0100
8
09 splix (2.0.0+svn293-1) unstable; urgency=low
110
211 * Start tracking SVN trunk. (Closes: #594466)
55 Standards-Version: 3.9.2
66 Homepage: http://splix.ap2c.org/
77
8 Package: splix
8 Package: printer-driver-splix
99 Architecture: any
10 Depends: ${shlibs:Depends}, ${misc:Depends}, cups, cups-client, ghostscript-cups
11 Description: Driver for Samsung's SPL2 (bw) and SPLc (color) laser printers
10 Depends: ${shlibs:Depends}, ${misc:Depends}, cups (>= 1.5.0-3~),
11 cups-client, ghostscript-cups
12 Replaces: splix (<< 2.0.0+svn293-1.1~)
13 Breaks: splix (<< 2.0.0+svn293-1.1~)
14 Description: Driver for Samsung and Xerox SPL2 and SPLc laser printers
1215 Support for printing to SPL2- and SPLc-based printers. These are most
1316 of the cheaper Samsung laser printers which do not understand standard
1417 languages like PostScript or PCL. Both monochrome (ML-15xx, ML-16xx,
1922 Note that older SPL1-based models (ML-12xx, ML-14xx) do not work. Use
2023 these printers with the older "gdi" driver which is built into
2124 GhostScript.
25
26 Package: splix
27 Depends: printer-driver-splix, ${misc:Depends}
28 Architecture: all
29 Section: oldlibs
30 Priority: extra
31 Description: transitional dummy package for splix printer driver
32 This is a transitional dummy package to transition to uniformly named
33 printer-driver-splix.
55 src/qpdl.cpp | 2 +-
66 1 files changed, 1 insertions(+), 1 deletions(-)
77
8 diff --git a/src/qpdl.cpp b/src/qpdl.cpp
9 index 64190ee..94e6ddb 100644
10 --- a/src/qpdl.cpp
11 +++ b/src/qpdl.cpp
12 @@ -33,7 +33,7 @@ static bool _renderBand(const Request& request, const Band* band, bool mono)
8 Index: splix-2.0.0+svn299/src/qpdl.cpp
9 ===================================================================
10 --- splix-2.0.0+svn299.orig/src/qpdl.cpp 2011-07-20 18:20:18.782096000 +0200
11 +++ splix-2.0.0+svn299/src/qpdl.cpp 2011-11-12 12:33:29.755649967 +0100
12 @@ -132,7 +132,7 @@
1313 {
1414 unsigned long version, subVersion, size, dataSize, checkSum;
1515 bool color, headerSent=false;
1818 const BandPlane *plane;
1919
2020 version = request.printer()->qpdlVersion();
21 --
2727 dh_testroot
2828 dh_prep
2929 dh_installdirs
30 $(MAKE) DESTDIR=$(CURDIR)/debian/splix CUPSPPD=/usr/share/ppd/splix DISABLE_JBIG=1 install
30 $(MAKE) DESTDIR=$(CURDIR)/debian/printer-driver-splix CUPSPPD=/usr/share/ppd/splix DISABLE_JBIG=1 install
31 install -D --mode=644 debian/splix.ppd-updater $(CURDIR)/debian/splix/usr/share/ppd-updaters/splix.ppd-updater
3132
3233 # Build architecture-dependent files here.
3334 binary-arch: install
+0
-78
debian/splix.postinst less more
0 #!/bin/bash
1 # postinst script for splix
2 #
3 # see: dh_installdeb(1)
4
5 set -e
6
7 # summary of how this script can be called:
8 # * <postinst> `configure' <most-recently-configured-version>
9 # * <old-postinst> `abort-upgrade' <new version>
10 # * <conflictor's-postinst> `abort-remove' `in-favour' <package>
11 # <new-version>
12 # * <postinst> `abort-remove'
13 # * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
14 # <failed-install-package> <version> `removing'
15 # <conflicting-package> <version>
16 # for details, see http://www.debian.org/doc/debian-policy/ or
17 # the debian-policy package
18
19
20 case "$1" in
21 configure)
22 # Do the following only if CUPS is running and the needed CUPS tools
23 # are available
24 if which lpstat > /dev/null 2>&1 && \
25 which lpinfo > /dev/null 2>&1 && \
26 which lpadmin > /dev/null 2>&1 && \
27 lpstat -r > /dev/null 2>&1; then
28 # Update the PPD files of all already installed print queues
29 driverregexp='lsb/usr/splix/'
30 gennicknameregexp='s/,(\s*SpliX|)(\s*V\.?|)\s*[\d\.]*$//i'
31 [ ! -z "$gennicknameregexp" ] && \
32 gennicknameregexp="; $gennicknameregexp"
33 gennicknameregexp='s/\s*\(recommended\)//'"$gennicknameregexp"
34 tempfiles=
35 trap 'rm -f $tempfiles; exit 0' 0 1 2 13 15
36 tmpfile1=`mktemp -t updateppds.XXXXXX`
37 tempfiles="$tempfiles $tmpfile1"
38 lpinfo -m | grep -E $driverregexp > $tmpfile1
39 cd /etc/cups/ppd
40 for ppd in *.ppd; do
41 [ -r "$ppd" ] || continue
42 queue=${ppd%.ppd}
43 lpstat -p "$queue" >/dev/null 2>&1 || continue
44 nickname=`grep '\*NickName:' "$ppd" | cut -d '"' -f 2 | perl -p -e 's/\n$//' | perl -p -e "$gennicknameregexp" | perl -p -e 's/(\W)/\\\\$1/g'`
45 lang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | perl -e 'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
46 ppdfound="0"
47 englishppduri=""
48 tmpfile2=`mktemp -t updateppds.XXXXXX`
49 tempfiles="$tempfiles $tmpfile2"
50 cat $tmpfile1 | perl -p -e "$gennicknameregexp" | grep -E '^\S+\s+.*'"$nickname"'$' | cut -d ' ' -f 1 > $tmpfile2
51 while read newppduri; do
52 [ "$ppdfound" = "0" ] && lpadmin -p "$queue" -m $newppduri 2>/dev/null || continue
53 newlang=`grep '\*LanguageVersion:' "$ppd" | cut -d ' ' -f 2 | perl -e 'print lc(<>)' | perl -p -e 's/[\r\n]//gs'`
54 [ "$newlang" = "$lang" ] && ppdfound="1"
55 [ "$newlang" = "english" ] && englishppduri="$newppduri"
56 done < $tmpfile2
57 [ "$ppdfound" = "0" ] && [ ! -z "$englishppduri" ] && lpadmin -p "$queue" -m $englishppduri 2>/dev/null && ppdfound="1"
58 [ "$ppdfound" = "1" ] && echo PPD for printer $queue updated >&2
59 done
60 fi
61 ;;
62
63 abort-upgrade|abort-remove|abort-deconfigure)
64 ;;
65
66 *)
67 echo "postinst called with unknown argument \`$1'" >&2
68 exit 1
69 ;;
70 esac
71
72 # dh_installdeb will replace this with shell code automatically
73 # generated by other debhelper scripts.
74
75 #DEBHELPER#
76
77 exit 0
0 DRIVER_REGEXP='lsb/usr/splix/'
1 GENNICKNAME_REGEXP='s/,(\s*SpliX|)(\s*V\.?|)\s*[\d\.]*$//i'
1515 * Free Software Foundation, Inc.,
1616 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1717 *
18 * $Id$
18 * $Id: algo0x0d.h 268 2010-07-29 10:10:15Z tillkamppeter $
1919 * --
2020 * This code is written by Leonardo Hamada
2121 */
1515 * Free Software Foundation, Inc.,
1616 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1717 *
18 * $Id$
18 * $Id: algo0x0e.h 245 2008-11-24 23:00:43Z ap2c $
1919 * --
2020 * This code has been written by Leonardo Hamada
2121 */
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x11.h 157 2008-02-09 02:01:24Z ap2c $
1818 *
1919 */
2020 #ifndef _ALGO0X11_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x13.h 287 2011-02-19 19:10:22Z tillkamppeter $
1818 *
1919 */
2020 #ifndef _ALGO0X13_H_
0 /*
1 * algo0x15.h (C) 2007-2008, Aurélien Croc (AP²C)
2 * This file is a SpliX derivative work
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * $Id: algo0x15.h 287 2011-02-19 19:10:22Z tillkamppeter $
19 * --
20 * This code was written by Leonardo Hamada
21 *
22 */
23 #ifndef _ALGO0X15_H_
24 #define _ALGO0X15_H_
25
26 #ifndef DISABLE_JBIG
27
28 #include <stddef.h>
29 #include "algorithm.h"
30 /**
31 * @brief This class implements the compression algorithm 0x15.
32 */
33 class Algo0x15 : public Algorithm
34 {
35 protected:
36 bool _error;
37 bool _has_bih;
38 unsigned char _bih[20];
39 unsigned char* _data;
40 unsigned long _size;
41 unsigned long _maxSize;
42
43 public:
44 Algo0x15();
45 virtual ~Algo0x15();
46
47 public:
48 static void _callback(unsigned char *data, size_t len, void *arg);
49
50 public:
51 virtual BandPlane* compress(const Request& request,
52 unsigned char *data, unsigned long width,
53 unsigned long height);
54 /* Returns BIH for the compressed image band,
55 after compress has been called. */
56 const unsigned char* getBIHdata() const { return _bih; }
57 };
58
59 #endif /* DISABLE_JBIG */
60
61 #endif /* _ALGO0X15_H_ */
62
63 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 cin enc=utf8: */
64
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algorithm.h 157 2008-02-09 02:01:24Z ap2c $
1818 *
1919 */
2020 #ifndef _ALGORITHM_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: band.h 140 2008-01-31 18:33:18Z ap2c $
1818 *
1919 */
2020 #ifndef _BAND_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: bandplane.h 247 2008-11-24 23:18:31Z ap2c $
1818 *
1919 */
2020 #ifndef _BANDPLANE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: cache.h 141 2008-02-01 00:10:50Z ap2c $
1818 *
1919 */
2020 #ifndef _CACHE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: colors.h 136 2008-01-30 17:15:49Z ap2c $
1818 *
1919 */
2020 #ifndef _COLORS_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: compress.h 127 2008-01-28 17:52:50Z ap2c $
1818 *
1919 */
2020 #ifndef _COMPRESS_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: core.h 119 2008-01-22 23:06:29Z ap2c $
1818 *
1919 */
2020 #ifndef _CORE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: document.h 137 2008-01-31 14:41:36Z ap2c $
1818 *
1919 */
2020 #ifndef _DOCUMENT_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: errlog.h 221 2008-06-14 23:03:24Z ap2c $
1818 *
1919 */
2020 #ifndef _ERRLOG_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: options.h 190 2008-02-10 15:30:10Z ap2c $
1818 *
1919 */
2020 #ifndef _OPTIONS_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: page.h 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #ifndef _PAGE_H_
4949 unsigned char* _planes[4];
5050 bool _empty;
5151 unsigned long _bandsNr;
52 unsigned char* _bih;
5253 Band* _firstBand;
5354 Band* _lastBand;
5455
178179 * @return the number of colors.
179180 */
180181 unsigned char colorsNr() const {return _colors;}
182 /**
183 * @return the number of registered bands.
184 */
185 unsigned char bandsNr() const {return _bandsNr;}
181186 /**
182187 * @return this page number.
183188 */
224229 * Otherwise it returns NULL.
225230 */
226231 static Page* restoreIntoMemory(int fd);
232 /**
233 * Register an independent copy of the BIH data.
234 * @param bih_data the BIH for JBIG data.
235 */
236 void setBIH(const unsigned char *bih_data);
237 /**
238 * Returns the BIH data belonging to the Page object.
239 */
240 const unsigned char* getBIH() const { return _bih; }
227241 };
228242 #endif /* _PAGE_H_ */
229243
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: ppdfile.h 266 2009-04-05 14:44:11Z ap2c $
1818 *
1919 */
2020 #ifndef _PPDFILE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: printer.h 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #ifndef _PRINTER_H_
8181 * somewhere else, use the freopen function to redirect STDOUT.
8282 * @return TRUE if it succeed. Otherwise it returns FALSE.
8383 */
84 bool sendPJLHeader(const Request& request) const;
84 bool sendPJLHeader(const Request& request,
85 unsigned long compression,
86 unsigned long xResolution,
87 unsigned long yResolution ) const;
8588 /**
8689 * Send the PJL footer.
8790 * The PJL footer will be sent to STDOUT.
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: qpdl.h 152 2008-02-02 21:00:53Z ap2c $
1818 *
1919 */
2020 #ifndef _QPDL_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: rendering.h 151 2008-02-02 20:21:34Z ap2c $
1818 *
1919 */
2020 #ifndef _RENDERING_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: request.h 151 2008-02-02 20:21:34Z ap2c $
1818 *
1919 */
2020 #ifndef _REQUEST_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: semaphore.h 138 2008-01-31 14:42:24Z ap2c $
1818 *
1919 */
2020 #ifndef _SEMAPHORE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: version.h 282 2010-08-02 11:41:53Z tillkamppeter $
1818 *
1919 */
2020 #ifndef _VERSION_H_
6060 else
6161 PSTORASTER := pstoraster
6262 endif
63 GSTORASTER := gstoraster
64 CUPSPROFILE := `cups-config --datadir`/profiles
6365 export CUPSFILTER CUPSPPD
6466
6567
6769 src_pstoqpdl_cpp_FLAGS := -DRASTERDIR=\"$(CUPSFILTER)\"
6870 src_pstoqpdl_cpp_FLAGS += -DRASTERTOQPDL=\"rastertoqpdl\"
6971 src_pstoqpdl_cpp_FLAGS += -DPSTORASTER=\"$(PSTORASTER)\"
72 src_pstoqpdl_cpp_FLAGS += -DGSTORASTER=\"$(GSTORASTER)\"
7073 src_pstoqpdl_cpp_FLAGS += -DCUPSPPD=\"$(CUPSPPD)\"
74 src_pstoqpdl_cpp_FLAGS += -DCUPSPROFILE=\"$(CUPSPROFILE)\"
7175
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for 1110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
1414 scx4500 scx4521f scx4600 scx4623f scx4623fw scx5330n \
1515 scx5530fn sf565p
1616 XEROX := ph3115 ph3116 ph3117 ph3120 ph3121 ph3122 ph3124 ph3130 \
17 ph3150 ph3160 ph3420 ph3425 ph5500 ph6100 wc3119 wcpe16 \
18 wcpe114e
17 ph3140 ph3150 ph3155 ph3160 ph3420 ph3425 ph5500 ph6100 \
18 wc3119 wcpe16 wcpe114e
1919 LEXMARK := x215mfp
2020 TOSHIBA := es180s
2121 DRIVERSEXT := ppd
2222 POEXT := po
2323 PODIR := po
2424 LANGUAGES := fr pt
25 ifeq ($(DISABLE_JBIG),0)
26 SAMSUNG += clp200 clp300 clp310n clp600 clx216x clx2170 clx3160
25 # === MAKE ALL PPD BY DEFAULT ====
26 ifneq ($(DISABLE_JBIG),1)
27 SAMSUNG += clp200 clp300 clp310 clp315 clp310n clp600 clx216x clx2170 \
28 clx3160
2729 XEROX += ph6110
2830 endif
2931 DRIVERS := $(DELL) $(SAMSUNG) $(XEROX) $(LEXMARK) $(TOSHIBA)
22 *
33 * Altitude
44 *
5 * $Id$
5 * $Id: altitude.defs 270 2010-07-29 11:53:22Z tillkamppeter $
66 */
77
88 Option "Altitude/Air pressure" PickOne AnySetup 10
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-200 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-200"
1111 *ShortNickName: "Samsung CLP-200"
12 *NickName: "Samsung CLP-200, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-200, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "1"
3129 *General DocHeaderValues: "<0><0><0>"
3230 *General CMSFile: "CLP-200"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Mode couleur: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Mode de couleur: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190187 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impression recto-verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Recto-verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of clp200.ppd, 13176 bytes.
232 *% End of clp200.ppd, 11580 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-200 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-200"
1111 *ShortNickName: "Samsung CLP-200"
12 *NickName: "Samsung CLP-200, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-200, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "1"
3129 *General DocHeaderValues: "<0><0><0>"
3230 *General CMSFile: "CLP-200"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Modo Cor: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Modo de Cor: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
187 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Frente e Verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of clp200.ppd, 13277 bytes.
232 *% End of clp200.ppd, 11653 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-300 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-300"
1111 *ShortNickName: "Samsung CLP-300"
12 *NickName: "Samsung CLP-300, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-300, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLP-300"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Mode couleur: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Mode de couleur: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192189 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impression recto-verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Recto-verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clp300.ppd, 13444 bytes.
234 *% End of clp300.ppd, 11848 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-300 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-300"
1111 *ShortNickName: "Samsung CLP-300"
12 *NickName: "Samsung CLP-300, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-300, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLP-300"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Modo Cor: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Modo de Cor: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
189 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Frente e Verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clp300.ppd, 13545 bytes.
234 *% End of clp300.ppd, 11921 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-310 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: English
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp310.ppd"
8 *Product: "(CLP-310)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-310"
11 *ShortNickName: "Samsung CLP-310"
12 *NickName: "Samsung CLP-310, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-310"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *cupsLanguages: "en"
36 *OpenUI *PageSize/Media Size: PickOne
37 *OrderDependency: 10 AnySetup *PageSize
38 *DefaultPageSize: Letter
39 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
40 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
41 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
42 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
43 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
44 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
45 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
46 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
47 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
48 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
49 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
50 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
51 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
52 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
53 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
54 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
55 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
56 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
57 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
58 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
59 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
60 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
61 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
62 *CloseUI: *PageSize
63 *OpenUI *PageRegion/Media Size: PickOne
64 *OrderDependency: 10 AnySetup *PageRegion
65 *DefaultPageRegion: Letter
66 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
67 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
68 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
69 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
70 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
71 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
72 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
73 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
74 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
75 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
76 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
77 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
78 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
79 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
80 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
81 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
82 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
83 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
84 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
85 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
86 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
87 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
88 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
89 *CloseUI: *PageRegion
90 *DefaultImageableArea: Letter
91 *ImageableArea Letter/US Letter: "12 12 600 780"
92 *ImageableArea Legal/US Legal: "12 12 600 996"
93 *ImageableArea A4/A4: "12 12 583 830"
94 *ImageableArea Executive/US Executive: "12 12 510 744"
95 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
96 *ImageableArea A3/A3: "12 12 830 1179"
97 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
98 *ImageableArea Monarch/Monarch: "12 12 267 528"
99 *ImageableArea C5/C5: "12 12 447 637"
100 *ImageableArea DL/DL: "12 12 300 612"
101 *ImageableArea B4/B4: "12 12 717 1020"
102 *ImageableArea B5/B5: "12 12 504 717"
103 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
104 *ImageableArea Postcard/Postcard: "12 12 272 407"
105 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
106 *ImageableArea A5/A5: "12 12 408 583"
107 *ImageableArea A6/A6: "12 12 285 408"
108 *ImageableArea B6/B6: "12 12 351 504"
109 *ImageableArea C6/C6: "12 12 311 447"
110 *ImageableArea Folio/Folio: "12 12 583 923"
111 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
112 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
113 *ImageableArea Oficio/Oficio - 216x340mm: "12 12 600 960"
114 *DefaultPaperDimension: Letter
115 *PaperDimension Letter/US Letter: "612 792"
116 *PaperDimension Legal/US Legal: "612 1008"
117 *PaperDimension A4/A4: "595 842"
118 *PaperDimension Executive/US Executive: "522 756"
119 *PaperDimension Ledger/US Ledger: "1224 792"
120 *PaperDimension A3/A3: "842 1191"
121 *PaperDimension Env10/#10 Envelope: "297 684"
122 *PaperDimension Monarch/Monarch: "279 540"
123 *PaperDimension C5/C5: "459 649"
124 *PaperDimension DL/DL: "312 624"
125 *PaperDimension B4/B4: "729 1032"
126 *PaperDimension B5/B5: "516 729"
127 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
128 *PaperDimension Postcard/Postcard: "284 419"
129 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
130 *PaperDimension A5/A5: "420 595"
131 *PaperDimension A6/A6: "297 420"
132 *PaperDimension B6/B6: "363 516"
133 *PaperDimension C6/C6: "323 459"
134 *PaperDimension Folio/Folio: "595 935"
135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136 *PaperDimension Env9/#9 Envelope: "279 639"
137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *MaxMediaWidth: "612"
139 *MaxMediaHeight: "1008"
140 *HWMargins: 12 12 12 12
141 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
142 *ParamCustomPageSize Width: 1 points 216 612
143 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
144 *ParamCustomPageSize WidthOffset: 3 points 0 0
145 *ParamCustomPageSize HeightOffset: 4 points 0 0
146 *ParamCustomPageSize Orientation: 5 int 0 0
147 *OpenUI *Altitude/Air pressure: PickOne
148 *OrderDependency: 10 AnySetup *Altitude
149 *DefaultAltitude: LOW
150 *Altitude LOW/High: ""
151 *Altitude HIGH/Low: ""
152 *CloseUI: *Altitude
153 *OpenUI *InputSlot/Media Source: PickOne
154 *OrderDependency: 10 AnySetup *InputSlot
155 *DefaultInputSlot: Auto
156 *InputSlot Auto/Automatic Selection: "<</MediaPosition 1>>setpagedevice"
157 *InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
158 *CloseUI: *InputSlot
159 *OpenUI *MediaType/Paper Type: PickOne
160 *OrderDependency: 10 AnySetup *MediaType
161 *DefaultMediaType: OFF
162 *MediaType OFF/Use Printer Default: ""
163 *MediaType NORMAL/Plain Paper: ""
164 *MediaType THICK/Thick Paper: ""
165 *MediaType THIN/Thin Paper: ""
166 *MediaType BOND/Bond: ""
167 *MediaType OHP/Transparency: ""
168 *MediaType CARD/Card Stock: ""
169 *MediaType LABEL/Label: ""
170 *MediaType USED/Preprinted: ""
171 *MediaType COLOR/Colored Paper: ""
172 *MediaType ENV/Envelope: ""
173 *MediaType COTTON/Cotton: ""
174 *MediaType RECYCLED/Recycled: ""
175 *MediaType ARCHIVE/Archive: ""
176 *CloseUI: *MediaType
177 *OpenUI *PowerSave/Power Save: PickOne
178 *OrderDependency: 10 AnySetup *PowerSave
179 *DefaultPowerSave: 5
180 *PowerSave False/Off: ""
181 *PowerSave 5/5 Minutes: ""
182 *PowerSave 10/10 Minutes: ""
183 *PowerSave 15/15 Minutes: ""
184 *PowerSave 30/30 Minutes: ""
185 *PowerSave 45/45 Minutes: ""
186 *PowerSave 60/1 Hour: ""
187 *CloseUI: *PowerSave
188 *OpenUI *Resolution/Resolution: PickOne
189 *OrderDependency: 10 AnySetup *Resolution
190 *DefaultResolution: 600dpi
191 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200x600dpi/1200x600 DPI: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *Resolution 1200dpi/1200 DPI: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
194 *CloseUI: *Resolution
195 *OpenUI *ColorModel/Color Mode: PickOne
196 *OrderDependency: 10 AnySetup *ColorModel
197 *DefaultColorModel: CMYK
198 *ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
199 *ColorModel CMYK/Color: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Duplex/2-Sided Printing: PickOne
202 *OrderDependency: 10 AnySetup *Duplex
203 *DefaultDuplex: None
204 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
205 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
206 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
207 *CloseUI: *Duplex
208 *DefaultFont: Courier
209 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
212 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
213 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
214 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
215 *Font Bookman-Light: Standard "(1.05)" Standard ROM
216 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
217 *Font Courier: Standard "(1.05)" Standard ROM
218 *Font Courier-Bold: Standard "(1.05)" Standard ROM
219 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
220 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
221 *Font Helvetica: Standard "(1.05)" Standard ROM
222 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
223 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
232 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
233 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
234 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
236 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
237 *Font Symbol: Special "(001.005)" Special ROM
238 *Font Times-Bold: Standard "(1.05)" Standard ROM
239 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
240 *Font Times-Italic: Standard "(1.05)" Standard ROM
241 *Font Times-Roman: Standard "(1.05)" Standard ROM
242 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
243 *Font ZapfDingbats: Special "(001.005)" Special ROM
244 *% End of clp310.ppd, 12034 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-310 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: French
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp310.ppd"
8 *Product: "(CLP-310)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-310"
11 *ShortNickName: "Samsung CLP-310"
12 *NickName: "Samsung CLP-310, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-310"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *OpenUI *PageSize/Media Size: PickOne
36 *OrderDependency: 10 AnySetup *PageSize
37 *DefaultPageSize: Letter
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
60 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
61 *CloseUI: *PageSize
62 *OpenUI *PageRegion/Media Size: PickOne
63 *OrderDependency: 10 AnySetup *PageRegion
64 *DefaultPageRegion: Letter
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
87 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
88 *CloseUI: *PageRegion
89 *DefaultImageableArea: Letter
90 *ImageableArea Letter/US Letter: "12 12 600 780"
91 *ImageableArea Legal/US Legal: "12 12 600 996"
92 *ImageableArea A4/A4: "12 12 583 830"
93 *ImageableArea Executive/US Executive: "12 12 510 744"
94 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
95 *ImageableArea A3/A3: "12 12 830 1179"
96 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
97 *ImageableArea Monarch/Monarch: "12 12 267 528"
98 *ImageableArea C5/C5: "12 12 447 637"
99 *ImageableArea DL/DL: "12 12 300 612"
100 *ImageableArea B4/B4: "12 12 717 1020"
101 *ImageableArea B5/B5: "12 12 504 717"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
103 *ImageableArea Postcard/Postcard: "12 12 272 407"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
105 *ImageableArea A5/A5: "12 12 408 583"
106 *ImageableArea A6/A6: "12 12 285 408"
107 *ImageableArea B6/B6: "12 12 351 504"
108 *ImageableArea C6/C6: "12 12 311 447"
109 *ImageableArea Folio/Folio: "12 12 583 923"
110 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
111 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
112 *ImageableArea Oficio/Oficio - 216x340mm: "12 12 600 960"
113 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *MaxMediaWidth: "612"
138 *MaxMediaHeight: "1008"
139 *HWMargins: 12 12 12 12
140 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
141 *ParamCustomPageSize Width: 1 points 216 612
142 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
143 *ParamCustomPageSize WidthOffset: 3 points 0 0
144 *ParamCustomPageSize HeightOffset: 4 points 0 0
145 *ParamCustomPageSize Orientation: 5 int 0 0
146 *OpenUI *Altitude/Pression de l'air: PickOne
147 *OrderDependency: 10 AnySetup *Altitude
148 *DefaultAltitude: LOW
149 *Altitude LOW/Forte: ""
150 *Altitude HIGH/Faible: ""
151 *CloseUI: *Altitude
152 *OpenUI *InputSlot/Source du papier: PickOne
153 *OrderDependency: 10 AnySetup *InputSlot
154 *DefaultInputSlot: Auto
155 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
156 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
157 *CloseUI: *InputSlot
158 *OpenUI *MediaType/Type de papier: PickOne
159 *OrderDependency: 10 AnySetup *MediaType
160 *DefaultMediaType: OFF
161 *MediaType OFF/Utiliser la configuration imprimante: ""
162 *MediaType NORMAL/Papier ordinaire: ""
163 *MediaType THICK/Papier épais: ""
164 *MediaType THIN/Papier fin: ""
165 *MediaType BOND/Papier Bond: ""
166 *MediaType OHP/Transparent: ""
167 *MediaType CARD/Carte de visite: ""
168 *MediaType LABEL/Étiquette: ""
169 *MediaType USED/Papier pré-imprimé: ""
170 *MediaType COLOR/Papier coloré: ""
171 *MediaType ENV/Enveloppe: ""
172 *MediaType COTTON/Coton: ""
173 *MediaType RECYCLED/Papier recyclé: ""
174 *MediaType ARCHIVE/Archive: ""
175 *CloseUI: *MediaType
176 *OpenUI *PowerSave/Économie d'énergie: PickOne
177 *OrderDependency: 10 AnySetup *PowerSave
178 *DefaultPowerSave: 5
179 *PowerSave False/Désactivé: ""
180 *PowerSave 5/5 minutes: ""
181 *PowerSave 10/10 minutes: ""
182 *PowerSave 15/15 minutes: ""
183 *PowerSave 30/30 minutes: ""
184 *PowerSave 45/45 minutes: ""
185 *PowerSave 60/1 heure: ""
186 *CloseUI: *PowerSave
187 *OpenUI *Resolution/Résolution: PickOne
188 *OrderDependency: 10 AnySetup *Resolution
189 *DefaultResolution: 600dpi
190 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
191 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *CloseUI: *Resolution
194 *OpenUI *ColorModel/Mode de couleur: PickOne
195 *OrderDependency: 10 AnySetup *ColorModel
196 *DefaultColorModel: CMYK
197 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
198 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
199 *CloseUI: *ColorModel
200 *OpenUI *Duplex/Recto-verso: PickOne
201 *OrderDependency: 10 AnySetup *Duplex
202 *DefaultDuplex: None
203 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
204 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
205 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
206 *CloseUI: *Duplex
207 *DefaultFont: Courier
208 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
209 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
212 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
213 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
214 *Font Bookman-Light: Standard "(1.05)" Standard ROM
215 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
216 *Font Courier: Standard "(1.05)" Standard ROM
217 *Font Courier-Bold: Standard "(1.05)" Standard ROM
218 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
219 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
220 *Font Helvetica: Standard "(1.05)" Standard ROM
221 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
222 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
223 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
228 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
232 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
233 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
234 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
236 *Font Symbol: Special "(001.005)" Special ROM
237 *Font Times-Bold: Standard "(1.05)" Standard ROM
238 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
239 *Font Times-Italic: Standard "(1.05)" Standard ROM
240 *Font Times-Roman: Standard "(1.05)" Standard ROM
241 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
242 *Font ZapfDingbats: Special "(001.005)" Special ROM
243 *% End of clp310.ppd, 12126 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-310N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-310N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
158164 *MediaType RECYCLED/Papier recyclé: ""
159165 *MediaType ARCHIVE/Archive: ""
160166 *CloseUI: *MediaType
161 *OpenUI *Altitude/Pression de l'air: PickOne
162 *OrderDependency: 10 AnySetup *Altitude
163 *DefaultAltitude: LOW
164 *Altitude LOW/Forte: ""
165 *Altitude HIGH/Faible: ""
166 *CloseUI: *Altitude
167167 *OpenUI *PowerSave/Économie d'énergie: PickOne
168168 *OrderDependency: 10 AnySetup *PowerSave
169169 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-310N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
158164 *MediaType RECYCLED/Papel Reciclado: ""
159165 *MediaType ARCHIVE/Arquivamento: ""
160166 *CloseUI: *MediaType
161 *OpenUI *Altitude/Pressão Atmosférica: PickOne
162 *OrderDependency: 10 AnySetup *Altitude
163 *DefaultAltitude: LOW
164 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
165 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
166 *CloseUI: *Altitude
167167 *OpenUI *PowerSave/Economia de Energia: PickOne
168168 *OrderDependency: 10 AnySetup *PowerSave
169169 *DefaultPowerSave: 5
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-310 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: Portuguese_Brazil
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp310.ppd"
8 *Product: "(CLP-310)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-310"
11 *ShortNickName: "Samsung CLP-310"
12 *NickName: "Samsung CLP-310, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-310"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *OpenUI *PageSize/Media Size: PickOne
36 *OrderDependency: 10 AnySetup *PageSize
37 *DefaultPageSize: Letter
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
60 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
61 *CloseUI: *PageSize
62 *OpenUI *PageRegion/Media Size: PickOne
63 *OrderDependency: 10 AnySetup *PageRegion
64 *DefaultPageRegion: Letter
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
87 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
88 *CloseUI: *PageRegion
89 *DefaultImageableArea: Letter
90 *ImageableArea Letter/US Letter: "12 12 600 780"
91 *ImageableArea Legal/US Legal: "12 12 600 996"
92 *ImageableArea A4/A4: "12 12 583 830"
93 *ImageableArea Executive/US Executive: "12 12 510 744"
94 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
95 *ImageableArea A3/A3: "12 12 830 1179"
96 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
97 *ImageableArea Monarch/Monarch: "12 12 267 528"
98 *ImageableArea C5/C5: "12 12 447 637"
99 *ImageableArea DL/DL: "12 12 300 612"
100 *ImageableArea B4/B4: "12 12 717 1020"
101 *ImageableArea B5/B5: "12 12 504 717"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
103 *ImageableArea Postcard/Postcard: "12 12 272 407"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
105 *ImageableArea A5/A5: "12 12 408 583"
106 *ImageableArea A6/A6: "12 12 285 408"
107 *ImageableArea B6/B6: "12 12 351 504"
108 *ImageableArea C6/C6: "12 12 311 447"
109 *ImageableArea Folio/Folio: "12 12 583 923"
110 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
111 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
112 *ImageableArea Oficio/Ofício - 216x340mm: "12 12 600 960"
113 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *MaxMediaWidth: "612"
138 *MaxMediaHeight: "1008"
139 *HWMargins: 12 12 12 12
140 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
141 *ParamCustomPageSize Width: 1 points 216 612
142 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
143 *ParamCustomPageSize WidthOffset: 3 points 0 0
144 *ParamCustomPageSize HeightOffset: 4 points 0 0
145 *ParamCustomPageSize Orientation: 5 int 0 0
146 *OpenUI *Altitude/Pressão Atmosférica: PickOne
147 *OrderDependency: 10 AnySetup *Altitude
148 *DefaultAltitude: LOW
149 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
150 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
151 *CloseUI: *Altitude
152 *OpenUI *InputSlot/Fonte do Papel: PickOne
153 *OrderDependency: 10 AnySetup *InputSlot
154 *DefaultInputSlot: Auto
155 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
156 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
157 *CloseUI: *InputSlot
158 *OpenUI *MediaType/Tipo de Papel: PickOne
159 *OrderDependency: 10 AnySetup *MediaType
160 *DefaultMediaType: OFF
161 *MediaType OFF/Usar a Definição da Impressora: ""
162 *MediaType NORMAL/Papel Comúm: ""
163 *MediaType THICK/Papel Grosso: ""
164 *MediaType THIN/Papel Delgado (Fino): ""
165 *MediaType BOND/Papel Bond: ""
166 *MediaType OHP/Transparência: ""
167 *MediaType CARD/Cartão de Visita: ""
168 *MediaType LABEL/Etiqueta: ""
169 *MediaType USED/Papel Pré-Impresso: ""
170 *MediaType COLOR/Papel Colorido: ""
171 *MediaType ENV/Envelope: ""
172 *MediaType COTTON/Algodão: ""
173 *MediaType RECYCLED/Papel Reciclado: ""
174 *MediaType ARCHIVE/Arquivamento: ""
175 *CloseUI: *MediaType
176 *OpenUI *PowerSave/Economia de Energia: PickOne
177 *OrderDependency: 10 AnySetup *PowerSave
178 *DefaultPowerSave: 5
179 *PowerSave False/Desligado: ""
180 *PowerSave 5/5 Minutos: ""
181 *PowerSave 10/10 Minutos: ""
182 *PowerSave 15/15 Minutos: ""
183 *PowerSave 30/30 Minutos: ""
184 *PowerSave 45/45 Minutos: ""
185 *PowerSave 60/1 Hora: ""
186 *CloseUI: *PowerSave
187 *OpenUI *Resolution/Resolução: PickOne
188 *OrderDependency: 10 AnySetup *Resolution
189 *DefaultResolution: 600dpi
190 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
191 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *CloseUI: *Resolution
194 *OpenUI *ColorModel/Modo de Cor: PickOne
195 *OrderDependency: 10 AnySetup *ColorModel
196 *DefaultColorModel: CMYK
197 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
198 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
199 *CloseUI: *ColorModel
200 *OpenUI *Duplex/Frente e Verso: PickOne
201 *OrderDependency: 10 AnySetup *Duplex
202 *DefaultDuplex: None
203 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
204 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
205 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
206 *CloseUI: *Duplex
207 *DefaultFont: Courier
208 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
209 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
212 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
213 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
214 *Font Bookman-Light: Standard "(1.05)" Standard ROM
215 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
216 *Font Courier: Standard "(1.05)" Standard ROM
217 *Font Courier-Bold: Standard "(1.05)" Standard ROM
218 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
219 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
220 *Font Helvetica: Standard "(1.05)" Standard ROM
221 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
222 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
223 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
228 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
232 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
233 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
234 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
236 *Font Symbol: Special "(001.005)" Special ROM
237 *Font Times-Bold: Standard "(1.05)" Standard ROM
238 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
239 *Font Times-Italic: Standard "(1.05)" Standard ROM
240 *Font Times-Roman: Standard "(1.05)" Standard ROM
241 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
242 *Font ZapfDingbats: Special "(001.005)" Special ROM
243 *% End of clp310.ppd, 12199 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-315 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: English
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp315.ppd"
8 *Product: "(CLP-315)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-315"
11 *ShortNickName: "Samsung CLP-315"
12 *NickName: "Samsung CLP-315, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-315"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *cupsLanguages: "en"
36 *OpenUI *PageSize/Media Size: PickOne
37 *OrderDependency: 10 AnySetup *PageSize
38 *DefaultPageSize: Letter
39 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
40 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
41 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
42 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
43 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
44 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
45 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
46 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
47 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
48 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
49 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
50 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
51 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
52 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
53 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
54 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
55 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
56 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
57 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
58 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
59 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
60 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
61 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
62 *CloseUI: *PageSize
63 *OpenUI *PageRegion/Media Size: PickOne
64 *OrderDependency: 10 AnySetup *PageRegion
65 *DefaultPageRegion: Letter
66 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
67 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
68 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
69 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
70 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
71 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
72 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
73 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
74 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
75 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
76 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
77 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
78 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
79 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
80 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
81 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
82 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
83 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
84 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
85 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
86 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
87 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
88 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
89 *CloseUI: *PageRegion
90 *DefaultImageableArea: Letter
91 *ImageableArea Letter/US Letter: "12 12 600 780"
92 *ImageableArea Legal/US Legal: "12 12 600 996"
93 *ImageableArea A4/A4: "12 12 583 830"
94 *ImageableArea Executive/US Executive: "12 12 510 744"
95 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
96 *ImageableArea A3/A3: "12 12 830 1179"
97 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
98 *ImageableArea Monarch/Monarch: "12 12 267 528"
99 *ImageableArea C5/C5: "12 12 447 637"
100 *ImageableArea DL/DL: "12 12 300 612"
101 *ImageableArea B4/B4: "12 12 717 1020"
102 *ImageableArea B5/B5: "12 12 504 717"
103 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
104 *ImageableArea Postcard/Postcard: "12 12 272 407"
105 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
106 *ImageableArea A5/A5: "12 12 408 583"
107 *ImageableArea A6/A6: "12 12 285 408"
108 *ImageableArea B6/B6: "12 12 351 504"
109 *ImageableArea C6/C6: "12 12 311 447"
110 *ImageableArea Folio/Folio: "12 12 583 923"
111 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
112 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
113 *ImageableArea Oficio/Oficio - 216x340mm: "12 12 600 960"
114 *DefaultPaperDimension: Letter
115 *PaperDimension Letter/US Letter: "612 792"
116 *PaperDimension Legal/US Legal: "612 1008"
117 *PaperDimension A4/A4: "595 842"
118 *PaperDimension Executive/US Executive: "522 756"
119 *PaperDimension Ledger/US Ledger: "1224 792"
120 *PaperDimension A3/A3: "842 1191"
121 *PaperDimension Env10/#10 Envelope: "297 684"
122 *PaperDimension Monarch/Monarch: "279 540"
123 *PaperDimension C5/C5: "459 649"
124 *PaperDimension DL/DL: "312 624"
125 *PaperDimension B4/B4: "729 1032"
126 *PaperDimension B5/B5: "516 729"
127 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
128 *PaperDimension Postcard/Postcard: "284 419"
129 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
130 *PaperDimension A5/A5: "420 595"
131 *PaperDimension A6/A6: "297 420"
132 *PaperDimension B6/B6: "363 516"
133 *PaperDimension C6/C6: "323 459"
134 *PaperDimension Folio/Folio: "595 935"
135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136 *PaperDimension Env9/#9 Envelope: "279 639"
137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *MaxMediaWidth: "612"
139 *MaxMediaHeight: "1008"
140 *HWMargins: 12 12 12 12
141 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
142 *ParamCustomPageSize Width: 1 points 216 612
143 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
144 *ParamCustomPageSize WidthOffset: 3 points 0 0
145 *ParamCustomPageSize HeightOffset: 4 points 0 0
146 *ParamCustomPageSize Orientation: 5 int 0 0
147 *OpenUI *Altitude/Air pressure: PickOne
148 *OrderDependency: 10 AnySetup *Altitude
149 *DefaultAltitude: LOW
150 *Altitude LOW/High: ""
151 *Altitude HIGH/Low: ""
152 *CloseUI: *Altitude
153 *OpenUI *InputSlot/Media Source: PickOne
154 *OrderDependency: 10 AnySetup *InputSlot
155 *DefaultInputSlot: Auto
156 *InputSlot Auto/Automatic Selection: "<</MediaPosition 1>>setpagedevice"
157 *InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
158 *CloseUI: *InputSlot
159 *OpenUI *MediaType/Paper Type: PickOne
160 *OrderDependency: 10 AnySetup *MediaType
161 *DefaultMediaType: OFF
162 *MediaType OFF/Use Printer Default: ""
163 *MediaType NORMAL/Plain Paper: ""
164 *MediaType THICK/Thick Paper: ""
165 *MediaType THIN/Thin Paper: ""
166 *MediaType BOND/Bond: ""
167 *MediaType OHP/Transparency: ""
168 *MediaType CARD/Card Stock: ""
169 *MediaType LABEL/Label: ""
170 *MediaType USED/Preprinted: ""
171 *MediaType COLOR/Colored Paper: ""
172 *MediaType ENV/Envelope: ""
173 *MediaType COTTON/Cotton: ""
174 *MediaType RECYCLED/Recycled: ""
175 *MediaType ARCHIVE/Archive: ""
176 *CloseUI: *MediaType
177 *OpenUI *PowerSave/Power Save: PickOne
178 *OrderDependency: 10 AnySetup *PowerSave
179 *DefaultPowerSave: 5
180 *PowerSave False/Off: ""
181 *PowerSave 5/5 Minutes: ""
182 *PowerSave 10/10 Minutes: ""
183 *PowerSave 15/15 Minutes: ""
184 *PowerSave 30/30 Minutes: ""
185 *PowerSave 45/45 Minutes: ""
186 *PowerSave 60/1 Hour: ""
187 *CloseUI: *PowerSave
188 *OpenUI *Resolution/Resolution: PickOne
189 *OrderDependency: 10 AnySetup *Resolution
190 *DefaultResolution: 600dpi
191 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200x600dpi/1200x600 DPI: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *Resolution 1200dpi/1200 DPI: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
194 *CloseUI: *Resolution
195 *OpenUI *ColorModel/Color Mode: PickOne
196 *OrderDependency: 10 AnySetup *ColorModel
197 *DefaultColorModel: CMYK
198 *ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
199 *ColorModel CMYK/Color: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Duplex/2-Sided Printing: PickOne
202 *OrderDependency: 10 AnySetup *Duplex
203 *DefaultDuplex: None
204 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
205 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
206 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
207 *CloseUI: *Duplex
208 *DefaultFont: Courier
209 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
212 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
213 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
214 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
215 *Font Bookman-Light: Standard "(1.05)" Standard ROM
216 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
217 *Font Courier: Standard "(1.05)" Standard ROM
218 *Font Courier-Bold: Standard "(1.05)" Standard ROM
219 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
220 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
221 *Font Helvetica: Standard "(1.05)" Standard ROM
222 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
223 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
232 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
233 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
234 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
236 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
237 *Font Symbol: Special "(001.005)" Special ROM
238 *Font Times-Bold: Standard "(1.05)" Standard ROM
239 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
240 *Font Times-Italic: Standard "(1.05)" Standard ROM
241 *Font Times-Roman: Standard "(1.05)" Standard ROM
242 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
243 *Font ZapfDingbats: Special "(001.005)" Special ROM
244 *% End of clp315.ppd, 12034 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-315 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: French
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp315.ppd"
8 *Product: "(CLP-315)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-315"
11 *ShortNickName: "Samsung CLP-315"
12 *NickName: "Samsung CLP-315, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-315"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *OpenUI *PageSize/Media Size: PickOne
36 *OrderDependency: 10 AnySetup *PageSize
37 *DefaultPageSize: Letter
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
60 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
61 *CloseUI: *PageSize
62 *OpenUI *PageRegion/Media Size: PickOne
63 *OrderDependency: 10 AnySetup *PageRegion
64 *DefaultPageRegion: Letter
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
87 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
88 *CloseUI: *PageRegion
89 *DefaultImageableArea: Letter
90 *ImageableArea Letter/US Letter: "12 12 600 780"
91 *ImageableArea Legal/US Legal: "12 12 600 996"
92 *ImageableArea A4/A4: "12 12 583 830"
93 *ImageableArea Executive/US Executive: "12 12 510 744"
94 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
95 *ImageableArea A3/A3: "12 12 830 1179"
96 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
97 *ImageableArea Monarch/Monarch: "12 12 267 528"
98 *ImageableArea C5/C5: "12 12 447 637"
99 *ImageableArea DL/DL: "12 12 300 612"
100 *ImageableArea B4/B4: "12 12 717 1020"
101 *ImageableArea B5/B5: "12 12 504 717"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
103 *ImageableArea Postcard/Postcard: "12 12 272 407"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
105 *ImageableArea A5/A5: "12 12 408 583"
106 *ImageableArea A6/A6: "12 12 285 408"
107 *ImageableArea B6/B6: "12 12 351 504"
108 *ImageableArea C6/C6: "12 12 311 447"
109 *ImageableArea Folio/Folio: "12 12 583 923"
110 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
111 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
112 *ImageableArea Oficio/Oficio - 216x340mm: "12 12 600 960"
113 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *MaxMediaWidth: "612"
138 *MaxMediaHeight: "1008"
139 *HWMargins: 12 12 12 12
140 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
141 *ParamCustomPageSize Width: 1 points 216 612
142 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
143 *ParamCustomPageSize WidthOffset: 3 points 0 0
144 *ParamCustomPageSize HeightOffset: 4 points 0 0
145 *ParamCustomPageSize Orientation: 5 int 0 0
146 *OpenUI *Altitude/Pression de l'air: PickOne
147 *OrderDependency: 10 AnySetup *Altitude
148 *DefaultAltitude: LOW
149 *Altitude LOW/Forte: ""
150 *Altitude HIGH/Faible: ""
151 *CloseUI: *Altitude
152 *OpenUI *InputSlot/Source du papier: PickOne
153 *OrderDependency: 10 AnySetup *InputSlot
154 *DefaultInputSlot: Auto
155 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
156 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
157 *CloseUI: *InputSlot
158 *OpenUI *MediaType/Type de papier: PickOne
159 *OrderDependency: 10 AnySetup *MediaType
160 *DefaultMediaType: OFF
161 *MediaType OFF/Utiliser la configuration imprimante: ""
162 *MediaType NORMAL/Papier ordinaire: ""
163 *MediaType THICK/Papier épais: ""
164 *MediaType THIN/Papier fin: ""
165 *MediaType BOND/Papier Bond: ""
166 *MediaType OHP/Transparent: ""
167 *MediaType CARD/Carte de visite: ""
168 *MediaType LABEL/Étiquette: ""
169 *MediaType USED/Papier pré-imprimé: ""
170 *MediaType COLOR/Papier coloré: ""
171 *MediaType ENV/Enveloppe: ""
172 *MediaType COTTON/Coton: ""
173 *MediaType RECYCLED/Papier recyclé: ""
174 *MediaType ARCHIVE/Archive: ""
175 *CloseUI: *MediaType
176 *OpenUI *PowerSave/Économie d'énergie: PickOne
177 *OrderDependency: 10 AnySetup *PowerSave
178 *DefaultPowerSave: 5
179 *PowerSave False/Désactivé: ""
180 *PowerSave 5/5 minutes: ""
181 *PowerSave 10/10 minutes: ""
182 *PowerSave 15/15 minutes: ""
183 *PowerSave 30/30 minutes: ""
184 *PowerSave 45/45 minutes: ""
185 *PowerSave 60/1 heure: ""
186 *CloseUI: *PowerSave
187 *OpenUI *Resolution/Résolution: PickOne
188 *OrderDependency: 10 AnySetup *Resolution
189 *DefaultResolution: 600dpi
190 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
191 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *CloseUI: *Resolution
194 *OpenUI *ColorModel/Mode de couleur: PickOne
195 *OrderDependency: 10 AnySetup *ColorModel
196 *DefaultColorModel: CMYK
197 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
198 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
199 *CloseUI: *ColorModel
200 *OpenUI *Duplex/Recto-verso: PickOne
201 *OrderDependency: 10 AnySetup *Duplex
202 *DefaultDuplex: None
203 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
204 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
205 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
206 *CloseUI: *Duplex
207 *DefaultFont: Courier
208 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
209 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
212 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
213 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
214 *Font Bookman-Light: Standard "(1.05)" Standard ROM
215 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
216 *Font Courier: Standard "(1.05)" Standard ROM
217 *Font Courier-Bold: Standard "(1.05)" Standard ROM
218 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
219 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
220 *Font Helvetica: Standard "(1.05)" Standard ROM
221 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
222 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
223 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
228 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
232 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
233 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
234 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
236 *Font Symbol: Special "(001.005)" Special ROM
237 *Font Times-Bold: Standard "(1.05)" Standard ROM
238 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
239 *Font Times-Italic: Standard "(1.05)" Standard ROM
240 *Font Times-Roman: Standard "(1.05)" Standard ROM
241 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
242 *Font ZapfDingbats: Special "(001.005)" Special ROM
243 *% End of clp315.ppd, 12126 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for CLP-315 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: Portuguese_Brazil
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "clp315.ppd"
8 *Product: "(CLP-315)"
9 *Manufacturer: "Samsung"
10 *ModelName: "Samsung CLP-315"
11 *ShortNickName: "Samsung CLP-315"
12 *NickName: "Samsung CLP-315, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: True
16 *DefaultColorSpace: RGB
17 *FileSystem: False
18 *Throughput: "4"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *cupsBackSide: "Normal"
26 *QPDL ManualDuplex: "On"
27 *QPDL QPDLVersion: "5"
28 *QPDL PacketSize: "512"
29 *General DocHeaderValues: "<0><0><1>"
30 *General CMSFile: "CLP-315"
31 *cupsVersion: 1.4
32 *cupsModelNumber: 0
33 *cupsManualCopies: False
34 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
35 *OpenUI *PageSize/Media Size: PickOne
36 *OrderDependency: 10 AnySetup *PageSize
37 *DefaultPageSize: Letter
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
60 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
61 *CloseUI: *PageSize
62 *OpenUI *PageRegion/Media Size: PickOne
63 *OrderDependency: 10 AnySetup *PageRegion
64 *DefaultPageRegion: Letter
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
87 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
88 *CloseUI: *PageRegion
89 *DefaultImageableArea: Letter
90 *ImageableArea Letter/US Letter: "12 12 600 780"
91 *ImageableArea Legal/US Legal: "12 12 600 996"
92 *ImageableArea A4/A4: "12 12 583 830"
93 *ImageableArea Executive/US Executive: "12 12 510 744"
94 *ImageableArea Ledger/US Ledger: "12 12 1212 780"
95 *ImageableArea A3/A3: "12 12 830 1179"
96 *ImageableArea Env10/#10 Envelope: "12 12 285 672"
97 *ImageableArea Monarch/Monarch: "12 12 267 528"
98 *ImageableArea C5/C5: "12 12 447 637"
99 *ImageableArea DL/DL: "12 12 300 612"
100 *ImageableArea B4/B4: "12 12 717 1020"
101 *ImageableArea B5/B5: "12 12 504 717"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "12 12 487 697"
103 *ImageableArea Postcard/Postcard: "12 12 272 407"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "12 12 408 555"
105 *ImageableArea A5/A5: "12 12 408 583"
106 *ImageableArea A6/A6: "12 12 285 408"
107 *ImageableArea B6/B6: "12 12 351 504"
108 *ImageableArea C6/C6: "12 12 311 447"
109 *ImageableArea Folio/Folio: "12 12 583 923"
110 *ImageableArea EnvPersonal/Personal Envelope: "12 12 249 456"
111 *ImageableArea Env9/#9 Envelope: "12 12 267 627"
112 *ImageableArea Oficio/Ofício - 216x340mm: "12 12 600 960"
113 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *MaxMediaWidth: "612"
138 *MaxMediaHeight: "1008"
139 *HWMargins: 12 12 12 12
140 *CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
141 *ParamCustomPageSize Width: 1 points 216 612
142 *ParamCustomPageSize Height: 2 points 453.600006103516 1008
143 *ParamCustomPageSize WidthOffset: 3 points 0 0
144 *ParamCustomPageSize HeightOffset: 4 points 0 0
145 *ParamCustomPageSize Orientation: 5 int 0 0
146 *OpenUI *Altitude/Pressão Atmosférica: PickOne
147 *OrderDependency: 10 AnySetup *Altitude
148 *DefaultAltitude: LOW
149 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
150 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
151 *CloseUI: *Altitude
152 *OpenUI *InputSlot/Fonte do Papel: PickOne
153 *OrderDependency: 10 AnySetup *InputSlot
154 *DefaultInputSlot: Auto
155 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
156 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
157 *CloseUI: *InputSlot
158 *OpenUI *MediaType/Tipo de Papel: PickOne
159 *OrderDependency: 10 AnySetup *MediaType
160 *DefaultMediaType: OFF
161 *MediaType OFF/Usar a Definição da Impressora: ""
162 *MediaType NORMAL/Papel Comúm: ""
163 *MediaType THICK/Papel Grosso: ""
164 *MediaType THIN/Papel Delgado (Fino): ""
165 *MediaType BOND/Papel Bond: ""
166 *MediaType OHP/Transparência: ""
167 *MediaType CARD/Cartão de Visita: ""
168 *MediaType LABEL/Etiqueta: ""
169 *MediaType USED/Papel Pré-Impresso: ""
170 *MediaType COLOR/Papel Colorido: ""
171 *MediaType ENV/Envelope: ""
172 *MediaType COTTON/Algodão: ""
173 *MediaType RECYCLED/Papel Reciclado: ""
174 *MediaType ARCHIVE/Arquivamento: ""
175 *CloseUI: *MediaType
176 *OpenUI *PowerSave/Economia de Energia: PickOne
177 *OrderDependency: 10 AnySetup *PowerSave
178 *DefaultPowerSave: 5
179 *PowerSave False/Desligado: ""
180 *PowerSave 5/5 Minutos: ""
181 *PowerSave 10/10 Minutos: ""
182 *PowerSave 15/15 Minutos: ""
183 *PowerSave 30/30 Minutos: ""
184 *PowerSave 45/45 Minutos: ""
185 *PowerSave 60/1 Hora: ""
186 *CloseUI: *PowerSave
187 *OpenUI *Resolution/Resolução: PickOne
188 *OrderDependency: 10 AnySetup *Resolution
189 *DefaultResolution: 600dpi
190 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
191 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
192 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
193 *CloseUI: *Resolution
194 *OpenUI *ColorModel/Modo de Cor: PickOne
195 *OrderDependency: 10 AnySetup *ColorModel
196 *DefaultColorModel: CMYK
197 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 21>>setpagedevice"
198 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 21>>setpagedevice"
199 *CloseUI: *ColorModel
200 *OpenUI *Duplex/Frente e Verso: PickOne
201 *OrderDependency: 10 AnySetup *Duplex
202 *DefaultDuplex: None
203 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
204 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
205 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
206 *CloseUI: *Duplex
207 *DefaultFont: Courier
208 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
209 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
210 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
211 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
212 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
213 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
214 *Font Bookman-Light: Standard "(1.05)" Standard ROM
215 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
216 *Font Courier: Standard "(1.05)" Standard ROM
217 *Font Courier-Bold: Standard "(1.05)" Standard ROM
218 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
219 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
220 *Font Helvetica: Standard "(1.05)" Standard ROM
221 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
222 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
223 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
224 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
225 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
228 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
229 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
230 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
231 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
232 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
233 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
234 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
235 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
236 *Font Symbol: Special "(001.005)" Special ROM
237 *Font Times-Bold: Standard "(1.05)" Standard ROM
238 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
239 *Font Times-Italic: Standard "(1.05)" Standard ROM
240 *Font Times-Roman: Standard "(1.05)" Standard ROM
241 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
242 *Font ZapfDingbats: Special "(001.005)" Special ROM
243 *% End of clp315.ppd, 12199 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
162168 *MediaType RECYCLED/Recycled: ""
163169 *MediaType ARCHIVE/Archive: ""
164170 *CloseUI: *MediaType
165 *OpenUI *Altitude/Air pressure: PickOne
166 *OrderDependency: 10 AnySetup *Altitude
167 *DefaultAltitude: LOW
168 *Altitude LOW/High: ""
169 *Altitude HIGH/Low: ""
170 *CloseUI: *Altitude
171171 *OpenUI *PowerSave/Power Save: PickOne
172172 *OrderDependency: 10 AnySetup *PowerSave
173173 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papier recyclé: ""
162168 *MediaType ARCHIVE/Archive: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Économie d'énergie: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papel Reciclado: ""
162168 *MediaType ARCHIVE/Arquivamento: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Economia de Energia: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
162168 *MediaType RECYCLED/Recycled: ""
163169 *MediaType ARCHIVE/Archive: ""
164170 *CloseUI: *MediaType
165 *OpenUI *Altitude/Air pressure: PickOne
166 *OrderDependency: 10 AnySetup *Altitude
167 *DefaultAltitude: LOW
168 *Altitude LOW/High: ""
169 *Altitude HIGH/Low: ""
170 *CloseUI: *Altitude
171171 *OpenUI *PowerSave/Power Save: PickOne
172172 *OrderDependency: 10 AnySetup *PowerSave
173173 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papier recyclé: ""
162168 *MediaType ARCHIVE/Archive: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Économie d'énergie: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papel Reciclado: ""
162168 *MediaType ARCHIVE/Arquivamento: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Economia de Energia: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
162168 *MediaType RECYCLED/Recycled: ""
163169 *MediaType ARCHIVE/Archive: ""
164170 *CloseUI: *MediaType
165 *OpenUI *Altitude/Air pressure: PickOne
166 *OrderDependency: 10 AnySetup *Altitude
167 *DefaultAltitude: LOW
168 *Altitude LOW/High: ""
169 *Altitude HIGH/Low: ""
170 *CloseUI: *Altitude
171171 *OpenUI *PowerSave/Power Save: PickOne
172172 *OrderDependency: 10 AnySetup *PowerSave
173173 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papier recyclé: ""
162168 *MediaType ARCHIVE/Archive: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Économie d'énergie: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papel Reciclado: ""
162168 *MediaType ARCHIVE/Arquivamento: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Economia de Energia: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-600 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-600"
1111 *ShortNickName: "Samsung CLP-600"
12 *NickName: "Samsung CLP-600, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-600, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "1"
3129 *General DocHeaderValues: "<0><0><0>"
3230 *General CMSFile: "CLP-600"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Mode couleur: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Mode de couleur: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192189 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impression recto-verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Recto-verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clp600.ppd, 13456 bytes.
234 *% End of clp600.ppd, 11860 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLP-600 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLP-600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLP-600"
1111 *ShortNickName: "Samsung CLP-600"
12 *NickName: "Samsung CLP-600, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLP-600, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "1"
3129 *General DocHeaderValues: "<0><0><0>"
3230 *General CMSFile: "CLP-600"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Modo Cor: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Modo de Cor: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
189 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Frente e Verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clp600.ppd, 13557 bytes.
234 *% End of clp600.ppd, 11933 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
162168 *MediaType RECYCLED/Recycled: ""
163169 *MediaType ARCHIVE/Archive: ""
164170 *CloseUI: *MediaType
165 *OpenUI *Altitude/Air pressure: PickOne
166 *OrderDependency: 10 AnySetup *Altitude
167 *DefaultAltitude: LOW
168 *Altitude LOW/High: ""
169 *Altitude HIGH/Low: ""
170 *CloseUI: *Altitude
171171 *OpenUI *PowerSave/Power Save: PickOne
172172 *OrderDependency: 10 AnySetup *PowerSave
173173 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papier recyclé: ""
162168 *MediaType ARCHIVE/Archive: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Économie d'énergie: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
162168 *MediaType RECYCLED/Recycled: ""
163169 *MediaType ARCHIVE/Archive: ""
164170 *CloseUI: *MediaType
165 *OpenUI *Altitude/Air pressure: PickOne
166 *OrderDependency: 10 AnySetup *Altitude
167 *DefaultAltitude: LOW
168 *Altitude LOW/High: ""
169 *Altitude HIGH/Low: ""
170 *CloseUI: *Altitude
171171 *OpenUI *PowerSave/Power Save: PickOne
172172 *OrderDependency: 10 AnySetup *PowerSave
173173 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Source du papier: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papier recyclé: ""
162168 *MediaType ARCHIVE/Archive: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Économie d'énergie: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papel Reciclado: ""
162168 *MediaType ARCHIVE/Arquivamento: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Economia de Energia: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLP-610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
134134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135135 *PaperDimension Env9/#9 Envelope: "279 639"
136136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
137143 *OpenUI *InputSlot/Fonte do Papel: PickOne
138144 *OrderDependency: 10 AnySetup *InputSlot
139145 *DefaultInputSlot: Auto
161167 *MediaType RECYCLED/Papel Reciclado: ""
162168 *MediaType ARCHIVE/Arquivamento: ""
163169 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170170 *OpenUI *PowerSave/Economia de Energia: PickOne
171171 *OrderDependency: 10 AnySetup *PowerSave
172172 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLX-216X with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-216X with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-216X with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-216X"
1111 *ShortNickName: "Samsung CLX-216X"
12 *NickName: "Samsung CLX-216X, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-216X, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-216x"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Mode couleur: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Mode de couleur: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192189 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impression recto-verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Recto-verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clx216x.ppd, 13462 bytes.
234 *% End of clx216x.ppd, 11867 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-216X with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-216X with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-216X"
1111 *ShortNickName: "Samsung CLX-216X"
12 *NickName: "Samsung CLX-216X, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-216X, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-216x"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Modo Cor: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Modo de Cor: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
189 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Frente e Verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clx216x.ppd, 13563 bytes.
234 *% End of clx216x.ppd, 11940 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLX-2170 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-2170 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-2170 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-2170"
1111 *ShortNickName: "Samsung CLX-2170"
12 *NickName: "Samsung CLX-2170, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-2170, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-2170"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Mode couleur: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Mode de couleur: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190187 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impression recto-verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Recto-verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of clx2170.ppd, 13183 bytes.
232 *% End of clx2170.ppd, 11588 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-2170 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-2170 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-2170"
1111 *ShortNickName: "Samsung CLX-2170"
12 *NickName: "Samsung CLX-2170, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-2170, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-2170"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Modo Cor: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Modo de Cor: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
187 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Frente e Verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of clx2170.ppd, 13284 bytes.
232 *% End of clx2170.ppd, 11661 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for CLX-3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
135135 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
136136 *PaperDimension Env9/#9 Envelope: "279 639"
137137 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
138 *OpenUI *Altitude/Air pressure: PickOne
139 *OrderDependency: 10 AnySetup *Altitude
140 *DefaultAltitude: LOW
141 *Altitude LOW/High: ""
142 *Altitude HIGH/Low: ""
143 *CloseUI: *Altitude
138144 *OpenUI *InputSlot/Media Source: PickOne
139145 *OrderDependency: 10 AnySetup *InputSlot
140146 *DefaultInputSlot: Auto
159165 *MediaType RECYCLED/Recycled: ""
160166 *MediaType ARCHIVE/Archive: ""
161167 *CloseUI: *MediaType
162 *OpenUI *Altitude/Air pressure: PickOne
163 *OrderDependency: 10 AnySetup *Altitude
164 *DefaultAltitude: LOW
165 *Altitude LOW/High: ""
166 *Altitude HIGH/Low: ""
167 *CloseUI: *Altitude
168168 *OpenUI *PowerSave/Power Save: PickOne
169169 *OrderDependency: 10 AnySetup *PowerSave
170170 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-3160 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-3160"
1111 *ShortNickName: "Samsung CLX-3160"
12 *NickName: "Samsung CLX-3160, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-3160, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-3160"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pression de l'air: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Forte: ""
141 *Altitude HIGH/Faible: ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Source du papier: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146 *OpenUI *MediaType/Type de support: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
149 *OpenUI *MediaType/Type de papier: PickOne
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Utiliser la configuration imprimante: ""
150153 *MediaType NORMAL/Papier ordinaire: ""
152155 *MediaType THIN/Papier fin: ""
153156 *MediaType BOND/Papier Bond: ""
154157 *MediaType OHP/Transparent: ""
155 *MediaType CARD/Papier cartonné: ""
158 *MediaType CARD/Carte de visite: ""
156159 *MediaType LABEL/Étiquette: ""
157160 *MediaType USED/Papier pré-imprimé: ""
158 *MediaType COLOR/Couleur: ""
161 *MediaType COLOR/Papier coloré: ""
159162 *MediaType ENV/Enveloppe: ""
160163 *MediaType COTTON/Coton: ""
161164 *MediaType RECYCLED/Papier recyclé: ""
162165 *MediaType ARCHIVE/Archive: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pression de l'air: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Forte: ""
168 *Altitude HIGH/Faible: ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Économie d'énergie: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Désactivé: ""
174171 *PowerSave 5/5 minutes: ""
178175 *PowerSave 45/45 minutes: ""
179176 *PowerSave 60/1 heure: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Résolution: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Mode couleur: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Mode de couleur: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192189 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impression recto-verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Recto-verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clx3160.ppd, 13462 bytes.
234 *% End of clx3160.ppd, 11867 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for CLX-3160 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for CLX-3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Samsung"
1010 *ModelName: "Samsung CLX-3160"
1111 *ShortNickName: "Samsung CLX-3160"
12 *NickName: "Samsung CLX-3160, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Samsung CLX-3160, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2623 *PJL BeginPJL: "<1B>%-12345X"
2724 *PJL EndPJL: "<09><1B>%-12345X"
2825 *QPDL PacketSize: "512"
26 *cupsBackSide: "Normal"
2927 *QPDL ManualDuplex: "On"
3028 *QPDL QPDLVersion: "2"
3129 *General DocHeaderValues: "<0><0><1>"
3230 *General CMSFile: "CLX-3160"
33 *cupsVersion: 1.3
31 *cupsVersion: 1.4
3432 *cupsModelNumber: 0
3533 *cupsManualCopies: False
3634 *cupsFilter: "application/vnd.cups-postscript 0 pstoqpdl"
3735 *OpenUI *PageSize/Media Size: PickOne
3836 *OrderDependency: 10 AnySetup *PageSize
3937 *DefaultPageSize: Letter
40 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
41 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
42 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
43 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
44 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
45 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
46 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
47 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
48 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
49 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
50 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
51 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
52 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
53 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
54 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
55 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
56 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
57 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
58 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
59 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
60 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
61 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
38 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6260 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6361 *CloseUI: *PageSize
6462 *OpenUI *PageRegion/Media Size: PickOne
6563 *OrderDependency: 10 AnySetup *PageRegion
6664 *DefaultPageRegion: Letter
67 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
69 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
70 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
71 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
72 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
73 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
74 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
75 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
76 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
77 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
78 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
79 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
80 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
81 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
82 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
83 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
84 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
85 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
86 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
87 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
88 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
65 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8987 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
9088 *CloseUI: *PageRegion
9189 *DefaultImageableArea: Letter
92 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
93 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
94 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
95 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
96 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
97 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
98 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
99 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
100 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
101 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
102 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
103 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
104 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
105 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
106 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
107 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
108 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
109 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
110 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
111 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
112 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
113 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
114 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
90 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
91 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
92 *ImageableArea A4/A4: "10.75 15 584.25 827"
93 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
94 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
95 *ImageableArea A3/A3: "10.75 15 831.25 1176"
96 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
97 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
98 *ImageableArea C5/C5: "10.75 15 448.25 634"
99 *ImageableArea DL/DL: "10.75 15 301.25 609"
100 *ImageableArea B4/B4: "10.75 15 718.25 1017"
101 *ImageableArea B5/B5: "10.75 15 505.25 714"
102 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
103 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
104 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
105 *ImageableArea A5/A5: "10.75 15 409.25 580"
106 *ImageableArea A6/A6: "10.75 15 286.25 405"
107 *ImageableArea B6/B6: "10.75 15 352.25 501"
108 *ImageableArea C6/C6: "10.75 15 312.25 444"
109 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
110 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
111 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
115113 *DefaultPaperDimension: Letter
116 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
117 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
118 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
119 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
120 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
121 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
122 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
123 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
124 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
125 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
126 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
127 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
128 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
129 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
130 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
131 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
132 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
133 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
134 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
135 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
136 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
137 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
138 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
139 *RequiresPageRegion All: True
140 *OpenUI *InputSlot/Media Source: PickOne
141 *OrderDependency: 10.0 AnySetup *InputSlot
114 *PaperDimension Letter/US Letter: "612 792"
115 *PaperDimension Legal/US Legal: "612 1008"
116 *PaperDimension A4/A4: "595 842"
117 *PaperDimension Executive/US Executive: "522 756"
118 *PaperDimension Ledger/US Ledger: "1224 792"
119 *PaperDimension A3/A3: "842 1191"
120 *PaperDimension Env10/#10 Envelope: "297 684"
121 *PaperDimension Monarch/Monarch: "279 540"
122 *PaperDimension C5/C5: "459 649"
123 *PaperDimension DL/DL: "312 624"
124 *PaperDimension B4/B4: "729 1032"
125 *PaperDimension B5/B5: "516 729"
126 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
127 *PaperDimension Postcard/Postcard: "284 419"
128 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
129 *PaperDimension A5/A5: "420 595"
130 *PaperDimension A6/A6: "297 420"
131 *PaperDimension B6/B6: "363 516"
132 *PaperDimension C6/C6: "323 459"
133 *PaperDimension Folio/Folio: "595 935"
134 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
135 *PaperDimension Env9/#9 Envelope: "279 639"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
137 *OpenUI *Altitude/Pressão Atmosférica: PickOne
138 *OrderDependency: 10 AnySetup *Altitude
139 *DefaultAltitude: LOW
140 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
141 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
142 *CloseUI: *Altitude
143 *OpenUI *InputSlot/Fonte do Papel: PickOne
144 *OrderDependency: 10 AnySetup *InputSlot
142145 *DefaultInputSlot: Auto
143146 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
144 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
147 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
145148 *CloseUI: *InputSlot
146149 *OpenUI *MediaType/Tipo de Papel: PickOne
147 *OrderDependency: 10.0 AnySetup *MediaType
150 *OrderDependency: 10 AnySetup *MediaType
148151 *DefaultMediaType: OFF
149152 *MediaType OFF/Usar a Definição da Impressora: ""
150 *MediaType NORMAL/Papel normal: ""
151 *MediaType THICK/Papel grosso: ""
153 *MediaType NORMAL/Papel Comúm: ""
154 *MediaType THICK/Papel Grosso: ""
152155 *MediaType THIN/Papel Delgado (Fino): ""
153156 *MediaType BOND/Papel Bond: ""
154157 *MediaType OHP/Transparência: ""
155 *MediaType CARD/Cartolina: ""
158 *MediaType CARD/Cartão de Visita: ""
156159 *MediaType LABEL/Etiqueta: ""
157160 *MediaType USED/Papel Pré-Impresso: ""
158 *MediaType COLOR/Cor: ""
161 *MediaType COLOR/Papel Colorido: ""
159162 *MediaType ENV/Envelope: ""
160163 *MediaType COTTON/Algodão: ""
161164 *MediaType RECYCLED/Papel Reciclado: ""
162165 *MediaType ARCHIVE/Arquivamento: ""
163166 *CloseUI: *MediaType
164 *OpenUI *Altitude/Pressão Atmosférica: PickOne
165 *OrderDependency: 10.0 AnySetup *Altitude
166 *DefaultAltitude: LOW
167 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
168 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
169 *CloseUI: *Altitude
170167 *OpenUI *PowerSave/Economia de Energia: PickOne
171 *OrderDependency: 10.0 AnySetup *PowerSave
168 *OrderDependency: 10 AnySetup *PowerSave
172169 *DefaultPowerSave: 5
173170 *PowerSave False/Desligado: ""
174171 *PowerSave 5/5 Minutos: ""
178175 *PowerSave 45/45 Minutos: ""
179176 *PowerSave 60/1 Hora: ""
180177 *CloseUI: *PowerSave
181 *OpenUI *Resolution: PickOne
182 *OrderDependency: 10.0 AnySetup *Resolution
178 *OpenUI *Resolution/Resolução: PickOne
179 *OrderDependency: 10 AnySetup *Resolution
183180 *DefaultResolution: 600dpi
184181 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
186183 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
187184 *CloseUI: *Resolution
188 *OpenUI *ColorModel/Modo Cor: PickOne
189 *OrderDependency: 10.0 AnySetup *ColorModel
185 *OpenUI *ColorModel/Modo de Cor: PickOne
186 *OrderDependency: 10 AnySetup *ColorModel
190187 *DefaultColorModel: CMYK
191188 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
192 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
189 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
193190 *CloseUI: *ColorModel
194 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
195 *OrderDependency: 10.0 AnySetup *Duplex
191 *OpenUI *Duplex/Frente e Verso: PickOne
192 *OrderDependency: 10 AnySetup *Duplex
196193 *DefaultDuplex: None
197194 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
198195 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
234231 *Font Times-Roman: Standard "(1.05)" Standard ROM
235232 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
236233 *Font ZapfDingbats: Special "(001.005)" Special ROM
237 *% End of clx3160.ppd, 13563 bytes.
234 *% End of clx3160.ppd, 11940 bytes.
22 *
33 * Color printers v. 1
44 *
5 * $Id$
5 * $Id: color-v1.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77 #import "color.defs"
88
22 *
33 * Color printers v. 2
44 *
5 * $Id$
5 * $Id: color-v2.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77 #import "color.defs"
88
0 /*
1 * color-v3.defs (C) 2007, Aurélien Croc (AP²C)
2 *
3 * Color printers v. 3
4 *
5 * $Id: color-v3.defs 105 2007-11-16 02:20:18Z ap2c $
6 */
7 #import "color.defs"
8
9 // Color definition
10 ColorDevice true
11 ColorModel Gray/Grayscale k chunky 21
12 *ColorModel CMYK/Color cmyk banded 21
13
14 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 enc=utf8: */
15
22 *
33 * Color printers [---INCLUDED BY COLOR-V1.DEFS OR COLOR-V2.DEFS---]
44 *
5 * $Id$
5 * $Id: color.defs 180 2008-02-09 03:59:11Z ap2c $
66 */
77
88 // Supported resolutions
66 # the content of the file where the command is located. To finish, it calls
77 # ppdc to compile the file and generate the PPD drivers.
88 #
9 # $Id$
9 # $Id: compile.sh 277 2010-07-31 17:11:24Z tillkamppeter $
1010 #
1111
1212 #
22 *
33 * Contains the Dell printers drivers
44 *
5 * $Id$
5 * $Id: dell.drv 240 2008-11-24 00:10:09Z ap2c $
66 */
77
88 Manufacturer "Dell"
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for eSTUDIO180S with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of es180s.ppd, 12144 bytes.
242 *% End of es180s.ppd, 11736 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for eSTUDIO180S with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of es180s.ppd, 12294 bytes.
241 *% End of es180s.ppd, 11888 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for eSTUDIO180S with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of es180s.ppd, 12383 bytes.
241 *% End of es180s.ppd, 11973 bytes.
22 *
33 *
44 *
5 * $Id$
5 * $Id: filter.defs 298 2011-07-20 16:20:18Z tillkamppeter $
66 */
7
7 /* Define a custom filter type. */
8 DriverType custom
89 Filter application/vnd.cups-raster 0 rastertoqpdl
910 /* Filter application/vnd.cups-postscript 50 pstoqpdl */
1011
22 *
33 *
44 *
5 * $Id$
5 * $Id: filterColor.defs 298 2011-07-20 16:20:18Z tillkamppeter $
66 */
7
7 /* Define a custom filter type. */
8 DriverType custom
89 Filter application/vnd.cups-postscript 0 pstoqpdl
910
1011 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 enc=utf8: */
22 *
33 * Jam recovery
44 *
5 * $Id$
5 * $Id: jamrecovery.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77
88 Option "JamRecovery/Reprint When Jam" Boolean AnySetup 10
2828 Attribute QPDL QPDLVersion "1"
2929 Attribute General DocHeaderValues "<0><2><1>"
3030
31 #import "manualduplex.defs"
3231 {
3332 Resolution k 1 0 0 0 "300dpi/300 DPI"
3433
22 *
33 * Manual duplex
44 *
5 * $Id$
5 * $Id: manualduplex.defs 183 2008-02-09 15:24:43Z ap2c $
66 */
77
88 Duplex normal
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1520 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1520 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1520 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1610 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1630 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1630 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1630 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1640 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1640 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1640 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1660 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1660 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1660 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1710 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1710 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1710 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1740 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1740 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1740 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1750 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1750 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1750 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1910 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1910 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1910 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1915 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1915 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-1915 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2010 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2010 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2010 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2015 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2015 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2015 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Air pressure: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/High: ""
145 *Altitude HIGH/Low: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Media Source: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Recycled: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Air pressure: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/High: ""
174 *Altitude HIGH/Low: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Power Save: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pression de l'air: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Forte: ""
144 *Altitude HIGH/Faible: ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Source du papier: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papier recyclé: ""
167173 *MediaType ARCHIVE/Archive: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pression de l'air: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Forte: ""
173 *Altitude HIGH/Faible: ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Économie d'énergie: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pressão Atmosférica: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
144 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Fonte do Papel: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papel Reciclado: ""
167173 *MediaType ARCHIVE/Arquivamento: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pressão Atmosférica: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
173 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Economia de Energia: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2240 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2240 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2240 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2250 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
139139 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
140140 *PaperDimension Env9/#9 Envelope: "279 639"
141141 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
142 *OpenUI *Altitude/Air pressure: PickOne
143 *OrderDependency: 10 AnySetup *Altitude
144 *DefaultAltitude: LOW
145 *Altitude LOW/High: ""
146 *Altitude HIGH/Low: ""
147 *CloseUI: *Altitude
142148 *OpenUI *InputSlot/Media Source: PickOne
143149 *OrderDependency: 10 AnySetup *InputSlot
144150 *DefaultInputSlot: Auto
168174 *MediaType RECYCLED/Recycled: ""
169175 *MediaType ARCHIVE/Archive: ""
170176 *CloseUI: *MediaType
171 *OpenUI *Altitude/Air pressure: PickOne
172 *OrderDependency: 10 AnySetup *Altitude
173 *DefaultAltitude: LOW
174 *Altitude LOW/High: ""
175 *Altitude HIGH/Low: ""
176 *CloseUI: *Altitude
177177 *OpenUI *PowerSave/Power Save: PickOne
178178 *OrderDependency: 10 AnySetup *PowerSave
179179 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2250 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Pression de l'air: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/Forte: ""
145 *Altitude HIGH/Faible: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Source du papier: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Papier recyclé: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Pression de l'air: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/Forte: ""
174 *Altitude HIGH/Faible: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Économie d'énergie: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2250 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
141 *OpenUI *Altitude/Pressão Atmosférica: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
145 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Fonte do Papel: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Papel Reciclado: ""
168174 *MediaType ARCHIVE/Arquivamento: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Pressão Atmosférica: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
174 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Economia de Energia: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2251 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
139139 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
140140 *PaperDimension Env9/#9 Envelope: "279 639"
141141 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
142 *OpenUI *Altitude/Air pressure: PickOne
143 *OrderDependency: 10 AnySetup *Altitude
144 *DefaultAltitude: LOW
145 *Altitude LOW/High: ""
146 *Altitude HIGH/Low: ""
147 *CloseUI: *Altitude
142148 *OpenUI *InputSlot/Media Source: PickOne
143149 *OrderDependency: 10 AnySetup *InputSlot
144150 *DefaultInputSlot: Auto
168174 *MediaType RECYCLED/Recycled: ""
169175 *MediaType ARCHIVE/Archive: ""
170176 *CloseUI: *MediaType
171 *OpenUI *Altitude/Air pressure: PickOne
172 *OrderDependency: 10 AnySetup *Altitude
173 *DefaultAltitude: LOW
174 *Altitude LOW/High: ""
175 *Altitude HIGH/Low: ""
176 *CloseUI: *Altitude
177177 *OpenUI *PowerSave/Power Save: PickOne
178178 *OrderDependency: 10 AnySetup *PowerSave
179179 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2251 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Pression de l'air: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/Forte: ""
145 *Altitude HIGH/Faible: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Source du papier: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Papier recyclé: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Pression de l'air: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/Forte: ""
174 *Altitude HIGH/Faible: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Économie d'énergie: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2251 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
141 *OpenUI *Altitude/Pressão Atmosférica: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
145 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Fonte do Papel: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Papel Reciclado: ""
168174 *MediaType ARCHIVE/Arquivamento: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Pressão Atmosférica: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
174 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Economia de Energia: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2510 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525W with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525W with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2525W with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Air pressure: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/High: ""
145 *Altitude HIGH/Low: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Media Source: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Recycled: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Air pressure: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/High: ""
174 *Altitude HIGH/Low: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Power Save: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pression de l'air: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Forte: ""
144 *Altitude HIGH/Faible: ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Source du papier: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papier recyclé: ""
167173 *MediaType ARCHIVE/Archive: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pression de l'air: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Forte: ""
173 *Altitude HIGH/Faible: ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Économie d'énergie: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2550 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pressão Atmosférica: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
144 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Fonte do Papel: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papel Reciclado: ""
167173 *MediaType ARCHIVE/Arquivamento: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pressão Atmosférica: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
173 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Economia de Energia: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2571 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
133133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134134 *PaperDimension Env9/#9 Envelope: "279 639"
135135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *Altitude/Air pressure: PickOne
137 *OrderDependency: 10 AnySetup *Altitude
138 *DefaultAltitude: LOW
139 *Altitude LOW/High: ""
140 *Altitude HIGH/Low: ""
141 *CloseUI: *Altitude
136142 *OpenUI *InputSlot/Media Source: PickOne
137143 *OrderDependency: 10 AnySetup *InputSlot
138144 *DefaultInputSlot: Auto
157163 *MediaType RECYCLED/Recycled: ""
158164 *MediaType ARCHIVE/Archive: ""
159165 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166166 *OpenUI *PowerSave/Power Save: PickOne
167167 *OrderDependency: 10 AnySetup *PowerSave
168168 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2571 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pression de l'air: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Forte: ""
139 *Altitude HIGH/Faible: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Source du papier: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papier recyclé: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2571 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *Altitude/Pressão Atmosférica: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
139 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Fonte do Papel: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Papel Reciclado: ""
157163 *MediaType ARCHIVE/Arquivamento: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Economia de Energia: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-2580 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3050 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3050 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3050 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Air pressure: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/High: ""
139 *Altitude HIGH/Low: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Media Source: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Recycled: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Air pressure: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/High: ""
163 *Altitude HIGH/Low: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Power Save: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pression de l'air: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Forte: ""
138 *Altitude HIGH/Faible: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Source du papier: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papier recyclé: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pression de l'air: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Forte: ""
162 *Altitude HIGH/Faible: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Économie d'énergie: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pressão Atmosférica: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
138 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Fonte do Papel: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papel Reciclado: ""
156162 *MediaType ARCHIVE/Arquivamento: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pressão Atmosférica: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
162 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Economia de Energia: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3051 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3471ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Air pressure: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/High: ""
145 *Altitude HIGH/Low: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Media Source: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Recycled: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Air pressure: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/High: ""
174 *Altitude HIGH/Low: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Power Save: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3471ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pression de l'air: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Forte: ""
144 *Altitude HIGH/Faible: ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Source du papier: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papier recyclé: ""
167173 *MediaType ARCHIVE/Archive: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pression de l'air: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Forte: ""
173 *Altitude HIGH/Faible: ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Économie d'énergie: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3471ND with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pressão Atmosférica: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
144 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Fonte do Papel: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papel Reciclado: ""
167173 *MediaType ARCHIVE/Arquivamento: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pressão Atmosférica: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
173 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Economia de Energia: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3560 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
138138 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
139139 *PaperDimension Env9/#9 Envelope: "279 639"
140140 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
141 *OpenUI *Altitude/Air pressure: PickOne
142 *OrderDependency: 10 AnySetup *Altitude
143 *DefaultAltitude: LOW
144 *Altitude LOW/High: ""
145 *Altitude HIGH/Low: ""
146 *CloseUI: *Altitude
141147 *OpenUI *InputSlot/Media Source: PickOne
142148 *OrderDependency: 10 AnySetup *InputSlot
143149 *DefaultInputSlot: Auto
167173 *MediaType RECYCLED/Recycled: ""
168174 *MediaType ARCHIVE/Archive: ""
169175 *CloseUI: *MediaType
170 *OpenUI *Altitude/Air pressure: PickOne
171 *OrderDependency: 10 AnySetup *Altitude
172 *DefaultAltitude: LOW
173 *Altitude LOW/High: ""
174 *Altitude HIGH/Low: ""
175 *CloseUI: *Altitude
176176 *OpenUI *PowerSave/Power Save: PickOne
177177 *OrderDependency: 10 AnySetup *PowerSave
178178 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3560 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pression de l'air: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Forte: ""
144 *Altitude HIGH/Faible: ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Source du papier: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papier recyclé: ""
167173 *MediaType ARCHIVE/Archive: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pression de l'air: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Forte: ""
173 *Altitude HIGH/Faible: ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Économie d'énergie: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for ML-3560 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
137137 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
138138 *PaperDimension Env9/#9 Envelope: "279 639"
139139 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
140 *OpenUI *Altitude/Pressão Atmosférica: PickOne
141 *OrderDependency: 10 AnySetup *Altitude
142 *DefaultAltitude: LOW
143 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
144 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
145 *CloseUI: *Altitude
140146 *OpenUI *InputSlot/Fonte do Papel: PickOne
141147 *OrderDependency: 10 AnySetup *InputSlot
142148 *DefaultInputSlot: Auto
166172 *MediaType RECYCLED/Papel Reciclado: ""
167173 *MediaType ARCHIVE/Arquivamento: ""
168174 *CloseUI: *MediaType
169 *OpenUI *Altitude/Pressão Atmosférica: PickOne
170 *OrderDependency: 10 AnySetup *Altitude
171 *DefaultAltitude: LOW
172 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
173 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
174 *CloseUI: *Altitude
175175 *OpenUI *PowerSave/Economia de Energia: PickOne
176176 *OrderDependency: 10 AnySetup *PowerSave
177177 *DefaultPowerSave: 5
22 *
33 * Monochrome printers V. 1
44 *
5 * $Id$
5 * $Id: monochrome-v1.defs 240 2008-11-24 00:10:09Z ap2c $
66 */
77
88 // Black & White support
22 *
33 * Monochrome printers V. 2
44 *
5 * $Id$
5 * $Id: monochrome-v2.defs 240 2008-11-24 00:10:09Z ap2c $
66 */
77
88 // Black & White support
33 *
44 * Contains the Xerox printers drivers
55 *
6 * $Id$
6 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
77 */
88
99 Manufacturer "Xerox"
1313 *
1414 * Current PPDs version
1515 *
16 * $Id$
16 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
1717 */
1818
1919 Version "1.1.0"
2525 *
2626 *
2727 *
28 * $Id$
28 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
2929 */
3030 #include <font.defs>
3131 #include <media.defs>
9595 *
9696 *
9797 *
98 * $Id$
98 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
9999 */
100100
101101 Filter application/vnd.cups-raster 0 rastertospl2
112112 *
113113 * Monochrome printers
114114 *
115 * $Id$
115 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
116116 */
117117
118118 Attribute QPDL ColorPrinter "0"
132132 *
133133 * Power save
134134 *
135 * $Id$
135 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
136136 */
137137
138138 Option "PowerSave/Power Save" PickOne AnySetup 10
151151 *
152152 * Toner density
153153 *
154 * $Id$
154 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
155155 */
156156
157157 Option "TonerDensity/Toner Density" PickOne AnySetup 10
166166 *
167167 * Toner save
168168 *
169 * $Id$
169 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
170170 */
171171
172172 Option "EconoMode/Toner Save" PickOne AnySetup 10
181181 *
182182 * Jam recovery
183183 *
184 * $Id$
184 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
185185 */
186186
187187 Option "JamRecovery/Reprint When Jam" Boolean AnySetup 10
270270 *
271271 * Power save
272272 *
273 * $Id$
273 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
274274 */
275275
276276 Option "PowerSave/Power Save" PickOne AnySetup 10
292292 *
293293 * Color printers v. 1
294294 *
295 * $Id$
295 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
296296 */
297297 /*
298298 * color.defs (C) 2007, Aurélien Croc (AP²C)
299299 *
300300 * Color printers [---INCLUDED BY COLOR-V1.DEFS OR COLOR-V2.DEFS---]
301301 *
302 * $Id$
302 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
303303 */
304304
305305 Attribute QPDL ColorPrinter "1"
322322 *
323323 * Jam recovery
324324 *
325 * $Id$
325 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
326326 */
327327
328328 Option "JamRecovery/Reprint When Jam" Boolean AnySetup 10
362362 *
363363 * Color printers v. 2
364364 *
365 * $Id$
365 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
366366 */
367367 /*
368368 * color.defs (C) 2007, Aurélien Croc (AP²C)
369369 *
370370 * Color printers [---INCLUDED BY COLOR-V1.DEFS OR COLOR-V2.DEFS---]
371371 *
372 * $Id$
372 * $Id: output.drv 105 2007-11-16 02:20:18Z ap2c $
373373 */
374374
375375 Attribute QPDL ColorPrinter "1"
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3115 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3115 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3115 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3116 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3116 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3116 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3117 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3117 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3117 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3120 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3120 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3120 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3121 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3121 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3121 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3122 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3122 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3122 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3124 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3124 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3124 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3130 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3130 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3130 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3140 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: English
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3140.ppd"
8 *Product: "(Phaser 3140)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3140"
11 *ShortNickName: "Xerox Phaser 3140"
12 *NickName: "Xerox Phaser 3140, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *cupsLanguages: "en"
34 *OpenUI *PageSize/Media Size: PickOne
35 *OrderDependency: 10 AnySetup *PageSize
36 *DefaultPageSize: Letter
37 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
38 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
39 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
40 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
41 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
42 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
43 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
44 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
45 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
46 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
47 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
48 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
49 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
50 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
51 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
52 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
53 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
54 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
55 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
56 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
57 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
58 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
59 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
60 *CloseUI: *PageSize
61 *OpenUI *PageRegion/Media Size: PickOne
62 *OrderDependency: 10 AnySetup *PageRegion
63 *DefaultPageRegion: Letter
64 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
65 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
66 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
67 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
68 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
69 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
70 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
71 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
72 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
73 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
74 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
75 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
76 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
77 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
78 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
79 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
80 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
81 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
82 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
83 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
84 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
85 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
86 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
87 *CloseUI: *PageRegion
88 *DefaultImageableArea: Letter
89 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
90 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
91 *ImageableArea A4/A4: "10.75 15 584.25 827"
92 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
93 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
94 *ImageableArea A3/A3: "10.75 15 831.25 1176"
95 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
96 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
97 *ImageableArea C5/C5: "10.75 15 448.25 634"
98 *ImageableArea DL/DL: "10.75 15 301.25 609"
99 *ImageableArea B4/B4: "10.75 15 718.25 1017"
100 *ImageableArea B5/B5: "10.75 15 505.25 714"
101 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
102 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
103 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
104 *ImageableArea A5/A5: "10.75 15 409.25 580"
105 *ImageableArea A6/A6: "10.75 15 286.25 405"
106 *ImageableArea B6/B6: "10.75 15 352.25 501"
107 *ImageableArea C6/C6: "10.75 15 312.25 444"
108 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
109 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
110 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
111 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
112 *DefaultPaperDimension: Letter
113 *PaperDimension Letter/US Letter: "612 792"
114 *PaperDimension Legal/US Legal: "612 1008"
115 *PaperDimension A4/A4: "595 842"
116 *PaperDimension Executive/US Executive: "522 756"
117 *PaperDimension Ledger/US Ledger: "1224 792"
118 *PaperDimension A3/A3: "842 1191"
119 *PaperDimension Env10/#10 Envelope: "297 684"
120 *PaperDimension Monarch/Monarch: "279 540"
121 *PaperDimension C5/C5: "459 649"
122 *PaperDimension DL/DL: "312 624"
123 *PaperDimension B4/B4: "729 1032"
124 *PaperDimension B5/B5: "516 729"
125 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
126 *PaperDimension Postcard/Postcard: "284 419"
127 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
128 *PaperDimension A5/A5: "420 595"
129 *PaperDimension A6/A6: "297 420"
130 *PaperDimension B6/B6: "363 516"
131 *PaperDimension C6/C6: "323 459"
132 *PaperDimension Folio/Folio: "595 935"
133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134 *PaperDimension Env9/#9 Envelope: "279 639"
135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *InputSlot/Media Source: PickOne
137 *OrderDependency: 10 AnySetup *InputSlot
138 *DefaultInputSlot: Auto
139 *InputSlot Auto/Automatic Selection: "<</MediaPosition 1>>setpagedevice"
140 *InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
141 *CloseUI: *InputSlot
142 *OpenUI *MediaType/Paper Type: PickOne
143 *OrderDependency: 10 AnySetup *MediaType
144 *DefaultMediaType: OFF
145 *MediaType OFF/Use Printer Default: ""
146 *MediaType NORMAL/Plain Paper: ""
147 *MediaType THICK/Thick Paper: ""
148 *MediaType THIN/Thin Paper: ""
149 *MediaType BOND/Bond: ""
150 *MediaType OHP/Transparency: ""
151 *MediaType CARD/Card Stock: ""
152 *MediaType LABEL/Label: ""
153 *MediaType USED/Preprinted: ""
154 *MediaType COLOR/Colored Paper: ""
155 *MediaType ENV/Envelope: ""
156 *MediaType COTTON/Cotton: ""
157 *MediaType RECYCLED/Recycled: ""
158 *MediaType ARCHIVE/Archive: ""
159 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166 *OpenUI *PowerSave/Power Save: PickOne
167 *OrderDependency: 10 AnySetup *PowerSave
168 *DefaultPowerSave: 5
169 *PowerSave False/Off: ""
170 *PowerSave 5/5 Minutes: ""
171 *PowerSave 10/10 Minutes: ""
172 *PowerSave 15/15 Minutes: ""
173 *PowerSave 30/30 Minutes: ""
174 *PowerSave 45/45 Minutes: ""
175 *PowerSave 60/1 Hour: ""
176 *CloseUI: *PowerSave
177 *OpenUI *TonerDensity/Toner Density: PickOne
178 *OrderDependency: 10 AnySetup *TonerDensity
179 *DefaultTonerDensity: 3
180 *TonerDensity 1/Light: ""
181 *TonerDensity 3/Medium: ""
182 *TonerDensity 5/Dark: ""
183 *CloseUI: *TonerDensity
184 *OpenUI *EconoMode/Toner Save: PickOne
185 *OrderDependency: 10 AnySetup *EconoMode
186 *DefaultEconoMode: 0
187 *EconoMode 0/Use Printer Default: ""
188 *EconoMode ON/Save: ""
189 *EconoMode OFF/Standard: ""
190 *CloseUI: *EconoMode
191 *OpenUI *JamRecovery/Reprint When Jam: Boolean
192 *OrderDependency: 10 AnySetup *JamRecovery
193 *DefaultJamRecovery: False
194 *JamRecovery False/Off: ""
195 *JamRecovery True/On: ""
196 *CloseUI: *JamRecovery
197 *OpenUI *ColorModel/Color Mode: PickOne
198 *OrderDependency: 10 AnySetup *ColorModel
199 *DefaultColorModel: Gray
200 *ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
201 *CloseUI: *ColorModel
202 *OpenUI *Resolution/Resolution: PickOne
203 *OrderDependency: 10 AnySetup *Resolution
204 *DefaultResolution: 600dpi
205 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *Resolution 1200x600dpi/1200x600 DPI: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215 *DefaultFont: Courier
216 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
219 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
220 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
221 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
222 *Font Bookman-Light: Standard "(1.05)" Standard ROM
223 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
224 *Font Courier: Standard "(1.05)" Standard ROM
225 *Font Courier-Bold: Standard "(1.05)" Standard ROM
226 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
227 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
228 *Font Helvetica: Standard "(1.05)" Standard ROM
229 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
230 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
235 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
239 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
240 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
241 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
243 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
244 *Font Symbol: Special "(001.005)" Special ROM
245 *Font Times-Bold: Standard "(1.05)" Standard ROM
246 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
247 *Font Times-Italic: Standard "(1.05)" Standard ROM
248 *Font Times-Roman: Standard "(1.05)" Standard ROM
249 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of ph3140.ppd, 12147 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3140 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: French
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3140.ppd"
8 *Product: "(Phaser 3140)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3140"
11 *ShortNickName: "Xerox Phaser 3140"
12 *NickName: "Xerox Phaser 3140, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *OpenUI *PageSize/Media Size: PickOne
34 *OrderDependency: 10 AnySetup *PageSize
35 *DefaultPageSize: Letter
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
58 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
59 *CloseUI: *PageSize
60 *OpenUI *PageRegion/Media Size: PickOne
61 *OrderDependency: 10 AnySetup *PageRegion
62 *DefaultPageRegion: Letter
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
85 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
86 *CloseUI: *PageRegion
87 *DefaultImageableArea: Letter
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
111 *DefaultPaperDimension: Letter
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Source du papier: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
137 *DefaultInputSlot: Auto
138 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
139 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
140 *CloseUI: *InputSlot
141 *OpenUI *MediaType/Type de papier: PickOne
142 *OrderDependency: 10 AnySetup *MediaType
143 *DefaultMediaType: OFF
144 *MediaType OFF/Utiliser la configuration imprimante: ""
145 *MediaType NORMAL/Papier ordinaire: ""
146 *MediaType THICK/Papier épais: ""
147 *MediaType THIN/Papier fin: ""
148 *MediaType BOND/Papier Bond: ""
149 *MediaType OHP/Transparent: ""
150 *MediaType CARD/Carte de visite: ""
151 *MediaType LABEL/Étiquette: ""
152 *MediaType USED/Papier pré-imprimé: ""
153 *MediaType COLOR/Papier coloré: ""
154 *MediaType ENV/Enveloppe: ""
155 *MediaType COTTON/Coton: ""
156 *MediaType RECYCLED/Papier recyclé: ""
157 *MediaType ARCHIVE/Archive: ""
158 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166 *OrderDependency: 10 AnySetup *PowerSave
167 *DefaultPowerSave: 5
168 *PowerSave False/Désactivé: ""
169 *PowerSave 5/5 minutes: ""
170 *PowerSave 10/10 minutes: ""
171 *PowerSave 15/15 minutes: ""
172 *PowerSave 30/30 minutes: ""
173 *PowerSave 45/45 minutes: ""
174 *PowerSave 60/1 heure: ""
175 *CloseUI: *PowerSave
176 *OpenUI *TonerDensity/Densité de toner: PickOne
177 *OrderDependency: 10 AnySetup *TonerDensity
178 *DefaultTonerDensity: 3
179 *TonerDensity 1/Clair: ""
180 *TonerDensity 3/Normal: ""
181 *TonerDensity 5/Sombre: ""
182 *CloseUI: *TonerDensity
183 *OpenUI *EconoMode/Économie de toner: PickOne
184 *OrderDependency: 10 AnySetup *EconoMode
185 *DefaultEconoMode: 0
186 *EconoMode 0/Utiliser la configuration imprimante: ""
187 *EconoMode ON/Économiser: ""
188 *EconoMode OFF/Standard: ""
189 *CloseUI: *EconoMode
190 *OpenUI *JamRecovery/Réimpression si bourrage: Boolean
191 *OrderDependency: 10 AnySetup *JamRecovery
192 *DefaultJamRecovery: False
193 *JamRecovery False/Désactivé: ""
194 *JamRecovery True/Activé: ""
195 *CloseUI: *JamRecovery
196 *OpenUI *ColorModel/Mode de couleur: PickOne
197 *OrderDependency: 10 AnySetup *ColorModel
198 *DefaultColorModel: Gray
199 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Resolution/Résolution: PickOne
202 *OrderDependency: 10 AnySetup *Resolution
203 *DefaultResolution: 600dpi
204 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214 *DefaultFont: Courier
215 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
219 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
220 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
221 *Font Bookman-Light: Standard "(1.05)" Standard ROM
222 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
223 *Font Courier: Standard "(1.05)" Standard ROM
224 *Font Courier-Bold: Standard "(1.05)" Standard ROM
225 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
229 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
230 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
235 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
239 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
240 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
241 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
243 *Font Symbol: Special "(001.005)" Special ROM
244 *Font Times-Bold: Standard "(1.05)" Standard ROM
245 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
246 *Font Times-Italic: Standard "(1.05)" Standard ROM
247 *Font Times-Roman: Standard "(1.05)" Standard ROM
248 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of ph3140.ppd, 12297 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3140 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: Portuguese_Brazil
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3140.ppd"
8 *Product: "(Phaser 3140)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3140"
11 *ShortNickName: "Xerox Phaser 3140"
12 *NickName: "Xerox Phaser 3140, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *OpenUI *PageSize/Media Size: PickOne
34 *OrderDependency: 10 AnySetup *PageSize
35 *DefaultPageSize: Letter
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
58 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
59 *CloseUI: *PageSize
60 *OpenUI *PageRegion/Media Size: PickOne
61 *OrderDependency: 10 AnySetup *PageRegion
62 *DefaultPageRegion: Letter
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
85 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
86 *CloseUI: *PageRegion
87 *DefaultImageableArea: Letter
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
111 *DefaultPaperDimension: Letter
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Fonte do Papel: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
137 *DefaultInputSlot: Auto
138 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
139 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
140 *CloseUI: *InputSlot
141 *OpenUI *MediaType/Tipo de Papel: PickOne
142 *OrderDependency: 10 AnySetup *MediaType
143 *DefaultMediaType: OFF
144 *MediaType OFF/Usar a Definição da Impressora: ""
145 *MediaType NORMAL/Papel Comúm: ""
146 *MediaType THICK/Papel Grosso: ""
147 *MediaType THIN/Papel Delgado (Fino): ""
148 *MediaType BOND/Papel Bond: ""
149 *MediaType OHP/Transparência: ""
150 *MediaType CARD/Cartão de Visita: ""
151 *MediaType LABEL/Etiqueta: ""
152 *MediaType USED/Papel Pré-Impresso: ""
153 *MediaType COLOR/Papel Colorido: ""
154 *MediaType ENV/Envelope: ""
155 *MediaType COTTON/Algodão: ""
156 *MediaType RECYCLED/Papel Reciclado: ""
157 *MediaType ARCHIVE/Arquivamento: ""
158 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165 *OpenUI *PowerSave/Economia de Energia: PickOne
166 *OrderDependency: 10 AnySetup *PowerSave
167 *DefaultPowerSave: 5
168 *PowerSave False/Desligado: ""
169 *PowerSave 5/5 Minutos: ""
170 *PowerSave 10/10 Minutos: ""
171 *PowerSave 15/15 Minutos: ""
172 *PowerSave 30/30 Minutos: ""
173 *PowerSave 45/45 Minutos: ""
174 *PowerSave 60/1 Hora: ""
175 *CloseUI: *PowerSave
176 *OpenUI *TonerDensity/Densidade do Toner: PickOne
177 *OrderDependency: 10 AnySetup *TonerDensity
178 *DefaultTonerDensity: 3
179 *TonerDensity 1/Claro: ""
180 *TonerDensity 3/Normal: ""
181 *TonerDensity 5/Escuro: ""
182 *CloseUI: *TonerDensity
183 *OpenUI *EconoMode/Economia do Toner: PickOne
184 *OrderDependency: 10 AnySetup *EconoMode
185 *DefaultEconoMode: 0
186 *EconoMode 0/Usar a Definição da Impressora: ""
187 *EconoMode ON/Economizar: ""
188 *EconoMode OFF/Não Economizar: ""
189 *CloseUI: *EconoMode
190 *OpenUI *JamRecovery/Reimpressão Após Atolamento do Papel: Boolean
191 *OrderDependency: 10 AnySetup *JamRecovery
192 *DefaultJamRecovery: False
193 *JamRecovery False/Desligado: ""
194 *JamRecovery True/Ligado: ""
195 *CloseUI: *JamRecovery
196 *OpenUI *ColorModel/Modo de Cor: PickOne
197 *OrderDependency: 10 AnySetup *ColorModel
198 *DefaultColorModel: Gray
199 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Resolution/Resolução: PickOne
202 *OrderDependency: 10 AnySetup *Resolution
203 *DefaultResolution: 600dpi
204 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214 *DefaultFont: Courier
215 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
219 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
220 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
221 *Font Bookman-Light: Standard "(1.05)" Standard ROM
222 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
223 *Font Courier: Standard "(1.05)" Standard ROM
224 *Font Courier-Bold: Standard "(1.05)" Standard ROM
225 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
229 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
230 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
235 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
239 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
240 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
241 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
243 *Font Symbol: Special "(001.005)" Special ROM
244 *Font Times-Bold: Standard "(1.05)" Standard ROM
245 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
246 *Font Times-Italic: Standard "(1.05)" Standard ROM
247 *Font Times-Roman: Standard "(1.05)" Standard ROM
248 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of ph3140.ppd, 12386 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3150 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3155 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: English
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3155.ppd"
8 *Product: "(Phaser 3155)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3155"
11 *ShortNickName: "Xerox Phaser 3155"
12 *NickName: "Xerox Phaser 3155, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *cupsLanguages: "en"
34 *OpenUI *PageSize/Media Size: PickOne
35 *OrderDependency: 10 AnySetup *PageSize
36 *DefaultPageSize: Letter
37 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
38 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
39 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
40 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
41 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
42 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
43 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
44 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
45 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
46 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
47 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
48 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
49 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
50 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
51 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
52 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
53 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
54 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
55 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
56 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
57 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
58 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
59 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
60 *CloseUI: *PageSize
61 *OpenUI *PageRegion/Media Size: PickOne
62 *OrderDependency: 10 AnySetup *PageRegion
63 *DefaultPageRegion: Letter
64 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
65 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
66 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
67 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
68 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
69 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
70 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
71 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
72 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
73 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
74 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
75 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
76 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
77 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
78 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
79 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
80 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
81 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
82 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
83 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
84 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
85 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
86 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
87 *CloseUI: *PageRegion
88 *DefaultImageableArea: Letter
89 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
90 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
91 *ImageableArea A4/A4: "10.75 15 584.25 827"
92 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
93 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
94 *ImageableArea A3/A3: "10.75 15 831.25 1176"
95 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
96 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
97 *ImageableArea C5/C5: "10.75 15 448.25 634"
98 *ImageableArea DL/DL: "10.75 15 301.25 609"
99 *ImageableArea B4/B4: "10.75 15 718.25 1017"
100 *ImageableArea B5/B5: "10.75 15 505.25 714"
101 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
102 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
103 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
104 *ImageableArea A5/A5: "10.75 15 409.25 580"
105 *ImageableArea A6/A6: "10.75 15 286.25 405"
106 *ImageableArea B6/B6: "10.75 15 352.25 501"
107 *ImageableArea C6/C6: "10.75 15 312.25 444"
108 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
109 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
110 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
111 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
112 *DefaultPaperDimension: Letter
113 *PaperDimension Letter/US Letter: "612 792"
114 *PaperDimension Legal/US Legal: "612 1008"
115 *PaperDimension A4/A4: "595 842"
116 *PaperDimension Executive/US Executive: "522 756"
117 *PaperDimension Ledger/US Ledger: "1224 792"
118 *PaperDimension A3/A3: "842 1191"
119 *PaperDimension Env10/#10 Envelope: "297 684"
120 *PaperDimension Monarch/Monarch: "279 540"
121 *PaperDimension C5/C5: "459 649"
122 *PaperDimension DL/DL: "312 624"
123 *PaperDimension B4/B4: "729 1032"
124 *PaperDimension B5/B5: "516 729"
125 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
126 *PaperDimension Postcard/Postcard: "284 419"
127 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
128 *PaperDimension A5/A5: "420 595"
129 *PaperDimension A6/A6: "297 420"
130 *PaperDimension B6/B6: "363 516"
131 *PaperDimension C6/C6: "323 459"
132 *PaperDimension Folio/Folio: "595 935"
133 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134 *PaperDimension Env9/#9 Envelope: "279 639"
135 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
136 *OpenUI *InputSlot/Media Source: PickOne
137 *OrderDependency: 10 AnySetup *InputSlot
138 *DefaultInputSlot: Auto
139 *InputSlot Auto/Automatic Selection: "<</MediaPosition 1>>setpagedevice"
140 *InputSlot Manual/Manual Feed: "<</MediaPosition 2>>setpagedevice"
141 *CloseUI: *InputSlot
142 *OpenUI *MediaType/Paper Type: PickOne
143 *OrderDependency: 10 AnySetup *MediaType
144 *DefaultMediaType: OFF
145 *MediaType OFF/Use Printer Default: ""
146 *MediaType NORMAL/Plain Paper: ""
147 *MediaType THICK/Thick Paper: ""
148 *MediaType THIN/Thin Paper: ""
149 *MediaType BOND/Bond: ""
150 *MediaType OHP/Transparency: ""
151 *MediaType CARD/Card Stock: ""
152 *MediaType LABEL/Label: ""
153 *MediaType USED/Preprinted: ""
154 *MediaType COLOR/Colored Paper: ""
155 *MediaType ENV/Envelope: ""
156 *MediaType COTTON/Cotton: ""
157 *MediaType RECYCLED/Recycled: ""
158 *MediaType ARCHIVE/Archive: ""
159 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166 *OpenUI *PowerSave/Power Save: PickOne
167 *OrderDependency: 10 AnySetup *PowerSave
168 *DefaultPowerSave: 5
169 *PowerSave False/Off: ""
170 *PowerSave 5/5 Minutes: ""
171 *PowerSave 10/10 Minutes: ""
172 *PowerSave 15/15 Minutes: ""
173 *PowerSave 30/30 Minutes: ""
174 *PowerSave 45/45 Minutes: ""
175 *PowerSave 60/1 Hour: ""
176 *CloseUI: *PowerSave
177 *OpenUI *TonerDensity/Toner Density: PickOne
178 *OrderDependency: 10 AnySetup *TonerDensity
179 *DefaultTonerDensity: 3
180 *TonerDensity 1/Light: ""
181 *TonerDensity 3/Medium: ""
182 *TonerDensity 5/Dark: ""
183 *CloseUI: *TonerDensity
184 *OpenUI *EconoMode/Toner Save: PickOne
185 *OrderDependency: 10 AnySetup *EconoMode
186 *DefaultEconoMode: 0
187 *EconoMode 0/Use Printer Default: ""
188 *EconoMode ON/Save: ""
189 *EconoMode OFF/Standard: ""
190 *CloseUI: *EconoMode
191 *OpenUI *JamRecovery/Reprint When Jam: Boolean
192 *OrderDependency: 10 AnySetup *JamRecovery
193 *DefaultJamRecovery: False
194 *JamRecovery False/Off: ""
195 *JamRecovery True/On: ""
196 *CloseUI: *JamRecovery
197 *OpenUI *ColorModel/Color Mode: PickOne
198 *OrderDependency: 10 AnySetup *ColorModel
199 *DefaultColorModel: Gray
200 *ColorModel Gray/Grayscale: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
201 *CloseUI: *ColorModel
202 *OpenUI *Resolution/Resolution: PickOne
203 *OrderDependency: 10 AnySetup *Resolution
204 *DefaultResolution: 600dpi
205 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *Resolution 1200x600dpi/1200x600 DPI: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215 *DefaultFont: Courier
216 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
219 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
220 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
221 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
222 *Font Bookman-Light: Standard "(1.05)" Standard ROM
223 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
224 *Font Courier: Standard "(1.05)" Standard ROM
225 *Font Courier-Bold: Standard "(1.05)" Standard ROM
226 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
227 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
228 *Font Helvetica: Standard "(1.05)" Standard ROM
229 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
230 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
235 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
239 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
240 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
241 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
243 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
244 *Font Symbol: Special "(001.005)" Special ROM
245 *Font Times-Bold: Standard "(1.05)" Standard ROM
246 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
247 *Font Times-Italic: Standard "(1.05)" Standard ROM
248 *Font Times-Roman: Standard "(1.05)" Standard ROM
249 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of ph3155.ppd, 12147 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3155 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: French
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3155.ppd"
8 *Product: "(Phaser 3155)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3155"
11 *ShortNickName: "Xerox Phaser 3155"
12 *NickName: "Xerox Phaser 3155, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *OpenUI *PageSize/Media Size: PickOne
34 *OrderDependency: 10 AnySetup *PageSize
35 *DefaultPageSize: Letter
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
58 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
59 *CloseUI: *PageSize
60 *OpenUI *PageRegion/Media Size: PickOne
61 *OrderDependency: 10 AnySetup *PageRegion
62 *DefaultPageRegion: Letter
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
85 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
86 *CloseUI: *PageRegion
87 *DefaultImageableArea: Letter
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
111 *DefaultPaperDimension: Letter
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Source du papier: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
137 *DefaultInputSlot: Auto
138 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
139 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
140 *CloseUI: *InputSlot
141 *OpenUI *MediaType/Type de papier: PickOne
142 *OrderDependency: 10 AnySetup *MediaType
143 *DefaultMediaType: OFF
144 *MediaType OFF/Utiliser la configuration imprimante: ""
145 *MediaType NORMAL/Papier ordinaire: ""
146 *MediaType THICK/Papier épais: ""
147 *MediaType THIN/Papier fin: ""
148 *MediaType BOND/Papier Bond: ""
149 *MediaType OHP/Transparent: ""
150 *MediaType CARD/Carte de visite: ""
151 *MediaType LABEL/Étiquette: ""
152 *MediaType USED/Papier pré-imprimé: ""
153 *MediaType COLOR/Papier coloré: ""
154 *MediaType ENV/Enveloppe: ""
155 *MediaType COTTON/Coton: ""
156 *MediaType RECYCLED/Papier recyclé: ""
157 *MediaType ARCHIVE/Archive: ""
158 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165 *OpenUI *PowerSave/Économie d'énergie: PickOne
166 *OrderDependency: 10 AnySetup *PowerSave
167 *DefaultPowerSave: 5
168 *PowerSave False/Désactivé: ""
169 *PowerSave 5/5 minutes: ""
170 *PowerSave 10/10 minutes: ""
171 *PowerSave 15/15 minutes: ""
172 *PowerSave 30/30 minutes: ""
173 *PowerSave 45/45 minutes: ""
174 *PowerSave 60/1 heure: ""
175 *CloseUI: *PowerSave
176 *OpenUI *TonerDensity/Densité de toner: PickOne
177 *OrderDependency: 10 AnySetup *TonerDensity
178 *DefaultTonerDensity: 3
179 *TonerDensity 1/Clair: ""
180 *TonerDensity 3/Normal: ""
181 *TonerDensity 5/Sombre: ""
182 *CloseUI: *TonerDensity
183 *OpenUI *EconoMode/Économie de toner: PickOne
184 *OrderDependency: 10 AnySetup *EconoMode
185 *DefaultEconoMode: 0
186 *EconoMode 0/Utiliser la configuration imprimante: ""
187 *EconoMode ON/Économiser: ""
188 *EconoMode OFF/Standard: ""
189 *CloseUI: *EconoMode
190 *OpenUI *JamRecovery/Réimpression si bourrage: Boolean
191 *OrderDependency: 10 AnySetup *JamRecovery
192 *DefaultJamRecovery: False
193 *JamRecovery False/Désactivé: ""
194 *JamRecovery True/Activé: ""
195 *CloseUI: *JamRecovery
196 *OpenUI *ColorModel/Mode de couleur: PickOne
197 *OrderDependency: 10 AnySetup *ColorModel
198 *DefaultColorModel: Gray
199 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Resolution/Résolution: PickOne
202 *OrderDependency: 10 AnySetup *Resolution
203 *DefaultResolution: 600dpi
204 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214 *DefaultFont: Courier
215 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
219 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
220 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
221 *Font Bookman-Light: Standard "(1.05)" Standard ROM
222 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
223 *Font Courier: Standard "(1.05)" Standard ROM
224 *Font Courier-Bold: Standard "(1.05)" Standard ROM
225 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
229 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
230 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
235 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
239 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
240 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
241 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
243 *Font Symbol: Special "(001.005)" Special ROM
244 *Font Times-Bold: Standard "(1.05)" Standard ROM
245 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
246 *Font Times-Italic: Standard "(1.05)" Standard ROM
247 *Font Times-Roman: Standard "(1.05)" Standard ROM
248 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of ph3155.ppd, 12297 bytes.
0 *PPD-Adobe: "4.3"
1 *%%%% PPD file for Phaser 3155 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
3 *FormatVersion: "4.3"
4 *FileVersion: "2.0.0"
5 *LanguageVersion: Portuguese_Brazil
6 *LanguageEncoding: ISOLatin1
7 *PCFileName: "ph3155.ppd"
8 *Product: "(Phaser 3155)"
9 *Manufacturer: "Xerox"
10 *ModelName: "Xerox Phaser 3155"
11 *ShortNickName: "Xerox Phaser 3155"
12 *NickName: "Xerox Phaser 3155, 2.0.0"
13 *PSVersion: "(3010.000) 0"
14 *LanguageLevel: "3"
15 *ColorDevice: False
16 *DefaultColorSpace: Gray
17 *FileSystem: False
18 *Throughput: "1"
19 *LandscapeOrientation: Plus90
20 *TTRasterizer: Type42
21 *% Driver-defined attributes...
22 *QPDL BandSize: "128"
23 *PJL BeginPJL: "<1B>%-12345X"
24 *PJL EndPJL: "<09><1B>%-12345X"
25 *QPDL QPDLVersion: "3"
26 *General DocHeaderValues: "<0><0><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
29 *cupsVersion: 1.4
30 *cupsModelNumber: 0
31 *cupsManualCopies: False
32 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
33 *OpenUI *PageSize/Media Size: PickOne
34 *OrderDependency: 10 AnySetup *PageSize
35 *DefaultPageSize: Letter
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
58 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
59 *CloseUI: *PageSize
60 *OpenUI *PageRegion/Media Size: PickOne
61 *OrderDependency: 10 AnySetup *PageRegion
62 *DefaultPageRegion: Letter
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
85 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
86 *CloseUI: *PageRegion
87 *DefaultImageableArea: Letter
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
111 *DefaultPaperDimension: Letter
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Fonte do Papel: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
137 *DefaultInputSlot: Auto
138 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
139 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
140 *CloseUI: *InputSlot
141 *OpenUI *MediaType/Tipo de Papel: PickOne
142 *OrderDependency: 10 AnySetup *MediaType
143 *DefaultMediaType: OFF
144 *MediaType OFF/Usar a Definição da Impressora: ""
145 *MediaType NORMAL/Papel Comúm: ""
146 *MediaType THICK/Papel Grosso: ""
147 *MediaType THIN/Papel Delgado (Fino): ""
148 *MediaType BOND/Papel Bond: ""
149 *MediaType OHP/Transparência: ""
150 *MediaType CARD/Cartão de Visita: ""
151 *MediaType LABEL/Etiqueta: ""
152 *MediaType USED/Papel Pré-Impresso: ""
153 *MediaType COLOR/Papel Colorido: ""
154 *MediaType ENV/Envelope: ""
155 *MediaType COTTON/Algodão: ""
156 *MediaType RECYCLED/Papel Reciclado: ""
157 *MediaType ARCHIVE/Arquivamento: ""
158 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165 *OpenUI *PowerSave/Economia de Energia: PickOne
166 *OrderDependency: 10 AnySetup *PowerSave
167 *DefaultPowerSave: 5
168 *PowerSave False/Desligado: ""
169 *PowerSave 5/5 Minutos: ""
170 *PowerSave 10/10 Minutos: ""
171 *PowerSave 15/15 Minutos: ""
172 *PowerSave 30/30 Minutos: ""
173 *PowerSave 45/45 Minutos: ""
174 *PowerSave 60/1 Hora: ""
175 *CloseUI: *PowerSave
176 *OpenUI *TonerDensity/Densidade do Toner: PickOne
177 *OrderDependency: 10 AnySetup *TonerDensity
178 *DefaultTonerDensity: 3
179 *TonerDensity 1/Claro: ""
180 *TonerDensity 3/Normal: ""
181 *TonerDensity 5/Escuro: ""
182 *CloseUI: *TonerDensity
183 *OpenUI *EconoMode/Economia do Toner: PickOne
184 *OrderDependency: 10 AnySetup *EconoMode
185 *DefaultEconoMode: 0
186 *EconoMode 0/Usar a Definição da Impressora: ""
187 *EconoMode ON/Economizar: ""
188 *EconoMode OFF/Não Economizar: ""
189 *CloseUI: *EconoMode
190 *OpenUI *JamRecovery/Reimpressão Após Atolamento do Papel: Boolean
191 *OrderDependency: 10 AnySetup *JamRecovery
192 *DefaultJamRecovery: False
193 *JamRecovery False/Desligado: ""
194 *JamRecovery True/Ligado: ""
195 *CloseUI: *JamRecovery
196 *OpenUI *ColorModel/Modo de Cor: PickOne
197 *OrderDependency: 10 AnySetup *ColorModel
198 *DefaultColorModel: Gray
199 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 17>>setpagedevice"
200 *CloseUI: *ColorModel
201 *OpenUI *Resolution/Resolução: PickOne
202 *OrderDependency: 10 AnySetup *Resolution
203 *DefaultResolution: 600dpi
204 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214 *DefaultFont: Courier
215 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
217 *Font AvantGarde-Demi: Standard "(1.05)" Standard ROM
218 *Font AvantGarde-DemiOblique: Standard "(1.05)" Standard ROM
219 *Font Bookman-Demi: Standard "(1.05)" Standard ROM
220 *Font Bookman-DemiItalic: Standard "(1.05)" Standard ROM
221 *Font Bookman-Light: Standard "(1.05)" Standard ROM
222 *Font Bookman-LightItalic: Standard "(1.05)" Standard ROM
223 *Font Courier: Standard "(1.05)" Standard ROM
224 *Font Courier-Bold: Standard "(1.05)" Standard ROM
225 *Font Courier-BoldOblique: Standard "(1.05)" Standard ROM
226 *Font Courier-Oblique: Standard "(1.05)" Standard ROM
227 *Font Helvetica: Standard "(1.05)" Standard ROM
228 *Font Helvetica-Bold: Standard "(1.05)" Standard ROM
229 *Font Helvetica-BoldOblique: Standard "(1.05)" Standard ROM
230 *Font Helvetica-Narrow: Standard "(1.05)" Standard ROM
231 *Font Helvetica-Narrow-Bold: Standard "(1.05)" Standard ROM
232 *Font Helvetica-Narrow-BoldOblique: Standard "(1.05)" Standard ROM
233 *Font Helvetica-Narrow-Oblique: Standard "(1.05)" Standard ROM
234 *Font Helvetica-Oblique: Standard "(1.05)" Standard ROM
235 *Font NewCenturySchlbk-Bold: Standard "(1.05)" Standard ROM
236 *Font NewCenturySchlbk-BoldItalic: Standard "(1.05)" Standard ROM
237 *Font NewCenturySchlbk-Italic: Standard "(1.05)" Standard ROM
238 *Font NewCenturySchlbk-Roman: Standard "(1.05)" Standard ROM
239 *Font Palatino-Bold: Standard "(1.05)" Standard ROM
240 *Font Palatino-BoldItalic: Standard "(1.05)" Standard ROM
241 *Font Palatino-Italic: Standard "(1.05)" Standard ROM
242 *Font Palatino-Roman: Standard "(1.05)" Standard ROM
243 *Font Symbol: Special "(001.005)" Special ROM
244 *Font Times-Bold: Standard "(1.05)" Standard ROM
245 *Font Times-BoldItalic: Standard "(1.05)" Standard ROM
246 *Font Times-Italic: Standard "(1.05)" Standard ROM
247 *Font Times-Roman: Standard "(1.05)" Standard ROM
248 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of ph3155.ppd, 12386 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3160 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3420 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3420 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3420 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3425 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3425 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 3425 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 5500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 5500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 5500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 6100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 6100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 6100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for Phaser 6110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
00 *PPD-Adobe: "4.3"
1 *% PPD file for Phaser 6110 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for Phaser 6110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
99 *Manufacturer: "Xerox"
1010 *ModelName: "Xerox Phaser 6110"
1111 *ShortNickName: "Xerox Phaser 6110"
12 *NickName: "Xerox Phaser 6110, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Xerox Phaser 6110, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2825 *QPDL PacketSize: "512"
2926 *QPDL QPDLVersion: "2"
3027 *General DocHeaderValues: "<0><0><1>"
31 *cupsVersion: 1.3
28 *cupsBackSide: "Normal"
29 *cupsVersion: 1.4
3230 *cupsModelNumber: 0
3331 *cupsManualCopies: False
3432 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
3533 *OpenUI *PageSize/Media Size: PickOne
3634 *OrderDependency: 10 AnySetup *PageSize
3735 *DefaultPageSize: Letter
38 *PageSize Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6058 *PageSize Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6159 *CloseUI: *PageSize
6260 *OpenUI *PageRegion/Media Size: PickOne
6361 *OrderDependency: 10 AnySetup *PageRegion
6462 *DefaultPageRegion: Letter
65 *PageRegion Letter/Letter - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/Executive - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/Enveloppe n°10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarch - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/Enveloppe ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Carte postale - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/Enveloppe n°9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8785 *PageRegion Oficio/Oficio - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
8886 *CloseUI: *PageRegion
8987 *DefaultImageableArea: Letter
90 *ImageableArea Letter/Letter - 8.5x11in: "10.75 15.00 601.25 777.00"
91 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
92 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
93 *ImageableArea Executive/Executive - 7.25x10.5in: "10.75 15.00 511.25 741.00"
94 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
95 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
96 *ImageableArea Env10/Enveloppe n°10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
97 *ImageableArea Monarch/Monarch - 3.875x7.5in: "10.75 15.00 268.25 525.00"
98 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
99 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
100 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
101 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
102 *ImageableArea EnvISOB5/Enveloppe ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
103 *ImageableArea Postcard/Carte postale - 100x148mm: "10.75 15.00 273.25 404.00"
104 *ImageableArea DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "10.75 15.00 409.25 552.00"
105 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
106 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
107 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
108 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
109 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
110 *ImageableArea EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "10.75 15.00 250.25 453.00"
111 *ImageableArea Env9/Enveloppe n°9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
112 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15.00 601.25 957.00"
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Oficio - 216x340mm: "10.75 15 601.25 957"
113111 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/Letter - 8.5x11in: "612.00 792.00"
115 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
116 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
117 *PaperDimension Executive/Executive - 7.25x10.5in: "522.00 756.00"
118 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
119 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
120 *PaperDimension Env10/Enveloppe n°10 - 4.13x9.5in: "297.00 684.00"
121 *PaperDimension Monarch/Monarch - 3.875x7.5in: "279.00 540.00"
122 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
123 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
124 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
125 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
126 *PaperDimension EnvISOB5/Enveloppe ISOB5 - 176x250mm: "499.00 709.00"
127 *PaperDimension Postcard/Carte postale - 100x148mm: "284.00 419.00"
128 *PaperDimension DoublePostcardRotated/Double carte postale (tournée) - 148x200mm: "420.00 567.00"
129 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
130 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
131 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
132 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
133 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
134 *PaperDimension EnvPersonal/Enveloppe personnelle - 3.625x6.5in: "261.00 468.00"
135 *PaperDimension Env9/Enveloppe n°9 - 3.875x8.875in: "279.00 639.00"
136 *PaperDimension Oficio/Oficio - 216x340mm: "612.00 972.00"
137 *RequiresPageRegion All: True
138 *OpenUI *InputSlot/Media Source: PickOne
139 *OrderDependency: 10.0 AnySetup *InputSlot
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Source du papier: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
140137 *DefaultInputSlot: Auto
141138 *InputSlot Auto/Sélection automatique: "<</MediaPosition 1>>setpagedevice"
142 *InputSlot Manual/Manuel: "<</MediaPosition 2>>setpagedevice"
139 *InputSlot Manual/Chargement manuel: "<</MediaPosition 2>>setpagedevice"
143140 *CloseUI: *InputSlot
144 *OpenUI *MediaType/Type de support: PickOne
145 *OrderDependency: 10.0 AnySetup *MediaType
141 *OpenUI *MediaType/Type de papier: PickOne
142 *OrderDependency: 10 AnySetup *MediaType
146143 *DefaultMediaType: OFF
147144 *MediaType OFF/Utiliser la configuration imprimante: ""
148145 *MediaType NORMAL/Papier ordinaire: ""
150147 *MediaType THIN/Papier fin: ""
151148 *MediaType BOND/Papier Bond: ""
152149 *MediaType OHP/Transparent: ""
153 *MediaType CARD/Papier cartonné: ""
150 *MediaType CARD/Carte de visite: ""
154151 *MediaType LABEL/Étiquette: ""
155152 *MediaType USED/Papier pré-imprimé: ""
156 *MediaType COLOR/Couleur: ""
153 *MediaType COLOR/Papier coloré: ""
157154 *MediaType ENV/Enveloppe: ""
158155 *MediaType COTTON/Coton: ""
159156 *MediaType RECYCLED/Papier recyclé: ""
160157 *MediaType ARCHIVE/Archive: ""
161158 *CloseUI: *MediaType
162159 *OpenUI *Altitude/Pression de l'air: PickOne
163 *OrderDependency: 10.0 AnySetup *Altitude
160 *OrderDependency: 10 AnySetup *Altitude
164161 *DefaultAltitude: LOW
165162 *Altitude LOW/Forte: ""
166163 *Altitude HIGH/Faible: ""
167164 *CloseUI: *Altitude
168165 *OpenUI *PowerSave/Économie d'énergie: PickOne
169 *OrderDependency: 10.0 AnySetup *PowerSave
166 *OrderDependency: 10 AnySetup *PowerSave
170167 *DefaultPowerSave: 5
171168 *PowerSave False/Désactivé: ""
172169 *PowerSave 5/5 minutes: ""
176173 *PowerSave 45/45 minutes: ""
177174 *PowerSave 60/1 heure: ""
178175 *CloseUI: *PowerSave
179 *OpenUI *Resolution: PickOne
180 *OrderDependency: 10.0 AnySetup *Resolution
176 *OpenUI *Resolution/Résolution: PickOne
177 *OrderDependency: 10 AnySetup *Resolution
181178 *DefaultResolution: 600dpi
182179 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
183180 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
184181 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Mode couleur: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Mode de couleur: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Niveau de gris: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190187 *ColorModel CMYK/Couleur: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impression recto-verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Recto-verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of ph6110.ppd, 13410 bytes.
232 *% End of ph6110.ppd, 11818 bytes.
00 *PPD-Adobe: "4.3"
1 *% PPD file for Phaser 6110 with CUPS.
2 *% Created by the CUPS PPD Compiler v1.2.3.
1 *%%%% PPD file for Phaser 6110 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
99 *Manufacturer: "Xerox"
1010 *ModelName: "Xerox Phaser 6110"
1111 *ShortNickName: "Xerox Phaser 6110"
12 *NickName: "Xerox Phaser 6110, SpliX V. 2.0.0"
13 *PSVersion: "(3010.000) 705"
14 *PSVersion: "(3010.000) 707"
15 *PSVersion: "(3010.000) 815"
16 *PSVersion: "(3010.000) 853"
12 *NickName: "Xerox Phaser 6110, 2.0.0"
13 *PSVersion: "(3010.000) 0"
1714 *LanguageLevel: "3"
1815 *ColorDevice: True
1916 *DefaultColorSpace: RGB
2825 *QPDL PacketSize: "512"
2926 *QPDL QPDLVersion: "2"
3027 *General DocHeaderValues: "<0><0><1>"
31 *cupsVersion: 1.3
28 *cupsBackSide: "Normal"
29 *cupsVersion: 1.4
3230 *cupsModelNumber: 0
3331 *cupsManualCopies: False
3432 *cupsFilter: "application/vnd.cups-raster 0 rastertoqpdl"
3533 *OpenUI *PageSize/Media Size: PickOne
3634 *OrderDependency: 10 AnySetup *PageSize
3735 *DefaultPageSize: Letter
38 *PageSize Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
39 *PageSize Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
40 *PageSize A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
41 *PageSize Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
42 *PageSize Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
43 *PageSize A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
44 *PageSize Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
45 *PageSize Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
46 *PageSize C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
47 *PageSize DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
48 *PageSize B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
49 *PageSize B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
50 *PageSize EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
51 *PageSize Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
52 *PageSize DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
53 *PageSize A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
54 *PageSize A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
55 *PageSize B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
56 *PageSize C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
57 *PageSize Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
58 *PageSize EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
59 *PageSize Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
36 *PageSize Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
37 *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
38 *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
39 *PageSize Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
40 *PageSize Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
41 *PageSize A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
42 *PageSize Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
43 *PageSize Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
44 *PageSize C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
45 *PageSize DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
46 *PageSize B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
47 *PageSize B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
48 *PageSize EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
49 *PageSize Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
50 *PageSize DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
51 *PageSize A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
52 *PageSize A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
53 *PageSize B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
54 *PageSize C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
55 *PageSize Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
56 *PageSize EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
57 *PageSize Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
6058 *PageSize Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
6159 *CloseUI: *PageSize
6260 *OpenUI *PageRegion/Media Size: PickOne
6361 *OrderDependency: 10 AnySetup *PageRegion
6462 *DefaultPageRegion: Letter
65 *PageRegion Letter/Carta - 8.5x11in: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
66 *PageRegion Legal/Legal - 8.5x14in: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
67 *PageRegion A4/A4 - 210x297mm: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
68 *PageRegion Executive/Executivo - 7.25x10.5in: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
69 *PageRegion Ledger/Ledger - 17x11in: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
70 *PageRegion A3/A3 - 297x420mm: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
71 *PageRegion Env10/Envelope Número 10 - 4.13x9.5in: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
72 *PageRegion Monarch/Monarca - 3.875x7.5in: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
73 *PageRegion C5/C5 - 162x229mm: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
74 *PageRegion DL/DL - 110x220mm: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
75 *PageRegion B4/B4 - 257x364mm: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
76 *PageRegion B5/B5 - 182x257mm: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
77 *PageRegion EnvISOB5/Envelope ISOB5 - 176x250mm: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
78 *PageRegion Postcard/Cartão Postal - 100x148mm: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
79 *PageRegion DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
80 *PageRegion A5/A5 - 148x210mm: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
81 *PageRegion A6/A6 - 105x148mm: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
82 *PageRegion B6/B6 - 128x182mm: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
83 *PageRegion C6/C6 - 114x162mm: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
84 *PageRegion Folio/Folio - 210x330mm: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
85 *PageRegion EnvPersonal/Envelope Pessoal - 3.625x6.5in: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
86 *PageRegion Env9/Envelope Número 9 - 3.875x8.875in: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
63 *PageRegion Letter/US Letter: "<</PageSize[612 792]/ImagingBBox null>>setpagedevice"
64 *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
65 *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
66 *PageRegion Executive/US Executive: "<</PageSize[522 756]/ImagingBBox null>>setpagedevice"
67 *PageRegion Ledger/US Ledger: "<</PageSize[1224 792]/ImagingBBox null>>setpagedevice"
68 *PageRegion A3/A3: "<</PageSize[842 1191]/ImagingBBox null>>setpagedevice"
69 *PageRegion Env10/#10 Envelope: "<</PageSize[297 684]/ImagingBBox null>>setpagedevice"
70 *PageRegion Monarch/Monarch: "<</PageSize[279 540]/ImagingBBox null>>setpagedevice"
71 *PageRegion C5/C5: "<</PageSize[459 649]/ImagingBBox null>>setpagedevice"
72 *PageRegion DL/DL: "<</PageSize[312 624]/ImagingBBox null>>setpagedevice"
73 *PageRegion B4/B4: "<</PageSize[729 1032]/ImagingBBox null>>setpagedevice"
74 *PageRegion B5/B5: "<</PageSize[516 729]/ImagingBBox null>>setpagedevice"
75 *PageRegion EnvISOB5/ISO B5 Envelope: "<</PageSize[499 709]/ImagingBBox null>>setpagedevice"
76 *PageRegion Postcard/Postcard: "<</PageSize[284 419]/ImagingBBox null>>setpagedevice"
77 *PageRegion DoublePostcardRotated/Double Postcard: "<</PageSize[420 567]/ImagingBBox null>>setpagedevice"
78 *PageRegion A5/A5: "<</PageSize[420 595]/ImagingBBox null>>setpagedevice"
79 *PageRegion A6/A6: "<</PageSize[297 420]/ImagingBBox null>>setpagedevice"
80 *PageRegion B6/B6: "<</PageSize[363 516]/ImagingBBox null>>setpagedevice"
81 *PageRegion C6/C6: "<</PageSize[323 459]/ImagingBBox null>>setpagedevice"
82 *PageRegion Folio/Folio: "<</PageSize[595 935]/ImagingBBox null>>setpagedevice"
83 *PageRegion EnvPersonal/Personal Envelope: "<</PageSize[261 468]/ImagingBBox null>>setpagedevice"
84 *PageRegion Env9/#9 Envelope: "<</PageSize[279 639]/ImagingBBox null>>setpagedevice"
8785 *PageRegion Oficio/Ofício - 216x340mm: "<</PageSize[612 972]/ImagingBBox null>>setpagedevice"
8886 *CloseUI: *PageRegion
8987 *DefaultImageableArea: Letter
90 *ImageableArea Letter/Carta - 8.5x11in: "10.75 15.00 601.25 777.00"
91 *ImageableArea Legal/Legal - 8.5x14in: "10.75 15.00 601.25 993.00"
92 *ImageableArea A4/A4 - 210x297mm: "10.75 15.00 584.25 827.00"
93 *ImageableArea Executive/Executivo - 7.25x10.5in: "10.75 15.00 511.25 741.00"
94 *ImageableArea Ledger/Ledger - 17x11in: "10.75 15.00 1213.25 777.00"
95 *ImageableArea A3/A3 - 297x420mm: "10.75 15.00 831.25 1176.00"
96 *ImageableArea Env10/Envelope Número 10 - 4.13x9.5in: "10.75 15.00 286.25 669.00"
97 *ImageableArea Monarch/Monarca - 3.875x7.5in: "10.75 15.00 268.25 525.00"
98 *ImageableArea C5/C5 - 162x229mm: "10.75 15.00 448.25 634.00"
99 *ImageableArea DL/DL - 110x220mm: "10.75 15.00 301.25 609.00"
100 *ImageableArea B4/B4 - 257x364mm: "10.75 15.00 718.25 1017.00"
101 *ImageableArea B5/B5 - 182x257mm: "10.75 15.00 505.25 714.00"
102 *ImageableArea EnvISOB5/Envelope ISOB5 - 176x250mm: "10.75 15.00 488.25 694.00"
103 *ImageableArea Postcard/Cartão Postal - 100x148mm: "10.75 15.00 273.25 404.00"
104 *ImageableArea DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "10.75 15.00 409.25 552.00"
105 *ImageableArea A5/A5 - 148x210mm: "10.75 15.00 409.25 580.00"
106 *ImageableArea A6/A6 - 105x148mm: "10.75 15.00 286.25 405.00"
107 *ImageableArea B6/B6 - 128x182mm: "10.75 15.00 352.25 501.00"
108 *ImageableArea C6/C6 - 114x162mm: "10.75 15.00 312.25 444.00"
109 *ImageableArea Folio/Folio - 210x330mm: "10.75 15.00 584.25 920.00"
110 *ImageableArea EnvPersonal/Envelope Pessoal - 3.625x6.5in: "10.75 15.00 250.25 453.00"
111 *ImageableArea Env9/Envelope Número 9 - 3.875x8.875in: "10.75 15.00 268.25 624.00"
112 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15.00 601.25 957.00"
88 *ImageableArea Letter/US Letter: "10.75 15 601.25 777"
89 *ImageableArea Legal/US Legal: "10.75 15 601.25 993"
90 *ImageableArea A4/A4: "10.75 15 584.25 827"
91 *ImageableArea Executive/US Executive: "10.75 15 511.25 741"
92 *ImageableArea Ledger/US Ledger: "10.75 15 1213.25 777"
93 *ImageableArea A3/A3: "10.75 15 831.25 1176"
94 *ImageableArea Env10/#10 Envelope: "10.75 15 286.25 669"
95 *ImageableArea Monarch/Monarch: "10.75 15 268.25 525"
96 *ImageableArea C5/C5: "10.75 15 448.25 634"
97 *ImageableArea DL/DL: "10.75 15 301.25 609"
98 *ImageableArea B4/B4: "10.75 15 718.25 1017"
99 *ImageableArea B5/B5: "10.75 15 505.25 714"
100 *ImageableArea EnvISOB5/ISO B5 Envelope: "10.75 15 488.25 694"
101 *ImageableArea Postcard/Postcard: "10.75 15 273.25 404"
102 *ImageableArea DoublePostcardRotated/Double Postcard: "10.75 15 409.25 552"
103 *ImageableArea A5/A5: "10.75 15 409.25 580"
104 *ImageableArea A6/A6: "10.75 15 286.25 405"
105 *ImageableArea B6/B6: "10.75 15 352.25 501"
106 *ImageableArea C6/C6: "10.75 15 312.25 444"
107 *ImageableArea Folio/Folio: "10.75 15 584.25 920"
108 *ImageableArea EnvPersonal/Personal Envelope: "10.75 15 250.25 453"
109 *ImageableArea Env9/#9 Envelope: "10.75 15 268.25 624"
110 *ImageableArea Oficio/Ofício - 216x340mm: "10.75 15 601.25 957"
113111 *DefaultPaperDimension: Letter
114 *PaperDimension Letter/Carta - 8.5x11in: "612.00 792.00"
115 *PaperDimension Legal/Legal - 8.5x14in: "612.00 1008.00"
116 *PaperDimension A4/A4 - 210x297mm: "595.00 842.00"
117 *PaperDimension Executive/Executivo - 7.25x10.5in: "522.00 756.00"
118 *PaperDimension Ledger/Ledger - 17x11in: "1224.00 792.00"
119 *PaperDimension A3/A3 - 297x420mm: "842.00 1191.00"
120 *PaperDimension Env10/Envelope Número 10 - 4.13x9.5in: "297.00 684.00"
121 *PaperDimension Monarch/Monarca - 3.875x7.5in: "279.00 540.00"
122 *PaperDimension C5/C5 - 162x229mm: "459.00 649.00"
123 *PaperDimension DL/DL - 110x220mm: "312.00 624.00"
124 *PaperDimension B4/B4 - 257x364mm: "729.00 1032.00"
125 *PaperDimension B5/B5 - 182x257mm: "516.00 729.00"
126 *PaperDimension EnvISOB5/Envelope ISOB5 - 176x250mm: "499.00 709.00"
127 *PaperDimension Postcard/Cartão Postal - 100x148mm: "284.00 419.00"
128 *PaperDimension DoublePostcardRotated/Cartão Postal Duplo (Rotacionado) - 148x200mm: "420.00 567.00"
129 *PaperDimension A5/A5 - 148x210mm: "420.00 595.00"
130 *PaperDimension A6/A6 - 105x148mm: "297.00 420.00"
131 *PaperDimension B6/B6 - 128x182mm: "363.00 516.00"
132 *PaperDimension C6/C6 - 114x162mm: "323.00 459.00"
133 *PaperDimension Folio/Folio - 210x330mm: "595.00 935.00"
134 *PaperDimension EnvPersonal/Envelope Pessoal - 3.625x6.5in: "261.00 468.00"
135 *PaperDimension Env9/Envelope Número 9 - 3.875x8.875in: "279.00 639.00"
136 *PaperDimension Oficio/Ofício - 216x340mm: "612.00 972.00"
137 *RequiresPageRegion All: True
138 *OpenUI *InputSlot/Media Source: PickOne
139 *OrderDependency: 10.0 AnySetup *InputSlot
112 *PaperDimension Letter/US Letter: "612 792"
113 *PaperDimension Legal/US Legal: "612 1008"
114 *PaperDimension A4/A4: "595 842"
115 *PaperDimension Executive/US Executive: "522 756"
116 *PaperDimension Ledger/US Ledger: "1224 792"
117 *PaperDimension A3/A3: "842 1191"
118 *PaperDimension Env10/#10 Envelope: "297 684"
119 *PaperDimension Monarch/Monarch: "279 540"
120 *PaperDimension C5/C5: "459 649"
121 *PaperDimension DL/DL: "312 624"
122 *PaperDimension B4/B4: "729 1032"
123 *PaperDimension B5/B5: "516 729"
124 *PaperDimension EnvISOB5/ISO B5 Envelope: "499 709"
125 *PaperDimension Postcard/Postcard: "284 419"
126 *PaperDimension DoublePostcardRotated/Double Postcard: "420 567"
127 *PaperDimension A5/A5: "420 595"
128 *PaperDimension A6/A6: "297 420"
129 *PaperDimension B6/B6: "363 516"
130 *PaperDimension C6/C6: "323 459"
131 *PaperDimension Folio/Folio: "595 935"
132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133 *PaperDimension Env9/#9 Envelope: "279 639"
134 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
135 *OpenUI *InputSlot/Fonte do Papel: PickOne
136 *OrderDependency: 10 AnySetup *InputSlot
140137 *DefaultInputSlot: Auto
141138 *InputSlot Auto/Seleção Automática: "<</MediaPosition 1>>setpagedevice"
142 *InputSlot Manual/Alimentação Manual: "<</MediaPosition 2>>setpagedevice"
139 *InputSlot Manual/Alimentador Manual: "<</MediaPosition 2>>setpagedevice"
143140 *CloseUI: *InputSlot
144141 *OpenUI *MediaType/Tipo de Papel: PickOne
145 *OrderDependency: 10.0 AnySetup *MediaType
142 *OrderDependency: 10 AnySetup *MediaType
146143 *DefaultMediaType: OFF
147144 *MediaType OFF/Usar a Definição da Impressora: ""
148 *MediaType NORMAL/Papel normal: ""
149 *MediaType THICK/Papel grosso: ""
145 *MediaType NORMAL/Papel Comúm: ""
146 *MediaType THICK/Papel Grosso: ""
150147 *MediaType THIN/Papel Delgado (Fino): ""
151148 *MediaType BOND/Papel Bond: ""
152149 *MediaType OHP/Transparência: ""
153 *MediaType CARD/Cartolina: ""
150 *MediaType CARD/Cartão de Visita: ""
154151 *MediaType LABEL/Etiqueta: ""
155152 *MediaType USED/Papel Pré-Impresso: ""
156 *MediaType COLOR/Cor: ""
153 *MediaType COLOR/Papel Colorido: ""
157154 *MediaType ENV/Envelope: ""
158155 *MediaType COTTON/Algodão: ""
159156 *MediaType RECYCLED/Papel Reciclado: ""
160157 *MediaType ARCHIVE/Arquivamento: ""
161158 *CloseUI: *MediaType
162159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
163 *OrderDependency: 10.0 AnySetup *Altitude
160 *OrderDependency: 10 AnySetup *Altitude
164161 *DefaultAltitude: LOW
165162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
166163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
167164 *CloseUI: *Altitude
168165 *OpenUI *PowerSave/Economia de Energia: PickOne
169 *OrderDependency: 10.0 AnySetup *PowerSave
166 *OrderDependency: 10 AnySetup *PowerSave
170167 *DefaultPowerSave: 5
171168 *PowerSave False/Desligado: ""
172169 *PowerSave 5/5 Minutos: ""
176173 *PowerSave 45/45 Minutos: ""
177174 *PowerSave 60/1 Hora: ""
178175 *CloseUI: *PowerSave
179 *OpenUI *Resolution: PickOne
180 *OrderDependency: 10.0 AnySetup *Resolution
176 *OpenUI *Resolution/Resolução: PickOne
177 *OrderDependency: 10 AnySetup *Resolution
181178 *DefaultResolution: 600dpi
182179 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
183180 *Resolution 1200dpi/1200 PPP: "<</HWResolution[1200 1200]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
184181 *Resolution 1200x600dpi/1200x600 PPP: "<</HWResolution[1200 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0>>setpagedevice"
185182 *CloseUI: *Resolution
186 *OpenUI *ColorModel/Modo Cor: PickOne
187 *OrderDependency: 10.0 AnySetup *ColorModel
183 *OpenUI *ColorModel/Modo de Cor: PickOne
184 *OrderDependency: 10 AnySetup *ColorModel
188185 *DefaultColorModel: CMYK
189186 *ColorModel Gray/Tons de Cinza: "<</cupsColorSpace 3/cupsColorOrder 0/cupsCompression 19>>setpagedevice"
190 *ColorModel CMYK/Inativo: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
187 *ColorModel CMYK/Cor: "<</cupsColorSpace 6/cupsColorOrder 1/cupsCompression 19>>setpagedevice"
191188 *CloseUI: *ColorModel
192 *OpenUI *Duplex/Impressão em Frente e Verso: PickOne
193 *OrderDependency: 10.0 AnySetup *Duplex
189 *OpenUI *Duplex/Frente e Verso: PickOne
190 *OrderDependency: 10 AnySetup *Duplex
194191 *DefaultDuplex: None
195192 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
196193 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
232229 *Font Times-Roman: Standard "(1.05)" Standard ROM
233230 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
234231 *Font ZapfDingbats: Special "(001.005)" Special ROM
235 *% End of ph6110.ppd, 13511 bytes.
232 *% End of ph6110.ppd, 11891 bytes.
396396 msgid "Reverse duplex"
397397 msgstr "TRANSLATE Reverse duplex"
398398
399 msgid "SCX-4100"
400 msgstr "TRANSLATE SCX-4100"
401
402 msgid "US Letter"
403 msgstr "TRANSLATE US Letter"
404
405 msgid "US Legal"
406 msgstr "TRANSLATE US Legal"
407
408 msgid "A4"
409 msgstr "TRANSLATE A4"
410
411 msgid "US Executive"
412 msgstr "TRANSLATE US Executive"
413
414 msgid "US Ledger"
415 msgstr "TRANSLATE US Ledger"
416
417 msgid "A3"
418 msgstr "TRANSLATE A3"
419
420 msgid "#10 Envelope"
421 msgstr "TRANSLATE #10 Envelope"
422
423 msgid "Monarch"
424 msgstr "TRANSLATE Monarch"
425
426 msgid "C5"
427 msgstr "TRANSLATE C5"
428
429 msgid "DL"
430 msgstr "TRANSLATE DL"
431
432 msgid "B4"
433 msgstr "TRANSLATE B4"
434
435 msgid "B5"
436 msgstr "TRANSLATE B5"
437
438 msgid "ISO B5 Envelope"
439 msgstr "TRANSLATE ISO B5 Envelope"
440
441 msgid "Postcard"
442 msgstr "TRANSLATE Postcard"
443
444 msgid "Double Postcard"
445 msgstr "TRANSLATE Double Postcard"
446
447 msgid "A5"
448 msgstr "TRANSLATE A5"
449
450 msgid "A6"
451 msgstr "TRANSLATE A6"
452
453 msgid "B6"
454 msgstr "TRANSLATE B6"
455
456 msgid "C6"
457 msgstr "TRANSLATE C6"
458
459 msgid "Folio"
460 msgstr "TRANSLATE Folio"
461
462 msgid "Personal Envelope"
463 msgstr "TRANSLATE Personal Envelope"
464
465 msgid "#9 Envelope"
466 msgstr "TRANSLATE #9 Envelope"
467
468 msgid "Air pressure"
469 msgstr "TRANSLATE Air pressure"
470
471 msgid "High"
472 msgstr "TRANSLATE High"
473
474 msgid "Low"
475 msgstr "TRANSLATE Low"
476
477 msgid "SCX-4200"
478 msgstr "TRANSLATE SCX-4200"
479
480 msgid "SCX-4216F"
481 msgstr "TRANSLATE SCX-4216F"
482
483 msgid "SCX-4300"
484 msgstr "TRANSLATE SCX-4300"
485
486 msgid "SCX-4500"
487 msgstr "TRANSLATE SCX-4500"
488
489 msgid "SCX-4521F"
490 msgstr "TRANSLATE SCX-4521F"
491
492 msgid "SF-565P"
493 msgstr "TRANSLATE SF-565P"
494
495 msgid "ML-2571"
496 msgstr "TRANSLATE ML-2571"
497
498 msgid "ML-2251"
499 msgstr "TRANSLATE ML-2251"
500
501 msgid "ML-3471ND"
502 msgstr "TRANSLATE ML-3471ND"
503
504 msgid "ML-1640"
505 msgstr "TRANSLATE ML-1640"
506
507 msgid "ML-2015"
508 msgstr "TRANSLATE ML-2015"
509
510 msgid "ML-2240"
511 msgstr "TRANSLATE ML-2240"
512
513 msgid "ML-1660"
514 msgstr "TRANSLATE ML-1660"
515
516 msgid "ML-1910"
517 msgstr "TRANSLATE ML-1910"
518
519 msgid "ML-1915"
520 msgstr "TRANSLATE ML-1915"
521
522 msgid "ML-2525"
523 msgstr "TRANSLATE ML-2525"
524
525 msgid "ML-2525W"
526 msgstr "TRANSLATE ML-2525W"
527
528 msgid "ML-2580"
529 msgstr "TRANSLATE ML-2580"
530
531 msgid "ML-2580N"
532 msgstr "TRANSLATE ML-2580N"
533
534 msgid "ML-3051"
535 msgstr "TRANSLATE ML-3051"
536
537 msgid "SCX-4600"
538 msgstr "TRANSLATE SCX-4600"
539
540 msgid "SCX-4623f"
541 msgstr "TRANSLATE SCX-4623f"
542
543 msgid "SCX-4623fw"
544 msgstr "TRANSLATE SCX-4623fw"
545
546 msgid "ML-3051ND"
547 msgstr "TRANSLATE ML-3051ND"
548
549 msgid "SCX-5330N"
550 msgstr "TRANSLATE SCX-5330N"
551
552 msgid "SCX-5530FN"
553 msgstr "TRANSLATE SCX-5530FN"
554
555 msgid "CLP-550"
556 msgstr "TRANSLATE CLP-550"
557
558 msgid "CLP-610ND"
559 msgstr "TRANSLATE CLP-610ND"
560
561 msgid "CLP-310N"
562 msgstr "TRANSLATE CLP-310N"
563
564 msgid "CLP-310"
565 msgstr "TRANSLATE CLP-310"
566
567 msgid "CLP-315"
568 msgstr "TRANSLATE CLP-315"
569
570 msgid "WorkCentre 3119"
571 msgstr "TRANSLATE WorkCentre 3119"
572
573 msgid "WorkCentre PE16"
574 msgstr "TRANSLATE WorkCentre PE16"
575
576 msgid "WorkCentre PE114e"
577 msgstr "TRANSLATE WorkCentre PE114e"
578
579 msgid "Phaser 3160"
580 msgstr "TRANSLATE Phaser 3160"
581
582 msgid "Phaser 3124"
583 msgstr "TRANSLATE Phaser 3124"
584
585 msgid "Phaser 3140"
586 msgstr "TRANSLATE Phaser 3140"
587
588 msgid "Lexmark"
589 msgstr "TRANSLATE Lexmark"
590
591 msgid "X215 MFP"
592 msgstr "TRANSLATE X215 MFP"
593
594 msgid "Toshiba"
595 msgstr "TRANSLATE Toshiba"
596
597 msgid "eSTUDIO180S"
598 msgstr "TRANSLATE eSTUDIO180S"
599
600 msgid "Phaser 3155"
601 msgstr "TRANSLATE Phaser 3155"
602
261261 msgid "CLP-510"
262262 msgstr "CLP-510"
263263
264 msgid "CLP-60"
265 msgstr "CLP-60"
266
267264 msgid "CLP-500"
268265 msgstr "CLP-500"
269266
597594 msgid "CLP-310N"
598595 msgstr "CLP-310N"
599596
597 msgid "CLP-310"
598 msgstr "CLP-310"
599
600 msgid "CLP-315"
601 msgstr "CLP-315"
602
603 msgid "CustomPageSize"
604 msgstr "Personalisé"
605
606 msgid "Phaser 3140"
607 msgstr "Phaser 3140"
608
609 msgid "Phaser 3155"
610 msgstr "Phaser 3155"
611
396396 msgid "Reverse duplex"
397397 msgstr "TRANSLATE Reverse duplex"
398398
399 msgid "SCX-4100"
400 msgstr "TRANSLATE SCX-4100"
401
402 msgid "US Letter"
403 msgstr "TRANSLATE US Letter"
404
405 msgid "US Legal"
406 msgstr "TRANSLATE US Legal"
407
408 msgid "A4"
409 msgstr "TRANSLATE A4"
410
411 msgid "US Executive"
412 msgstr "TRANSLATE US Executive"
413
414 msgid "US Ledger"
415 msgstr "TRANSLATE US Ledger"
416
417 msgid "A3"
418 msgstr "TRANSLATE A3"
419
420 msgid "#10 Envelope"
421 msgstr "TRANSLATE #10 Envelope"
422
423 msgid "Monarch"
424 msgstr "TRANSLATE Monarch"
425
426 msgid "C5"
427 msgstr "TRANSLATE C5"
428
429 msgid "DL"
430 msgstr "TRANSLATE DL"
431
432 msgid "B4"
433 msgstr "TRANSLATE B4"
434
435 msgid "B5"
436 msgstr "TRANSLATE B5"
437
438 msgid "ISO B5 Envelope"
439 msgstr "TRANSLATE ISO B5 Envelope"
440
441 msgid "Postcard"
442 msgstr "TRANSLATE Postcard"
443
444 msgid "Double Postcard"
445 msgstr "TRANSLATE Double Postcard"
446
447 msgid "A5"
448 msgstr "TRANSLATE A5"
449
450 msgid "A6"
451 msgstr "TRANSLATE A6"
452
453 msgid "B6"
454 msgstr "TRANSLATE B6"
455
456 msgid "C6"
457 msgstr "TRANSLATE C6"
458
459 msgid "Folio"
460 msgstr "TRANSLATE Folio"
461
462 msgid "Personal Envelope"
463 msgstr "TRANSLATE Personal Envelope"
464
465 msgid "#9 Envelope"
466 msgstr "TRANSLATE #9 Envelope"
467
468 msgid "Air pressure"
469 msgstr "TRANSLATE Air pressure"
470
471 msgid "High"
472 msgstr "TRANSLATE High"
473
474 msgid "Low"
475 msgstr "TRANSLATE Low"
476
477 msgid "SCX-4200"
478 msgstr "TRANSLATE SCX-4200"
479
480 msgid "SCX-4216F"
481 msgstr "TRANSLATE SCX-4216F"
482
483 msgid "SCX-4300"
484 msgstr "TRANSLATE SCX-4300"
485
486 msgid "SCX-4500"
487 msgstr "TRANSLATE SCX-4500"
488
489 msgid "SCX-4521F"
490 msgstr "TRANSLATE SCX-4521F"
491
492 msgid "SF-565P"
493 msgstr "TRANSLATE SF-565P"
494
495 msgid "ML-2571"
496 msgstr "TRANSLATE ML-2571"
497
498 msgid "ML-2251"
499 msgstr "TRANSLATE ML-2251"
500
501 msgid "ML-3471ND"
502 msgstr "TRANSLATE ML-3471ND"
503
504 msgid "ML-1640"
505 msgstr "TRANSLATE ML-1640"
506
507 msgid "ML-2015"
508 msgstr "TRANSLATE ML-2015"
509
510 msgid "ML-2240"
511 msgstr "TRANSLATE ML-2240"
512
513 msgid "ML-1660"
514 msgstr "TRANSLATE ML-1660"
515
516 msgid "ML-1910"
517 msgstr "TRANSLATE ML-1910"
518
519 msgid "ML-1915"
520 msgstr "TRANSLATE ML-1915"
521
522 msgid "ML-2525"
523 msgstr "TRANSLATE ML-2525"
524
525 msgid "ML-2525W"
526 msgstr "TRANSLATE ML-2525W"
527
528 msgid "ML-2580"
529 msgstr "TRANSLATE ML-2580"
530
531 msgid "ML-2580N"
532 msgstr "TRANSLATE ML-2580N"
533
534 msgid "ML-3051"
535 msgstr "TRANSLATE ML-3051"
536
537 msgid "SCX-4600"
538 msgstr "TRANSLATE SCX-4600"
539
540 msgid "SCX-4623f"
541 msgstr "TRANSLATE SCX-4623f"
542
543 msgid "SCX-4623fw"
544 msgstr "TRANSLATE SCX-4623fw"
545
546 msgid "ML-3051ND"
547 msgstr "TRANSLATE ML-3051ND"
548
549 msgid "SCX-5330N"
550 msgstr "TRANSLATE SCX-5330N"
551
552 msgid "SCX-5530FN"
553 msgstr "TRANSLATE SCX-5530FN"
554
555 msgid "CLP-550"
556 msgstr "TRANSLATE CLP-550"
557
558 msgid "CLP-610ND"
559 msgstr "TRANSLATE CLP-610ND"
560
561 msgid "CLP-310N"
562 msgstr "TRANSLATE CLP-310N"
563
564 msgid "CLP-310"
565 msgstr "TRANSLATE CLP-310"
566
567 msgid "CLP-315"
568 msgstr "TRANSLATE CLP-315"
569
570 msgid "WorkCentre 3119"
571 msgstr "TRANSLATE WorkCentre 3119"
572
573 msgid "WorkCentre PE16"
574 msgstr "TRANSLATE WorkCentre PE16"
575
576 msgid "WorkCentre PE114e"
577 msgstr "TRANSLATE WorkCentre PE114e"
578
579 msgid "Phaser 3160"
580 msgstr "TRANSLATE Phaser 3160"
581
582 msgid "Phaser 3124"
583 msgstr "TRANSLATE Phaser 3124"
584
585 msgid "Phaser 3140"
586 msgstr "TRANSLATE Phaser 3140"
587
588 msgid "Lexmark"
589 msgstr "TRANSLATE Lexmark"
590
591 msgid "X215 MFP"
592 msgstr "TRANSLATE X215 MFP"
593
594 msgid "Toshiba"
595 msgstr "TRANSLATE Toshiba"
596
597 msgid "eSTUDIO180S"
598 msgstr "TRANSLATE eSTUDIO180S"
599
600 msgid "Phaser 3155"
601 msgstr "TRANSLATE Phaser 3155"
602
9696 msgid "CLP-550"
9797 msgstr "CLP-550"
9898
99 msgid "CLP-60"
100 msgstr "CLP-60"
101
10299 msgid "CLP-600"
103100 msgstr "CLP-600"
104101
600597 msgid "CLP-310N"
601598 msgstr "CLP-310N"
602599
600 msgid "CLP-310"
601 msgstr "CLP-310"
602
603 msgid "CLP-315"
604 msgstr "CLP-315"
605
606 msgid "CustomPageSize"
607 msgstr "Personalizado"
608
609 msgid "Phaser 3140"
610 msgstr "Phaser 3140"
611
612 msgid "Phaser 3155"
613 msgstr "Phaser 3155"
614
22 *
33 * Power save
44 *
5 * $Id$
5 * $Id: powersave.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77
88 Option "PowerSave/Power Save" PickOne AnySetup 10
22 *
33 * Reverse duplex
44 *
5 * $Id$
5 * $Id: reverseduplex.defs 180 2008-02-09 03:59:11Z ap2c $
66 */
77
88 Option "ReverseDuplex/Reverse duplex" Boolean AnySetup 10
22 *
33 * Contains the Samsung printers drivers
44 *
5 * $Id$
5 * $Id: samsung.drv 298 2011-07-20 16:20:18Z tillkamppeter $
66 */
77
88 Manufacturer "Samsung"
99
1010 #import "version.defs"
11 #import "spl2.defs"
1211 #import "altitude.defs"
12
1313
1414 //
1515 // Specific black & white printer definition
1616 //
1717 {
18 #import "spl2.defs"
1819 #import "filter.defs"
1920 #import "powersave.defs"
2021 #import "tonerdensity.defs"
2829 Attribute QPDL QPDLVersion "1"
2930 Attribute General DocHeaderValues "<0><2><1>"
3031
31 #import "manualduplex.defs"
3232 {
3333 Resolution k 1 0 0 0 "300dpi/300 DPI"
3434
258258 // Specific color printer definition
259259 //
260260 {
261 #import "spl2.defs"
261262 #import "filterColor.defs"
262263 #import "powersave.defs"
263264
392393 }
393394 }
394395
396 // Color printers V. 3 (Banded JBIG algorithm)
397 {
398 #import "spl2bandedjbig.defs"
399 #import "filterColor.defs"
400 #import "powersave.defs"
401 #import "color-v3.defs"
402 #import "manualduplex.defs"
403 Attribute QPDL QPDLVersion "5"
404 Attribute QPDL PacketSize "512"
405 Attribute General DocHeaderValues "<0><0><1>"
406 Resolution - 1 0 0 0 "1200x600dpi/1200x600 DPI"
407 Resolution - 1 0 0 0 "1200dpi/1200 DPI"
408 Throughput 4
409 {
410 Attribute General CMSFile "CLP-310"
411
412 ModelName "CLP-310"
413 PCFileName "clp310.ppd"
414 }{
415 Attribute General CMSFile "CLP-315"
416
417 ModelName "CLP-315"
418 PCFileName "clp315.ppd"
419 }
420 }
421
422
423
395424 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 enc=utf8: */
396425
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of scx4100.ppd, 12131 bytes.
242 *% End of scx4100.ppd, 11723 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4100.ppd, 12281 bytes.
241 *% End of scx4100.ppd, 11875 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4100 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4100.ppd, 12370 bytes.
241 *% End of scx4100.ppd, 11960 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of scx4200.ppd, 12131 bytes.
242 *% End of scx4200.ppd, 11723 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4200.ppd, 12281 bytes.
241 *% End of scx4200.ppd, 11875 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4200 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4200.ppd, 12370 bytes.
241 *% End of scx4200.ppd, 11960 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4216F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of scx4216f.ppd, 12138 bytes.
242 *% End of scx4216f.ppd, 11730 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4216F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4216f.ppd, 12288 bytes.
241 *% End of scx4216f.ppd, 11882 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4216F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4216f.ppd, 12377 bytes.
241 *% End of scx4216f.ppd, 11967 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of scx4300.ppd, 12131 bytes.
242 *% End of scx4300.ppd, 11723 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4300.ppd, 12281 bytes.
241 *% End of scx4300.ppd, 11875 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4300 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4300.ppd, 12370 bytes.
241 *% End of scx4300.ppd, 11960 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
204202 *DefaultResolution: 600dpi
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/2-Sided Printing: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4500.ppd, 11982 bytes.
241 *% End of scx4500.ppd, 11574 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
203201 *DefaultResolution: 600dpi
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *CloseUI: *Resolution
206 *OpenUI *Duplex/Recto-verso: PickOne
207 *OrderDependency: 10 AnySetup *Duplex
208 *DefaultDuplex: None
209 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
210 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
211 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
212 *CloseUI: *Duplex
213204 *DefaultFont: Courier
214205 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
215206 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
246237 *Font Times-Roman: Standard "(1.05)" Standard ROM
247238 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
248239 *Font ZapfDingbats: Special "(001.005)" Special ROM
249 *% End of scx4500.ppd, 12132 bytes.
240 *% End of scx4500.ppd, 11726 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4500 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
203201 *DefaultResolution: 600dpi
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *CloseUI: *Resolution
206 *OpenUI *Duplex/Frente e Verso: PickOne
207 *OrderDependency: 10 AnySetup *Duplex
208 *DefaultDuplex: None
209 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
210 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
211 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
212 *CloseUI: *Duplex
213204 *DefaultFont: Courier
214205 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
215206 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
246237 *Font Times-Roman: Standard "(1.05)" Standard ROM
247238 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
248239 *Font ZapfDingbats: Special "(001.005)" Special ROM
249 *% End of scx4500.ppd, 12221 bytes.
240 *% End of scx4500.ppd, 11811 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4521F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
204202 *DefaultResolution: 600dpi
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/2-Sided Printing: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of scx4521f.ppd, 11989 bytes.
241 *% End of scx4521f.ppd, 11581 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4521F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
203201 *DefaultResolution: 600dpi
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *CloseUI: *Resolution
206 *OpenUI *Duplex/Recto-verso: PickOne
207 *OrderDependency: 10 AnySetup *Duplex
208 *DefaultDuplex: None
209 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
210 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
211 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
212 *CloseUI: *Duplex
213204 *DefaultFont: Courier
214205 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
215206 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
246237 *Font Times-Roman: Standard "(1.05)" Standard ROM
247238 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
248239 *Font ZapfDingbats: Special "(001.005)" Special ROM
249 *% End of scx4521f.ppd, 12139 bytes.
240 *% End of scx4521f.ppd, 11733 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4521F with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
203201 *DefaultResolution: 600dpi
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *CloseUI: *Resolution
206 *OpenUI *Duplex/Frente e Verso: PickOne
207 *OrderDependency: 10 AnySetup *Duplex
208 *DefaultDuplex: None
209 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
210 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
211 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
212 *CloseUI: *Duplex
213204 *DefaultFont: Courier
214205 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
215206 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
246237 *Font Times-Roman: Standard "(1.05)" Standard ROM
247238 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
248239 *Font ZapfDingbats: Special "(001.005)" Special ROM
249 *% End of scx4521f.ppd, 12228 bytes.
240 *% End of scx4521f.ppd, 11818 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4600 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623f with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623f with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623f with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623fw with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Media Source: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Recycled: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Air pressure: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/High: ""
162 *Altitude HIGH/Low: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Power Save: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623fw with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Source du papier: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papier recyclé: ""
155161 *MediaType ARCHIVE/Archive: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pression de l'air: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Forte: ""
161 *Altitude HIGH/Faible: ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Économie d'énergie: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-4623fw with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
130130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
131131 *PaperDimension Env9/#9 Envelope: "279 639"
132132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
133139 *OpenUI *InputSlot/Fonte do Papel: PickOne
134140 *OrderDependency: 10 AnySetup *InputSlot
135141 *DefaultInputSlot: Auto
154160 *MediaType RECYCLED/Papel Reciclado: ""
155161 *MediaType ARCHIVE/Arquivamento: ""
156162 *CloseUI: *MediaType
157 *OpenUI *Altitude/Pressão Atmosférica: PickOne
158 *OrderDependency: 10 AnySetup *Altitude
159 *DefaultAltitude: LOW
160 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
161 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
162 *CloseUI: *Altitude
163163 *OpenUI *PowerSave/Economia de Energia: PickOne
164164 *OrderDependency: 10 AnySetup *PowerSave
165165 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5330N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Air pressure: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/High: ""
139 *Altitude HIGH/Low: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Media Source: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Recycled: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Air pressure: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/High: ""
163 *Altitude HIGH/Low: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Power Save: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5330N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pression de l'air: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Forte: ""
138 *Altitude HIGH/Faible: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Source du papier: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papier recyclé: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pression de l'air: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Forte: ""
162 *Altitude HIGH/Faible: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Économie d'énergie: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5330N with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pressão Atmosférica: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
138 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Fonte do Papel: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papel Reciclado: ""
156162 *MediaType ARCHIVE/Arquivamento: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pressão Atmosférica: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
162 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Economia de Energia: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5530FN with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
132132 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133133 *PaperDimension Env9/#9 Envelope: "279 639"
134134 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
135 *OpenUI *Altitude/Air pressure: PickOne
136 *OrderDependency: 10 AnySetup *Altitude
137 *DefaultAltitude: LOW
138 *Altitude LOW/High: ""
139 *Altitude HIGH/Low: ""
140 *CloseUI: *Altitude
135141 *OpenUI *InputSlot/Media Source: PickOne
136142 *OrderDependency: 10 AnySetup *InputSlot
137143 *DefaultInputSlot: Auto
156162 *MediaType RECYCLED/Recycled: ""
157163 *MediaType ARCHIVE/Archive: ""
158164 *CloseUI: *MediaType
159 *OpenUI *Altitude/Air pressure: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/High: ""
163 *Altitude HIGH/Low: ""
164 *CloseUI: *Altitude
165165 *OpenUI *PowerSave/Power Save: PickOne
166166 *OrderDependency: 10 AnySetup *PowerSave
167167 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5530FN with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pression de l'air: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Forte: ""
138 *Altitude HIGH/Faible: ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Source du papier: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papier recyclé: ""
156162 *MediaType ARCHIVE/Archive: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pression de l'air: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Forte: ""
162 *Altitude HIGH/Faible: ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Économie d'énergie: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SCX-5530FN with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
131131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
132132 *PaperDimension Env9/#9 Envelope: "279 639"
133133 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
134 *OpenUI *Altitude/Pressão Atmosférica: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
138 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
139 *CloseUI: *Altitude
134140 *OpenUI *InputSlot/Fonte do Papel: PickOne
135141 *OrderDependency: 10 AnySetup *InputSlot
136142 *DefaultInputSlot: Auto
155161 *MediaType RECYCLED/Papel Reciclado: ""
156162 *MediaType ARCHIVE/Arquivamento: ""
157163 *CloseUI: *MediaType
158 *OpenUI *Altitude/Pressão Atmosférica: PickOne
159 *OrderDependency: 10 AnySetup *Altitude
160 *DefaultAltitude: LOW
161 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
162 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
163 *CloseUI: *Altitude
164164 *OpenUI *PowerSave/Economia de Energia: PickOne
165165 *OrderDependency: 10 AnySetup *PowerSave
166166 *DefaultPowerSave: 5
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SF-565P with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
133131 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
134132 *PaperDimension Env9/#9 Envelope: "279 639"
135133 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
134 *OpenUI *Altitude/Air pressure: PickOne
135 *OrderDependency: 10 AnySetup *Altitude
136 *DefaultAltitude: LOW
137 *Altitude LOW/High: ""
138 *Altitude HIGH/Low: ""
139 *CloseUI: *Altitude
136140 *OpenUI *InputSlot/Media Source: PickOne
137141 *OrderDependency: 10 AnySetup *InputSlot
138142 *DefaultInputSlot: Auto
157161 *MediaType RECYCLED/Recycled: ""
158162 *MediaType ARCHIVE/Archive: ""
159163 *CloseUI: *MediaType
160 *OpenUI *Altitude/Air pressure: PickOne
161 *OrderDependency: 10 AnySetup *Altitude
162 *DefaultAltitude: LOW
163 *Altitude LOW/High: ""
164 *Altitude HIGH/Low: ""
165 *CloseUI: *Altitude
166164 *OpenUI *PowerSave/Power Save: PickOne
167165 *OrderDependency: 10 AnySetup *PowerSave
168166 *DefaultPowerSave: 5
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of sf565p.ppd, 12124 bytes.
242 *% End of sf565p.ppd, 11716 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SF-565P with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Oficio - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pression de l'air: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Forte: ""
137 *Altitude HIGH/Faible: ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Source du papier: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papier recyclé: ""
157161 *MediaType ARCHIVE/Archive: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pression de l'air: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Forte: ""
163 *Altitude HIGH/Faible: ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Économie d'énergie: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of sf565p.ppd, 12274 bytes.
241 *% End of sf565p.ppd, 11868 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for SF-565P with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
132130 *PaperDimension EnvPersonal/Personal Envelope: "261 468"
133131 *PaperDimension Env9/#9 Envelope: "279 639"
134132 *PaperDimension Oficio/Ofício - 216x340mm: "612 972"
133 *OpenUI *Altitude/Pressão Atmosférica: PickOne
134 *OrderDependency: 10 AnySetup *Altitude
135 *DefaultAltitude: LOW
136 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
137 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
138 *CloseUI: *Altitude
135139 *OpenUI *InputSlot/Fonte do Papel: PickOne
136140 *OrderDependency: 10 AnySetup *InputSlot
137141 *DefaultInputSlot: Auto
156160 *MediaType RECYCLED/Papel Reciclado: ""
157161 *MediaType ARCHIVE/Arquivamento: ""
158162 *CloseUI: *MediaType
159 *OpenUI *Altitude/Pressão Atmosférica: PickOne
160 *OrderDependency: 10 AnySetup *Altitude
161 *DefaultAltitude: LOW
162 *Altitude LOW/Pressão Elevada (Baixa Altitude): ""
163 *Altitude HIGH/Pressão Reduzida (Grande Altitude): ""
164 *CloseUI: *Altitude
165163 *OpenUI *PowerSave/Economia de Energia: PickOne
166164 *OrderDependency: 10 AnySetup *PowerSave
167165 *DefaultPowerSave: 5
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of sf565p.ppd, 12363 bytes.
241 *% End of sf565p.ppd, 11953 bytes.
22 *
33 *
44 *
5 * $Id$
5 * $Id: spl2.defs 298 2011-07-20 16:20:18Z tillkamppeter $
66 */
7 #include <font.defs>
87 #include <media.defs>
98
109 #media "Oficio/Oficio - 216x340mm" 612 972
4342 *InputSlot 1 "Auto/Automatic Selection"
4443 InputSlot 2 "Manual/Manual Feed"
4544
46 // Font included in the printer ROM
47 Font *
4845
4946
5047
0 /*
1 * spl2.defs (C) 2007, Aurélien Croc (AP²C)
2 *
3 *
4 *
5 * $Id: spl2.defs 210 2008-05-30 23:38:15Z ap2c $
6 */
7 #include <media.defs>
8
9 #media "Oficio/Oficio - 216x340mm" 612 972
10
11 // Supported paper format
12 // For banded jbig printers, all hardware margins seems to be 12pt.
13 // HWMargins left bottom right top
14 HWMargins 12 12 12 12
15 *MediaSize Letter
16 MediaSize Legal
17 MediaSize A4
18 MediaSize Executive
19 MediaSize Ledger
20 MediaSize A3
21 MediaSize Env10
22 MediaSize Monarch
23 MediaSize C5
24 MediaSize DL
25 MediaSize B4
26 MediaSize B5
27 MediaSize EnvISOB5
28 // Not listed
29 MediaSize Postcard
30 MediaSize DoublePostcardRotated
31 MediaSize A5
32 MediaSize A6
33 MediaSize B6
34 // Custom
35 MediaSize C6
36 MediaSize Folio
37 MediaSize EnvPersonal
38 MediaSize Env9
39 MediaSize Oficio
40
41 // Enable to accept custom page sizes
42 VariablePaperSize yes
43 //MaxSize width length
44 MaxSize 8.5in 14in
45 //MinSize width length
46 MinSize 3in 6.3in
47
48 // Supported input slots
49 *InputSlot 1 "Auto/Automatic Selection"
50 InputSlot 2 "Manual/Manual Feed"
51
52
53
54
55 //
56 // Defining PJL variables
57 //
58
59 // Supported paper type
60 Option "MediaType/Paper Type" PickOne AnySetup 10
61 *Choice "OFF/Use Printer Default" ""
62 Choice "NORMAL/Plain Paper" ""
63 Choice "THICK/Thick Paper" ""
64 Choice "THIN/Thin Paper" ""
65 Choice "BOND/Bond" ""
66 Choice "OHP/Transparency" ""
67 Choice "CARD/Card Stock" ""
68 Choice "LABEL/Label" ""
69 Choice "USED/Preprinted" ""
70 Choice "COLOR/Colored Paper" ""
71 Choice "ENV/Envelope" ""
72 Choice "COTTON/Cotton" ""
73 Choice "RECYCLED/Recycled" ""
74 Choice "ARCHIVE/Archive" ""
75
76 Attribute QPDL BandSize "128"
77 Attribute PJL BeginPJL "<1B>%-12345X"
78 Attribute PJL EndPJL "<09><1B>%-12345X"
79
80
81 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 enc=utf8: */
82
22 *
33 * SRT mode
44 *
5 * $Id$
5 * $Id: srtmode.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77
88 Option "SRTMode/SRT Mode" PickOne AnySetup 10
22 *
33 * Toner density
44 *
5 * $Id$
5 * $Id: tonerdensity.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77
88 Option "TonerDensity/Toner Density" PickOne AnySetup 10
22 *
33 * Toner save
44 *
5 * $Id$
5 * $Id: tonersave.defs 105 2007-11-16 02:20:18Z ap2c $
66 */
77
88 Option "EconoMode/Toner Save" PickOne AnySetup 10
2828 Attribute QPDL QPDLVersion "1"
2929 Attribute General DocHeaderValues "<0><2><1>"
3030
31 #import "manualduplex.defs"
3231 {
3332 Resolution k 1 0 0 0 "300dpi/300 DPI"
3433
22 *
33 * Current PPDs version
44 *
5 * $Id$
5 * $Id: version.defs 298 2011-07-20 16:20:18Z tillkamppeter $
66 */
7
8
9 #include <font.defs>
10
11 // Font included in the printer ROM
12 Font *
13
714
815 Version "2.0.0"
916
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre 3119 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of wc3119.ppd, 12156 bytes.
242 *% End of wc3119.ppd, 11748 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre 3119 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wc3119.ppd, 12306 bytes.
241 *% End of wc3119.ppd, 11900 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre 3119 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wc3119.ppd, 12395 bytes.
241 *% End of wc3119.ppd, 11985 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE114e with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of wcpe114e.ppd, 12170 bytes.
242 *% End of wcpe114e.ppd, 11762 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE114e with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wcpe114e.ppd, 12320 bytes.
241 *% End of wcpe114e.ppd, 11914 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE114e with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wcpe114e.ppd, 12409 bytes.
241 *% End of wcpe114e.ppd, 11999 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE16 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of wcpe16.ppd, 12156 bytes.
242 *% End of wcpe16.ppd, 11748 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE16 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wcpe16.ppd, 12306 bytes.
241 *% End of wcpe16.ppd, 11900 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for WorkCentre PE16 with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of wcpe16.ppd, 12395 bytes.
241 *% End of wcpe16.ppd, 11985 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for X215 MFP with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: English
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
205203 *Resolution 600dpi/600 DPI: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *Resolution 300dpi/300 DPI: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
207205 *CloseUI: *Resolution
208 *OpenUI *Duplex/2-Sided Printing: PickOne
209 *OrderDependency: 10 AnySetup *Duplex
210 *DefaultDuplex: None
211 *Duplex None/Off (1-Sided): "<</Duplex false>>setpagedevice"
212 *Duplex DuplexNoTumble/Long-Edge (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
213 *Duplex DuplexTumble/Short-Edge (Landscape): "<</Duplex true/Tumble true>>setpagedevice"
214 *CloseUI: *Duplex
215206 *DefaultFont: Courier
216207 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
217208 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
248239 *Font Times-Roman: Standard "(1.05)" Standard ROM
249240 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
250241 *Font ZapfDingbats: Special "(001.005)" Special ROM
251 *% End of x215mfp.ppd, 12131 bytes.
242 *% End of x215mfp.ppd, 11723 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for X215 MFP with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: French
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Recto-verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Simple (recto): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Côté long (Portrait): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Côté court (Paysage): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of x215mfp.ppd, 12281 bytes.
241 *% End of x215mfp.ppd, 11875 bytes.
00 *PPD-Adobe: "4.3"
11 *%%%% PPD file for X215 MFP with CUPS.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.5.
2 *%%%% Created by the CUPS PPD Compiler CUPS v1.4.7.
33 *FormatVersion: "4.3"
44 *FileVersion: "2.0.0"
55 *LanguageVersion: Portuguese_Brazil
2424 *PJL EndPJL: "<09><1B>%-12345X"
2525 *QPDL QPDLVersion: "1"
2626 *General DocHeaderValues: "<0><2><1>"
27 *cupsBackSide: "Normal"
28 *QPDL ManualDuplex: "On"
2927 *cupsVersion: 1.4
3028 *cupsModelNumber: 0
3129 *cupsManualCopies: False
204202 *Resolution 600dpi/600 PPP: "<</HWResolution[600 600]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
205203 *Resolution 300dpi/300 PPP: "<</HWResolution[300 300]/cupsBitsPerColor 1/cupsRowCount 0/cupsRowFeed 0/cupsRowStep 0/cupsColorSpace 3>>setpagedevice"
206204 *CloseUI: *Resolution
207 *OpenUI *Duplex/Frente e Verso: PickOne
208 *OrderDependency: 10 AnySetup *Duplex
209 *DefaultDuplex: None
210 *Duplex None/Frente (Simples): "<</Duplex false>>setpagedevice"
211 *Duplex DuplexNoTumble/Borda Longa (Retrato): "<</Duplex true/Tumble false>>setpagedevice"
212 *Duplex DuplexTumble/Borda Curta (Paisagem): "<</Duplex true/Tumble true>>setpagedevice"
213 *CloseUI: *Duplex
214205 *DefaultFont: Courier
215206 *Font AvantGarde-Book: Standard "(1.05)" Standard ROM
216207 *Font AvantGarde-BookOblique: Standard "(1.05)" Standard ROM
247238 *Font Times-Roman: Standard "(1.05)" Standard ROM
248239 *Font ZapfChancery-MediumItalic: Standard "(1.05)" Standard ROM
249240 *Font ZapfDingbats: Special "(001.005)" Special ROM
250 *% End of x215mfp.ppd, 12370 bytes.
241 *% End of x215mfp.ppd, 11960 bytes.
22 *
33 * Contains the Xerox printers drivers
44 *
5 * $Id$
5 * $Id: xerox.drv 299 2011-07-21 15:22:26Z tillkamppeter $
66 */
77 Manufacturer "Xerox"
88
2626 Attribute QPDL QPDLVersion "1"
2727 Attribute General DocHeaderValues "<0><2><1>"
2828
29 #import "manualduplex.defs"
3029 {
3130 Resolution k 1 0 0 0 "300dpi/300 DPI"
3231
135134 }
136135 }
137136 }
137
138 // QPDL Version 3
139 {
140 Attribute QPDL QPDLVersion "3"
141 Attribute General DocHeaderValues "<0><0><1>"
142
143 {
144 Resolution k 1 0 0 0 "1200x600dpi/1200x600 DPI"
145 #import "manualduplex.defs"
146
147 {
148 ModelName "Phaser 3140"
149 PCFileName "ph3140.ppd"
150 } {
151 ModelName "Phaser 3155"
152 PCFileName "ph3155.ppd"
153 }
154 }
155 }
138156 }
139157 }
140158
3232
3333 installcms:
3434 @if [ "$$CMSDIR" -a -d "$$CMSDIR" ]; then \
35 CMSBASE=$(CUPSPPD)/$$MANUFACTURER; \
36 if [ "$$MANUFACTURER" -a -d "$$CMSBASE" ]; then \
37 CMSBASE=$$CMSBASE/cms; \
38 mkdir -p $(DESTDIR)$$CMSBASE; \
39 install -m 644 "$(CMSDIR)"/* $(DESTDIR)$$CMSBASE; \
40 if [ $$? = 0 ]; then \
41 echo "Color profile files has been copied."; \
42 fi; \
43 else \
44 if [ "$$MANUFACTURER" ]; then \
45 echo "Invalid manufacturer"; \
46 fi; \
47 echo "Usage: make installcms CMSDIR=/path/to/cms " \
48 "MANUFACTURER={samsung,xerox,dell}";\
35 CMSBASE=$(CUPSPROFILE)/$$MANUFACTURER; \
36 mkdir -p $(DESTDIR)$$CMSBASE; \
37 install -m 644 "$(CMSDIR)"/* $(DESTDIR)$$CMSBASE; \
38 if [ $$? = 0 ]; then \
39 echo "Color profile files has been copied."; \
4940 fi; \
5041 else \
5142 echo "Usage: make installcms CMSDIR=/path/to/cms" \
1515 * Free Software Foundation, Inc.,
1616 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1717 *
18 * $Id$
18 * $Id: algo0x0d.cpp 268 2010-07-29 10:10:15Z tillkamppeter $
1919 *
2020 * --
2121 * This code is written by Leonardo Hamada
1515 * Free Software Foundation, Inc.,
1616 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1717 *
18 * $Id$
18 * $Id: algo0x0e.cpp 245 2008-11-24 23:00:43Z ap2c $
1919 *
2020 * --
2121 * This code is written by Leonardo Hamada
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x11.cpp 284 2011-02-19 18:31:08Z tillkamppeter $
1818 *
1919 */
2020 #include "algo0x11.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x13.cpp 287 2011-02-19 19:10:22Z tillkamppeter $
1818 *
1919 */
2020 #include "algo0x13.h"
0 /*
1 * algo0x15.cpp (C) 2006-2008, Aurélien Croc (AP²C)
2 * This file is a SpliX derivative work
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the
15 * Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * $Id: algo0x15.cpp 287 2011-02-19 19:10:22Z tillkamppeter $
19 * --
20 * This code was written by Leonardo Hamada
21 *
22 */
23 #include "algo0x15.h"
24 #include <string.h>
25 #include "errlog.h"
26 #include "request.h"
27 #include "printer.h"
28 #include "bandplane.h"
29
30 #ifndef DISABLE_JBIG
31
32 extern "C" {
33 #include "jbig85.h"
34 }
35
36 /*
37 * Fonction de rappel
38 * Callback
39 */
40 void Algo0x15::_callback(unsigned char *data, size_t data_len, void *arg)
41 {
42 Algo0x15 *compressor = (Algo0x15 *)arg;
43 if (!data_len) {
44 compressor->_error = true;
45 return;
46 }
47 if ((!compressor->_has_bih) && (0 == compressor->_size)) {
48 if (20 != data_len) {
49 ERRORMSG(_("Expected 20 bytes from BIH (0x15)"));
50 compressor->_error = true;
51 return;
52 }
53 memcpy(compressor->_bih, data, 20);
54 compressor->_has_bih = true;
55 } else {
56 unsigned long freeSpace = compressor->_maxSize - compressor->_size;
57 if (data_len > freeSpace) {
58 ERRORMSG(_("Insufficient buffer space to store BIE (0x15)"));
59 compressor->_error = true;
60 return;
61 }
62 memcpy(compressor->_data + compressor->_size, data, data_len);
63 compressor->_size += data_len;
64 }
65 }
66
67 /*
68 * Constructeur - Destructeur
69 * Init - Uninit
70 */
71 Algo0x15::Algo0x15()
72 {
73 _has_bih = false;
74 _data = NULL;
75 _size = 0;
76 _maxSize = 0;
77 _error = false;
78 }
79
80 Algo0x15::~Algo0x15()
81 {
82 if (_data)
83 delete [] _data;
84 }
85
86 /*
87 * Routine de compression
88 * Compression routine
89 * The nature of his compression scheme is to have an entire page divided into
90 * bands, each band is compressed with the JBIG to be assembled by the printer.
91 * This method is called for each band returning corresponding JBIG data.
92 * Assumes compressed band data fits in the space specified
93 * in the printer PPD file: QPDL PacketSize: "512", specifies 512 Kbytes limit.
94 */
95 BandPlane* Algo0x15::compress(const Request& request, unsigned char *data,
96 unsigned long width, unsigned long height)
97 {
98 #define MAX_SIZE 512 * 1024
99 BandPlane *plane;
100 jbg85_enc_state state;
101 unsigned long wbytes;
102 if (!data || !width || !height) {
103 ERRORMSG(_("Invalid given data for compression (0x15)"));
104 return NULL;
105 }
106 if (_has_bih)
107 _has_bih = false;
108 if (_size)
109 _size = 0;
110 if (_error)
111 _error = false;
112 if (0 == _maxSize)
113 _maxSize = request.printer()->packetSize();
114 if ((!_maxSize) || (_maxSize > MAX_SIZE)) {
115 ERRORMSG(_("PacketSize is set to %luBytes! Reset to %dBytes."),
116 _maxSize, MAX_SIZE);
117 _maxSize = MAX_SIZE;
118 }
119 if (NULL == _data)
120 _data = new unsigned char[_maxSize];
121 wbytes = (width + 7) / 8;
122 jbg85_enc_init(&state, width, height, _callback, this);
123 jbg85_enc_options(&state, JBG_LRLTWO, height, 0);
124 for (unsigned long i = 0; i < height; i++) {
125 jbg85_enc_lineout(&state,
126 data + i * wbytes,
127 data + (i - 1) * wbytes,
128 data + (i - 2) * wbytes);
129 }
130 if (_error)
131 return NULL;
132 unsigned char *final_data = new unsigned char[_size];
133 memcpy(final_data, _data, _size);
134 plane = new BandPlane();
135 plane->setCompression(0x15);
136 plane->setEndian(BandPlane::BigEndian);
137 plane->setData(final_data, _size);
138 /* Finished encoding of this band. */
139 DEBUGMSG(_("Band encoded with type=0x15, size=%lu"), _size);
140 /* Clean up. */
141 _has_bih = false;
142 _size = 0;
143 if (_error)
144 _error = false;
145 return plane;
146 }
147
148 #endif /* DISABLE_JBIG */
149
150 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 cin enc=utf8: */
151
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algorithm.cpp 119 2008-01-22 23:06:29Z ap2c $
1818 *
1919 */
2020 #include "algorithm.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: band.cpp 140 2008-01-31 18:33:18Z ap2c $
1818 *
1919 */
2020 #include "band.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: bandplane.cpp 257 2008-12-28 22:21:17Z ap2c $
1818 *
1919 */
2020 #include "bandplane.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: cache.cpp 200 2008-02-21 21:58:17Z ap2c $
1818 *
1919 */
2020 #ifndef DISABLE_THREADS
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: colors.cpp 198 2008-02-19 21:35:23Z ap2c $
1818 *
1919 */
2020 #include "colors.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: compress.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "compress.h"
3030 #include "algo0x0e.h"
3131 #include "algo0x11.h"
3232 #include "algo0x13.h"
33 #include "algo0x15.h"
3334
3435 static bool _isEmptyBand(unsigned char* band, unsigned long size)
3536 {
186187 }
187188
188189 #ifndef DISABLE_JBIG
190 static bool _compressBandedJBIGPage(const Request& request, Page* page)
191 {
192 unsigned long index=0, pageHeight, lineWidthInB, bandHeight = 128;
193 unsigned long bufferWidth, bandSize, hardMarginXInB=13, hardMarginY=100;
194 unsigned char *planes[4], *band[4];
195 unsigned long bandNumber=0, xLimitInB, bufferWidthInB;
196 Algo0x15 *algo = new Algo0x15;
197 /* Image trimming are done from hardware margins defined in the ppd. */
198 hardMarginXInB = ((unsigned long)ceil(page->convertToXResolution(request.
199 printer()->hardMarginX())) + 7) / 8;
200 hardMarginY = ceil(page->convertToYResolution(request.printer()->
201 hardMarginY()));
202 bandHeight = request.printer()->bandHeight();
203 lineWidthInB = ((page->width()) + 7) / 8;
204 // Compute an updated page height, clipped on top.
205 pageHeight = page->height() - hardMarginY;
206 // Compute the buffer width that is nearest multiple of 256 to the original.
207 bufferWidth = page->width() & ~255;
208 if ((bufferWidth + 128) < page->width())
209 bufferWidth += 256;
210 // Update the page heigth.
211 page->setHeight(pageHeight);
212 // Update the page width.
213 page->setWidth(bufferWidth);
214 bufferWidthInB = (bufferWidth + 7) / 8;
215 bandSize = bufferWidthInB * bandHeight;
216 index = hardMarginY * lineWidthInB;
217 for (unsigned int i=0; i < page->colorsNr(); i++) {
218 band[i] = new unsigned char[bandSize];
219 planes[i] = page->planeBuffer(i);
220 }
221 /*
222 Here, limit the width of the copied image to the buffer, as the buffer
223 width varies and can lead to 6 practical cases, the following is a
224 condensed code.
225 */
226 if (hardMarginXInB + bufferWidthInB < lineWidthInB - hardMarginXInB)
227 xLimitInB = hardMarginXInB + bufferWidthInB;
228 else
229 xLimitInB = lineWidthInB - hardMarginXInB;
230 bool theEnd = false;
231 unsigned long indexSizeIncrement = bandHeight * lineWidthInB;
232 unsigned long localHeight = bandHeight;
233 while (pageHeight) {
234 Band *current = NULL;
235 bool cmyPlanesHasData = false;
236 // Special things to do for the last band
237 if (pageHeight < bandHeight) {
238 theEnd = true;
239 localHeight = pageHeight;
240 for (unsigned int i=0; i < page->colorsNr(); i++)
241 memset(band[i], 0, bandSize);
242 }
243 for (unsigned int i=0; i < page->colorsNr(); i++) {
244 for (unsigned int y=0; y < localHeight; y++) {
245 for (unsigned int x=hardMarginXInB; x < xLimitInB; x++)
246 band[i][x - hardMarginXInB + y * bufferWidthInB] =
247 planes[i][index + x + y * lineWidthInB];
248 for (unsigned int x=lineWidthInB - 2 * hardMarginXInB;
249 x < bufferWidthInB; x++)
250 band[i][x + y * bufferWidthInB] = 0;
251 }
252 }
253 // Are the CMY planes completely empty in the band?
254 for (unsigned int i=0; i < page->colorsNr() - 1; i++)
255 if (!_isEmptyBand(band[i], bandSize)) {
256 cmyPlanesHasData = true;
257 break;
258 };
259 // Compress the entire band.
260 if (cmyPlanesHasData) {
261 for (unsigned int i=0; i < page->colorsNr(); i++) {
262 BandPlane *plane = algo->compress(request, band[i],
263 bufferWidth, bandHeight);
264 if (plane) {
265 plane->setColorNr((1 == page->colorsNr()) ? 4:i + 1);
266 if (!current)
267 current = new Band(bandNumber, bufferWidth, bandHeight);
268 current->registerPlane(plane);
269 }
270 }
271 } else if (!_isEmptyBand(band[page->colorsNr() - 1], bandSize)) {
272 // Compress only the K band.
273 BandPlane *plane = algo->compress(request,
274 band[page->colorsNr() - 1],
275 bufferWidth, bandHeight);
276 if (plane) {
277 plane->setColorNr(4);
278 if (!current)
279 current = new Band(bandNumber, bufferWidth, bandHeight);
280 current->registerPlane(plane);
281 }
282 }
283 if (current)
284 page->registerBand(current);
285 bandNumber++;
286 index += indexSizeIncrement;
287 pageHeight = theEnd ? 0 : pageHeight - bandHeight;
288 }
289 if (page->bandsNr() > 0)
290 page->setBIH(algo->getBIHdata());
291 page->flushPlanes();
292 for (unsigned int i=0; i < page->colorsNr(); i++)
293 delete[] band[i];
294 delete algo;
295 return true;
296 }
297
189298 static bool _compressWholePage(const Request& request, Page* page)
190299 {
191300 unsigned long hardMarginX, hardMarginXInB, hardMarginY, lineWidthInB;
266375 "J-BIG compression algorithm."));
267376 break;
268377 #endif /* DISABLE_JBIG */
378 case 0x15:
379 #ifndef DISABLE_JBIG
380 return _compressBandedJBIGPage(request, page);
381 #else
382 ERRORMSG(_("J-BIG compression algorithm has been disabled during "
383 "the compilation. Please recompile SpliX and enable the "
384 "J-BIG compression algorithm."));
385 break;
386 #endif /* DISABLE_JBIG */
269387 default:
270388 ERRORMSG(_("Compression algorithm 0x%lX does not exist"),
271389 page->compression());
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: core.cpp 119 2008-01-22 23:06:29Z ap2c $
1818 *
1919 */
2020 #include "core.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: document.cpp 256 2008-11-30 14:20:22Z ap2c $
1818 *
1919 */
2020 #include "document.h"
88 src/band.cpp src/bandplane.cpp src/cache.cpp \
99 src/rendering.cpp src/semaphore.cpp \
1010 src/algo0x0d.cpp src/algo0x0e.cpp src/algo0x11.cpp \
11 src/algo0x13.cpp
11 src/algo0x13.cpp src/algo0x15.cpp
1212
1313 pstoqpdl_SRC += src/pstoqpdl.cpp src/ppdfile.cpp
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: page.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "page.h"
2121 #include <unistd.h>
22 #include <string.h>
2223 #include "band.h"
2324 #include "errlog.h"
2425
4445 _firstBand = NULL;
4546 _lastBand = NULL;
4647 _bandsNr = 0;
48 _bih = NULL;
4749 }
4850
4951 Page::~Page()
5153 flushPlanes();
5254 if (_firstBand)
5355 delete _firstBand;
56 if (_bih)
57 delete[] _bih;
5458 }
5559
5660
136140 write(fd, &_compression, sizeof(_compression));
137141 write(fd, &_empty, sizeof(_empty));
138142 write(fd, &_bandsNr, sizeof(_bandsNr));
143 /* Carefully check if there is BIH data and compression type is 0x15,
144 before saving BIH data to file. */
145 if (( 0x15 == _compression ) && ( _bandsNr > 0 ) && ( NULL != _bih ))
146 write(fd, _bih, 20);
139147 for (i=0, band = _firstBand; i < _bandsNr; i++) {
140148 if (!band->swapToDisk(fd))
141149 return false;
161169 read(fd, &page->_compression, sizeof(page->_compression));
162170 read(fd, &page->_empty, sizeof(page->_empty));
163171 read(fd, &nr, sizeof(nr));
172 /* Check if compression type is 0x15 and that there is at least one
173 image band before reading BIH data. */
174 if (( 0x15 == page->_compression ) && ( nr > 0 )) {
175 unsigned char bih[20];
176 read(fd, bih, 20);
177 page->setBIH(bih);
178 }
164179 for (unsigned int i=0; i < nr; i++) {
165180 Band *band = Band::restoreIntoMemory(fd);
166181 if (!band) {
173188 return page;
174189 }
175190
191 void Page::setBIH(const unsigned char *bih_data) {
192 if (NULL == _bih)
193 _bih = new unsigned char[20];
194 memcpy(_bih, bih_data, 20);
195 }
176196
177197 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 cin enc=utf8: */
178198
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: ppdfile.cpp 273 2010-07-29 15:34:19Z tillkamppeter $
1818 *
1919 */
2020 #include "ppdfile.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: printer.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "printer.h"
129129 else if (!(strcasecmp(paperType, "A5"))) _paperType = 16;
130130 else if (!(strcasecmp(paperType, "A6"))) _paperType = 17;
131131 else if (!(strcasecmp(paperType, "B6"))) _paperType = 18;
132 else if (!(strcasecmp(paperType, "Custom"))) _paperType = 21;
132133 else if (!(strcasecmp(paperType, "C6"))) _paperType = 23;
133134 else if (!(strcasecmp(paperType, "Folio"))) _paperType = 24;
134135 else if (!(strcasecmp(paperType, "EnvPersonal"))) _paperType = 25;
152153
153154 paperSource = request.ppd()->get("InputSlot");
154155 if (!paperSource) {
155 paperSource = "Auto";
156 ERRORMSG(_("Cannot get input slot information."));
156 paperSource = request.ppd()->get("DefaultInputSlot");
157 if (!paperSource) {
158 paperSource = "Auto";
159 ERRORMSG(_("Cannot get input slot information."));
160 }
157161 }
158162 if (!(strcasecmp(paperSource, "Auto"))) _paperSource = 1;
159163 else if (!(strcasecmp(paperSource, "Manual"))) _paperSource = 2;
174178 return true;
175179 }
176180
177 bool Printer::sendPJLHeader(const Request& request) const
181 bool Printer::sendPJLHeader(const Request& request,
182 unsigned long compression,
183 unsigned long xResolution,
184 unsigned long yResolution ) const
178185 {
179186 const char *reverse;
180187 struct tm *timeinfo;
184191 timeinfo = localtime(&timestamp);
185192
186193 printf("%s", _beginPJL);
194
195 if (0x15 == compression) {
196 printf("@PJL COMMENT USERNAME=\"Username: %s\"\n", request.userName());
197 printf("@PJL COMMENT DOCNAME=\"%s\"\n", request.jobTitle());
198 printf("@PJL JOB NAME=\"%s\"\n", request.jobTitle());
199 }
187200
188201 // Information about the job
189202 printf("@PJL DEFAULT SERVICEDATE=%04u%02u%02u\n", 1900+timeinfo->tm_year,
190203 timeinfo->tm_mon+1, timeinfo->tm_mday);
191204 printf("@PJL SET USERNAME=\"%s\"\n", request.userName());
192205 printf("@PJL SET JOBNAME=\"%s\"\n", request.jobTitle());
206
207 if (0x15 == compression)
208 printf("@PJL SET MULTIBINMODE=%s\n", "PRINTERDEFAULT");
193209
194210 // Set some printer options
195211 if (!request.ppd()->get("EconoMode").isNull() &&
216232 printf("@PJL SET COLORMODE=MONO\n");
217233 }
218234
235 if (0x15 == compression) {
236 printf("@PJL SET RESOLUTION=%lu\n", yResolution);
237 if ((600 == xResolution) && (600 == yResolution))
238 printf("@PJL SET IMAGEQUALITY=0\n");
239 if ((1200 == xResolution) && (600 == yResolution))
240 printf("@PJL SET IMAGEQUALITY=1\n");
241 printf("@PJL SET RGBCOLOR=%s\n", "STANDARD");
242 }
243
219244 // Information about the duplex
220245 reverse = request.reverseDuplex() ? "REVERSE_" : "";
221246 switch (request.duplex()) {
262287 printf("@PJL SET RET=%s\n", (const char *)request.ppd()->
263288 get("SRTMode"));
264289
290 if (0x15 == compression) {
291 printf("@PJL SET BANNERSHEET=%s\n", "OFF");
292 printf("@PJL SET TIMESTAMP=%s\n", "OFF");
293 }
294
265295 printf("@PJL ENTER LANGUAGE = QPDL\n");
266296 fflush(stdout);
267297
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: pstoqpdl.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "ppdfile.h"
8282 dup2(rasterOutput[1], STDOUT_FILENO);
8383 close(rasterInput[0]);
8484 close(rasterOutput[1]);
85 execl(RASTERDIR "/" PSTORASTER, RASTERDIR "/" PSTORASTER, arg1, arg2,
86 arg3, arg4, arg5,(char *)NULL);
87 ERRORMSG(_("Cannot execute pstoraster (%i)"), errno);
85 if (access(RASTERDIR "/" GSTORASTER, F_OK) != -1) {
86 // gstoraster filter exists
87 execl(RASTERDIR "/" GSTORASTER, RASTERDIR "/" GSTORASTER, arg1, arg2,
88 arg3, arg4, arg5,(char *)NULL);
89 ERRORMSG(_("Cannot execute gstoraster (%i)"), errno);
90 } else {
91 // use pstoraster if gstoraster doesn't exist
92 execl(RASTERDIR "/" PSTORASTER, RASTERDIR "/" PSTORASTER, arg1, arg2,
93 arg3, arg4, arg5,(char *)NULL);
94 ERRORMSG(_("Cannot execute %s (%i)"), PSTORASTER, errno);
95 }
8896 exit(0);
8997 }
9098 DEBUGMSG(_("raster launched with PID=%u"), raster);
127135 xResolution = yResolution = 300;
128136
129137 // Get the real filename
130 size = strlen(CUPSPPD) + strlen(manufacturer) + strlen(file) + 64;
138 size = strlen(CUPSPROFILE) + strlen(manufacturer) + strlen(file) + 64;
131139 tmp = new char[size];
132140 if (xResolution)
133 snprintf(tmp, size, CUPSPPD "/%s/cms/%s-%lux%lucms%s", manufacturer,
141 snprintf(tmp, size, CUPSPROFILE "/%s/%s-%lux%lucms%s", manufacturer,
134142 file, xResolution, yResolution, csa ? "2" : "");
135143 if (!xResolution || access(tmp, R_OK))
136 snprintf(tmp, size, CUPSPPD "/%s/cms/%scms%s", manufacturer,
144 snprintf(tmp, size, CUPSPROFILE "/%s/%scms%s", manufacturer,
137145 file, csa ? "2" : "");
138146
139147 // Check if it exists, open it and read it
152160 if (!fread(res, 1, fi.st_size, handle)) {
153161 ERRORMSG(_("Cannot read CMS file %s (%i)"), tmp, errno);
154162 delete[] tmp;
163 delete[] res;
155164 fclose(handle);
156165 return NULL;
157166 }
214223 // Call the other filters
215224 if (!(pid = _linkFilters(argv[1], argv[2], argv[3], argv[4], argv[5]))) {
216225 ERRORMSG(_("Filter error.. Cannot continue"));
226 delete[] manufacturer;
217227 return 1;
218228 }
219229
222232 csa = _readCMSFile(ppd, manufacturer, true);
223233 if (!crd || !csa) {
224234 WARNMSG(_("CMS data are missing. Color correction aborted"));
225 if (crd)
235 if (crd) {
226236 delete[] crd;
227 if (csa)
237 crd = NULL;
238 }
239 if (csa) {
228240 delete[] csa;
241 csa = NULL;
242 }
229243 while (!(feof(stdin))) {
230244 fgets((char *)&buffer, sizeof(buffer), stdin);
231245 fprintf(stdout, "%s", (char *)&buffer);
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: qpdl.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "qpdl.h"
2222 #include <unistd.h>
2323 #include <inttypes.h>
2424 #include <string.h>
25 #include <math.h>
2526 #include "page.h"
2627 #include "band.h"
2728 #include "errlog.h"
2829 #include "request.h"
2930 #include "bandplane.h"
31
32 /* Support function for algorithm of type 0x15 printers. */
33 static bool _outputAuxRecords(const Page* page)
34 {
35 // Get the first plane containg plane data.
36 const Band *band = page->firstBand();
37 unsigned char header[16] = { 0x13, 0, 0, 0, 0x23, 0x15, 0, 0,
38 0, 0, 0, 0, 0, 0, 0, 0x14 };
39 if (!band)
40 return true;
41 // Output record type 0x13 and marker for record 0x14 .
42 if (write(STDOUT_FILENO, (unsigned char*)&header, 16) == -1) {
43 ERRORMSG(_("Error while sending data to the printer (%u)"), errno);
44 return false;
45 }
46 // Output BIH of JBIG data.
47 if (page->getBIH()) {
48 if (write(STDOUT_FILENO, page->getBIH(), 20) == -1) {
49 ERRORMSG(_("Error while sending data to the printer (%u)"), errno);
50 return false;
51 }
52 } else {
53 ERRORMSG(_("Error getting BIH data for page (%u)"), errno);
54 return false;
55 }
56 header[0] = 0; header[1] = 0; header[2] = 1;
57 header[3] = (band->width() >> 8) + 65;
58 if (write(STDOUT_FILENO, (unsigned char*)&header, 4) == -1) {
59 ERRORMSG(_("Error while sending data to the printer (%u)"), errno);
60 return false;
61 }
62 return true;
63 }
64
65 static bool _renderJBIGBand(const Request& request, const Band* band, bool mono)
66 {
67 unsigned char header[0xc];
68 // Black=4, Cyan=1, Magenta=2, Yellow=3
69 int color_order[ 4 ] = { 4, 1, 2, 3 };
70 int colorsNr = mono ? 1:4;
71 unsigned long dataSize, checkSum, lineBytes;
72 const BandPlane *plane = NULL;
73 // Cycle through each color planes
74 for ( int j = 0; j < colorsNr; j++ ) {
75 int current_color = color_order[ j ];
76 // Search in the current band, a plane of current color.
77 plane = NULL;
78 for (unsigned int i = 0; i < band->planesNr(); i++) {
79 const BandPlane * search_plane = band->plane(i);
80 if (!search_plane)
81 continue;
82 if (current_color == search_plane->colorNr()) {
83 plane = search_plane;
84 break;
85 }
86 }
87 // Continue to the next color if no data are present.
88 if (!plane)
89 continue;
90 // Output record of type 0xC.
91 header[0x0] = 0xC; // Signature
92 header[0x1] = band->bandNr(); // Band number
93 // Compute the bytes per line of the pixel data.
94 lineBytes = (band->width() + 7) / 8;
95 header[0x2] = lineBytes >> 8; // Band width 8-15
96 header[0x3] = lineBytes; // Band width 0-7
97 header[0x4] = band->height() >> 8; // Band height 8-15
98 header[0x5] = band->height(); // Band height 0-7
99 header[0x6] = current_color; // Color number
100 header[0x7] = plane->compression(); // Compression algorithm 0x15
101 dataSize = plane->dataSize() + 4;
102 // Append the last information and send the header
103 header[0x8] = dataSize >> 24; // Data size 24 - 31
104 header[0x9] = dataSize >> 16; // Data size 16 - 23
105 header[0xa] = dataSize >> 8; // Data size 8 - 15
106 header[0xb] = dataSize; // Data size 0 - 7
107 if (write(STDOUT_FILENO, (unsigned char*)&header, 0xc) == -1) {
108 ERRORMSG(_("Error while sending data (%u)"), errno);
109 return false;
110 }
111 // Send the data
112 if (write(STDOUT_FILENO, plane->data(), plane->dataSize()) == -1) {
113 ERRORMSG(_("Error while sending data (%u)"), errno);
114 return false;
115 }
116 // Calculate and send the checksum
117 checkSum = plane->checksum();
118 header[0] = checkSum >> 24; // Checksum 24 - 31
119 header[1] = checkSum >> 16; // Checksum 16 - 23
120 header[2] = checkSum >> 8; // Checksum 8 - 15
121 header[3] = checkSum; // Checksum 0 - 7
122 if (write(STDOUT_FILENO, (unsigned char*)&header, 4) == -1) {
123 ERRORMSG(_("Error while sending data (%u)"), errno);
124 return false;
125 }
126 }
127 return true;
128 }
30129
31130 static bool _renderBand(const Request& request, const Band* band, bool mono)
32131 {
230329
231330 bool renderPage(const Request& request, Page* page, bool lastPage)
232331 {
233 unsigned char duplex=0, tumble=0, paperSource;
332 unsigned char duplex=0, tumble=0, paperSource=1;
234333 unsigned long width, height;
235334 unsigned char header[0x11];
236335 const Band* band;
336 bool (*selectedRenderBand)(const Request&, const Band*, bool);
337
237338
238339 if (!page) {
239340 ERRORMSG(_("Try to render a NULL page"));
244345 paperSource = request.printer()->paperSource();
245346 switch (request.duplex()) {
246347 case Request::Simplex:
247 duplex = 1;
348 /* Observed a value of 0 for 0x15 printers. */
349 duplex = (0x15 == page->compression())? 0 : 1;
248350 tumble = 0;
249351 break;
250352 case Request::LongEdge:
269371 /** @todo what about the Short edge? The page isn't rotated? */
270372 break;
271373 }
272
273 width = page->width();
274 height = page->height();
275
374 // For CLP-310/315 printers, multiply page dimensions in inches by 300.
375 // Also selects the appropriate band render function.
376 if (0x15 == page->compression()) {
377 width = ceil(300 * (request.printer()->pageWidth() / 72.0));
378 height = ceil(300 * (request.printer()->pageHeight() / 72.0));
379 selectedRenderBand = &_renderJBIGBand;
380 } else {
381 width = page->width();
382 height = page->height();
383 selectedRenderBand = &_renderBand;
384 }
276385 // Send the page header
277386 header[0x0] = 0; // Signature
278387 header[0x1] = page->yResolution() / 100; // Y Resolution
296405 return false;
297406 }
298407
408 // Send auxiliary records for clp-315 printers.
409 if (0x15 == page->compression())
410 if (!_outputAuxRecords(page))
411 return false;
412
299413 // Send the page bands
300414 band = page->firstBand();
301415 while (band) {
302 if (!_renderBand(request, band, page->colorsNr() == 1))
416 if (!selectedRenderBand(request, band, page->colorsNr() == 1))
303417 return false;
304418 band = band->sibling();
305419 }
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: rastertoqpdl.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include <errno.h>
8181
8282 // Render the request
8383 if (!render(request)) {
84 // Omit thread handling functions or it will not compile
85 // when threads are disabled.
86 #ifndef DISABLE_THREADS
8487 uninitializeCache();
88 #endif /* DISABLE_THREADS */
8589 return 4;
8690 }
8791
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: rendering.cpp 298 2011-07-20 16:20:18Z tillkamppeter $
1818 *
1919 */
2020 #include "rendering.h"
129129 checkLastPage = true;
130130
131131 // Send the PJL Header
132 request.printer()->sendPJLHeader(request);
132 if (page)
133 request.printer()->sendPJLHeader(request, page->compression(),
134 page->xResolution(), page->yResolution() );
135 else
136 request.printer()->sendPJLHeader(request, 0, 0, 0);
133137
134138 // Render the whole document
135139 while (page) {
176180 return false;
177181 }
178182
183 // Get first Page
184 page = document.getNextRawPage(request);
185
179186 // Send the PJL Header
180 request.printer()->sendPJLHeader(request);
187 if (page)
188 request.printer()->sendPJLHeader(request, page->compression(),
189 page->xResolution(), page->yResolution() );
190 else
191 request.printer()->sendPJLHeader(request, 0, 0, 0);
181192
182193 // Send each page
183 page = document.getNextRawPage(request);
184194 while (page) {
185195 #ifndef DISABLE_BLACKOPTIM
186196 applyBlackOptimization(page);
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: request.cpp 183 2008-02-09 15:24:43Z ap2c $
1818 *
1919 */
2020 #include "request.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: semaphore.cpp 139 2008-01-31 16:48:23Z ap2c $
1818 *
1919 */
2020 #include "semaphore.h"
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x11.cpp 98 2007-10-19 00:41:07Z ap2c $
1818 */
1919 #include "algo0x11.h"
2020 #include <QtCore/QByteArray>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: algo0x11.h 95 2007-10-18 23:35:36Z ap2c $
1818 */
1919 #ifndef _ALGO0X11_H_
2020 #define _ALGO0X11_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: appliargs.cpp 94 2007-10-17 23:46:38Z ap2c $
1818 */
1919 #include "appliargs.h"
2020 #include <QtCore/QTextStream>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: appliargs.h 98 2007-10-19 00:41:07Z ap2c $
1818 */
1919 #ifndef _APPLIARGS_H_
2020 #define _APPLIARGS_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: decompress.cpp 95 2007-10-18 23:35:36Z ap2c $
1818 */
1919 #include "appliargs.h"
2020 #include <QtCore/QTextStream>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: i18n.h 94 2007-10-17 23:46:38Z ap2c $
1818 */
1919 #ifndef _I18N_H_
2020 #define _I18N_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: jbgtopbm.cpp 106 2007-11-16 02:23:20Z ap2c $
1818 */
1919 #include "appliargs.h"
2020 #include <QtCore/QTextStream>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: page.cpp 160 2008-02-09 02:08:33Z ap2c $
1818 */
1919 #include "page.h"
2020 #include <QtCore/QByteArray>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: page.h 106 2007-11-16 02:23:20Z ap2c $
1818 */
1919 #ifndef _PAGE_H_
2020 #define _PAGE_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: pjl.cpp 94 2007-10-17 23:46:38Z ap2c $
1818 */
1919 #include "pjl.h"
2020 #include <QtCore/QFile>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: pjl.h 94 2007-10-17 23:46:38Z ap2c $
1818 */
1919 #ifndef _PJL_H_
2020 #define _PJL_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: qpdl.cpp 231 2008-10-19 13:16:24Z ap2c $
1818 */
1919 #include "qpdl.h"
2020 #include <QtCore/QFile>
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: qpdl.h 95 2007-10-18 23:35:36Z ap2c $
1818 */
1919 #ifndef _QPDL_H_
2020 #define _QPDL_H_
1414 * Free Software Foundation, Inc.,
1515 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1616 *
17 * $Id$
17 * $Id: template.cpp 94 2007-10-17 23:46:38Z ap2c $
1818 */
1919
2020 /* vim: set expandtab tabstop=4 shiftwidth=4 smarttab tw=80 cin enc=utf8 : */