
|
The re:output element controls the attributes and style properties for a single output. XML Tag
<re:output name='' file-name='' type='' options='' />
...
</re:output>DTD
<!ENTITY % name "name CDATA #REQUIRED">
<!ELEMENT re:output (re:outputoption*)>
<!ATTLIST re:output
%name;
file-name CDATA "Untitled"
options CDATA #IMPLIED
type
(
reality.pdf |
reality.pdf.screen |
reality.pdf.press |
reality.pdf.kwik |
reality.pdf.kwik.single |
reality.postscript |
reality.eps.kwik |
reality.bitmap.gif |
reality.bitmap.jpeg |
reality.bitmap.png |
reality.bitmap.tiff
) #REQUIRED
>
NOTE When using reality.pdf, reality.pdf.screen, reality.pdf.press, reality.pdf.kwik, reality.postscrip and reality.eps.kwik if an alpha component is set in a color space then a the portion of the document containing the alpha channel will be rasterized to a bit map. NOTE When using reality.pdf.kwik.single, reality.bitmap.gif, reality.bitmap.jpeg, reality.bitmap.png and reality.bitmap.tiff if the output produces more than one page then only the first page will be output to these formats. If additional pages are required in these formats then the resulting PDF output can be submitted to the system as an include and the pages required can be specified using image page. Reference examples090_010 Childrenre:outputoption Attributesname, file-name, type, options Style PropertiesSee also re:outputoptions for properties and usage for the options attribute. nameThe name attribute specifies a user defined descriptive name for this type of output. file-nameThe file-name attribute specifies the actual name that this output file will be called. There should be no file name extension applied to this name, as the system will add the appropriate extension for each output. NOTE If no file name is supplied then the default will be the uid from the re:document element. typeThe type attribute specifies one of the OUTPUT_TYPE constants, used to identify this elements, output format. optionsThe option attribute specifies a short cut for the re:outputoptions, the properties that can be used are the same (see re:outputoptions).
|