]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Documented new stuff.
authorJeremias Maerki <jeremias@apache.org>
Sat, 12 Nov 2005 16:11:53 +0000 (16:11 +0000)
committerJeremias Maerki <jeremias@apache.org>
Sat, 12 Nov 2005 16:11:53 +0000 (16:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@332795 13f79535-47bb-0310-9956-ffa450edef68

src/documentation/content/xdocs/trunk/embedding.xml
src/documentation/content/xdocs/trunk/running.xml

index da16e44ca99aa0655b9496cfa4fa9dd9d0eaeb1a..2e77c11ab53f3c2dd32938e14c2a059b289e4328 100644 (file)
     </p>
     <source><![CDATA[
 import org.apache.fop.apps.Fop;
-import org.apache.fop.fo.Constants;
+import org.apache.fop.apps.MimeConstants;
 
 /*..*/
 
 // Step 1: Construct fop with desired output format
-Fop fop = new Fop(Constants.RENDER_PDF);
+Fop fop = new Fop(MimeConstants.MIME_PDF);
 
 // Step 2: Setup output stream.
 // Note: Using BufferedOutputStream for performance reasons (helpful with FileOutputStreams).
@@ -261,7 +261,7 @@ try {
     </p>
     <source><![CDATA[
 FOUserAgent userAgent = new FOUserAgent();
-Fop fop = new Fop(Constants.RENDER_PS, userAgent);]]></source>
+Fop fop = new Fop(MimeConstants.MIME_POSTSCRIPT, userAgent);]]></source>
     <p>
       You can do all sorts of things on the user agent:
     </p>
index d91cde11b2d344d1a1047a64818f390d20181afa..3eccf680701a873c0cdacf2c9c0687572bc0848a 100644 (file)
@@ -147,7 +147,10 @@ Fop [options] [-fo|-xml] infile [-xsl file] [-awt|-pdf|-mif|-rtf|-tiff|-png|-pcl
   -at outfile       representation of area tree as XML (outfile req'd)
   -print            input file will be rendered and sent to the printer
                     see options with "-print help"
-
+  -out mime outfile input will be rendered using the given MIME type
+                    (outfile req'd) Example: "-out application/pdf D:\out.pdf"
+                    (Tip: "-out list" prints the list of supported MIME types)
+                    
   -foout outfile    input will only be XSL transformed. The intermediate
                     XSL-FO file is saved and no rendering is performed.
                     (Only available if you use -xml and -xsl parameters)