ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahh_5.4.0.1/transinstr.htm

96 lines
5.0 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="Example: Reading and transforming spooled files" />
<meta name="abstract" content="" />
<meta name="description" content="" />
<meta name="copyright" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="transinstr" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>Example: Reading and transforming spooled files</title>
</head>
<body id="transinstr"><a name="transinstr"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">Example: Reading and transforming spooled files</h1>
<div><p></p>
<div class="section"><p>The following examples demonstrate how to set up a PrintParameterList
to obtain different transformations when reading spooled file data. In the
code segments that follow, assume a spooled file already exists on a server,
and the <em> createSpooledFile()</em> method creates an instance of the SpooledFile
class representing the spooled file.</p>
</div>
<div class="section"><div class="p"><strong>Example of PrintObjectPageInputStream</strong><div class="note"><span class="notetitle">Note:</span> Read the <a href="codedisclaimer.htm#codedisclaimer">Code example disclaimer</a> for
important legal information.</div>
</div>
<div class="p"> The following example shows how
to create a PrintObjectPageInputStream object for reading pages of data formatted
as GIF images. In this case, each page from the spooled file will be transformed
into a GIF image. A GIF workstation customization object is used to specify
the data transform. <pre>// Create a spooled file
SpooledFile splF = createSpooledFile();
// Set up print parameter list
PrintParameterList printParms = new PrintParameterList();
printParms.setParameter(PrintObject.ATTR_WORKSTATION_CUST_OBJECT, "/QSYS.LIB/QWPGIF.WSCST");
printParms.setParameter(PrintObject.ATTR_MFGTYPE, "*WSCST");
// Create a page input stream from the spooled file
PrintObjectPageInputStream is = splF.getPageInputStream(printParms);</pre>
</div>
</div>
<div class="section"><div class="p"><strong>Example of PrintObjectTransformedInputStream</strong><div class="note"><span class="notetitle">Note:</span> Read
the <a href="codedisclaimer.htm#codedisclaimer">Code example disclaimer</a> for
important legal information.</div>
</div>
<div class="p"> The following example shows how
to create a PrintObjectTransformedInputStream object for reading data formatted
as TIFF. A TIFF (G4 compression) workstation customization object is used
to specify the data transform. <pre>// Create a spooled file
SpooledFile splF = createSpooledFile();
// Set up print parameter list
PrintParameterList printParms = new PrintParameterList();
printParms.setParameter(PrintObject.ATTR_WORKSTATION_CUST_OBJECT, "/QSYS.LIB/QWPTIFFG4.WSCST");
printParms.setParameter(PrintObject.ATTR_MFGTYPE, "*WSCST");
// Create a transformed input stream from the spooled file
PrintObjectTransformedInputStream is = splF.getTransformedInputStream(printParms);</pre>
</div>
</div>
<div class="section"><div class="p"><strong>Example of PrintObjectTransformedInputStream using manufacturer
type and model</strong><div class="note"><span class="notetitle">Note:</span> Read the <a href="codedisclaimer.htm#codedisclaimer">Code
example disclaimer</a> for important legal information.</div>
</div>
<div class="p"> The
following example shows how to create a PrintObjectTransformedInputStream
object for reading data formatted for output to an ASCII printer. A manufacturer
type and model of *HP4 is used to specify the data transform. <pre>// Create a spooled file
SpooledFile splF = createSpooledFile();
// Set up print parameter list
PrintParameterList printParms = new PrintParameterList();
printParms.setParameter(PrintObject.ATTR_MFGTYPE, "*HP4");
// Create a transformed input stream from the spooled file
PrintObjectTransformedInputStream is = splF.getTransformedInputStream(printParms);</pre>
</div>
</div>
</div>
</body>
</html>