From: William Victor Mote Date: Mon, 14 Apr 2003 20:33:40 +0000 (+0000) Subject: Pretty-print changes only. X-Git-Tag: Root_Temp_KnuthStylePageBreaking~1621 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fd08e1419c187fd5a4df94729122955e9d42a72f;p=xmlgraphics-fop.git Pretty-print changes only. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196260 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/svg.xml b/src/documentation/content/xdocs/svg.xml index 8e872a7e1..24b0ebb33 100644 --- a/src/documentation/content/xdocs/svg.xml +++ b/src/documentation/content/xdocs/svg.xml @@ -1,88 +1,83 @@ - -
- FOP Graphics Formats -
- - - +
+ FOP Graphics Formats +
+
SVG -
- Introduction -

+

+ Introduction +

FOP uses the SVG library from Batik to handle SVG. This format can be handled as an fo:instream-foreign-object or in a separate file referenced with fo:external-graphic. Either way the SVG document will be read in and converted into a DOM in Batik. This DOM will then be used by the renderer to create the graphical image. -

-

+

+

The AWT and Print renderers simply use batik to draw the SVG into a graphic. -

-

+

+

In the case of the PDF renderer there is a PDFGraphics2D class that Batik uses to render the image into. This class converts the drawing instructions into PDF markup which is placed into the current PDF document. -

-
- -
- Converting SVG to a PDF Document -

+

+
+
+ Converting SVG to a PDF Document +

It is possible to convert a standalone SVG document directly into a simple page PDF document. This is possible through the use of Batik's transcoder mechanism.
-java org.apache.batik.apps.rasterizer.Main -m application/pdf document.svg -
+ java org.apache.batik.apps.rasterizer.Main -m application/pdf document.svg +
This will output the svg document as "document.pdf" containing a PDF rendering of the SVG file. -

-

+

+

It is also possible to specify the width and/or height of the PDF document on the command line with -w and -h or if you are using the transcoder api you can use the transcoding hints. -

-

+

+

Currently the SVG image is drawn at the SVG document size and simply scaled in PDF to the new size. So the result may not be the best possible. For example if you have any images or effects it will draw them at the original resolution of the svg document. When this is viewed in the pdf it will have an incorrect resolution for the size of the pdf. -

-

+

+

The size of the pdf file will also remain the same regardless of what size the page is. -

-

+

+

For more information see Batik for how transcoders work. -

-
- -
- Placing SVG Graphics into PDF -

+

+
+
+ Placing SVG Graphics into PDF +

The svg is inserted into PDF by using PDF commands to draw and fill lines and curves. This means that the graphical objects created with this remain as vector graphics. -

-

+

+

There are a number of SVG things that cannot be converted directly into PDF. Parts of the graphic such as effects, patterns and images are inserted into the PDF as a raster graphic. The resolution of this graphic may not be ideal depending on the FOP dpi (72dpi) and the scaling for that graphic. This needs to be improved.

-

+

Currently transparency is not supported in PDF so many svg images that contain effects or graphics with transparent areas will not be displayed correctly. -

-
-
- Placing SVG Text into PDF -

If possible, Batik will use normal PDF text when inserting text. It does +

+
+
+ Placing SVG Text into PDF +

If possible, Batik will use normal PDF text when inserting text. It does this by checking if the text can be drawn normally and the font is supported. This example svg text.svg / text.pdf shows how various types and effects with text are handled. Note that tspan and outlined text are not yet implemented.

-

+

Otherwise, text is converted and drawn as a set of shapes by batik, using the stroking text painter. This means that a typical character will have about 10 curves (each curve consists of at least 20 characters). @@ -91,64 +86,62 @@ viewer does not normally draw those fine curves very well (turning on Smooth Line Art in the Acrobat preferences will fix this). If the text is inserted into the PDF using the inbuilt text commands for PDF it will use a single character. -

-

+

+

It is possible to make sure that all text is drawn into PDF using the PDF text commands (instead of the graphical shapes), by adding the following to the user config: -

- +

+ strokeSVGText false ]]> -

In a servlet environment, you can set it directly:

- org.apache.fop.configuration.Configuration.put("strokeSVGText", Boolean.FALSE); -

For information on using a configuration file in a servlet, see the FAQ on that topic.

-

Note that this configuration setting works only for the PDF renderer.

-

+

In a servlet environment, you can set it directly:

+ org.apache.fop.configuration.Configuration.put("strokeSVGText", Boolean.FALSE); +

For information on using a configuration file in a servlet, see the FAQ on that topic.

+

Note that this configuration setting works only for the PDF renderer.

+

The drawback to forcing text to be rendered as text is that it will be confined to text that is possible for PDF fonts (including embedded fonts) and implemented with this workaround. The fonts available are the standard pdf fonts and any fonts that you have embedded using FOP. The font sizes will be rounded to an integer value. In future this will be improved. -

-

Note that because SVG text can be rendered as either text or a vector graphic, you may need to consider settings in your viewer for both. +

+

Note that because SVG text can be rendered as either text or a vector graphic, you may need to consider settings in your viewer for both. The Acrobat viewer has both "smooth line art" and "smooth text" settings that may need to be set for SVG images to be displayed nicely on your screen (see Edit / Preferences / Display). This setting will not affect the printing of your document, which should be OK in any case, but will only affect the quality of the screen display.

-
- -
- Known Problems -
    -
  • +
+
+ Known Problems +
    +
  • soft mask transparency is combined with white so that it looks better on pdf 1.3 viewers but this causes the soft mask to be slightly lighter or darker on pdf 1.4 viewers -
  • -
  • +
  • +
  • there is some problem with a gradient inside a pattern causing a pdf error when viewed in acrobat 5 -
  • -
  • +
  • +
  • text is not always handled correctly, it may select the wrong font especially if characters have multiple fonts in the font list -
  • -
  • +
  • +
  • more pdf text handling could be implemented It could draw the string using the attributed character iterator to handle tspans and other simple changes of text. -
  • -
  • +
  • +
  • JPEG images are not inserted directly into the pdf document This area has not been implemented yet since the appropriate method in batik is static -
  • -
  • +
  • +
  • Uniform transparency for images and other svg elements that are converted into a raster graphic are not drawn properly in PDF. The image is opaque. -
  • -
-
+ + +
- +
-