C.3 Understanding the Format of the iPrint Printer Configuration File

The iPrint printer configuration file contains information about the iPrint printer such as printer name, iPrint URI, and the printing preferences.

C.3.1 Format of iPrint Printer Configuration File with Default Printing Preferences

<?xml version="1.0" encoding="utf-8"?>
<Printer name="ipp://10.0.0.0/ipp/Printer2" type="iPrint" updateiPrintDriver="true">
   <DefaultPrintingPreferences/>
</Printer>

For information on the default printing preferences, see Section C.4, Printing Preferences for an iPrint Printer.

C.3.2 [Example] iPrint Printer Configuration File with Some Printing Preferences Specified

You can specify printing preferences in the iPrint printer configuration file. For more information on the available printing preferences, see Section C.4, Printing Preferences for an iPrint Printer.

A sample of the iPrint printer configuration file with some printing preferences specified is as follows:

<?xml version="1.0" encoding="utf-8"?>
<Printer name="ipp://10.0.0.0/ipp/Printer2" type="iPrint" updateiPrintDriver="true">
   <DefaultPrintingPreferences>
     <PrinterOrientation>Portrait</PrinterOrientation>
     <PaperSource>Envmanual</PaperSource>
     <Duplex>true</Duplex>
     <Collate>true</Collate>
     <PaperSize>Ledger</PaperSize>
     <PrintQuality>High</PrintQuality>
     <IsDefault>true</IsDefault>
   </DefaultPrintingPreferences>
</Printer>