changed the dpi for svg to 72 to be the same as other things in fop

value should be in one place

- same goes for other renderers


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194401 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Keiron Liddle 2001-08-09 14:04:21 +00:00
parent baf7a548a0
commit 7a27bcdf7e

View File

@ -1031,7 +1031,9 @@ public class AWTRenderer implements Renderer, Printable, Pageable {
* Returns a customized the pixel to mm factor.
*/
public float getPixelToMM() {
return 0.264583333333333333333f; // 72 dpi
// this is set to 72dpi as the values in fo are 72dpi
return 0.35277777777777777778f; // 72 dpi
// return 0.26458333333333333333333333333333f; // 96dpi
}
/**