You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ke...@apache.org on 2002/12/09 12:18:59 UTC

cvs commit: xml-fop/src/org/apache/fop/render/pdf PDFXMLHandler.java

keiron      2002/12/09 03:18:58

  Modified:    src/org/apache/fop/render/pdf PDFXMLHandler.java
  Log:
  use more decimal places for scaling
  
  Revision  Changes    Path
  1.12      +5 -5      xml-fop/src/org/apache/fop/render/pdf/PDFXMLHandler.java
  
  Index: PDFXMLHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/render/pdf/PDFXMLHandler.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- PDFXMLHandler.java	14 Nov 2002 15:22:30 -0000	1.11
  +++ PDFXMLHandler.java	9 Dec 2002 11:18:58 -0000	1.12
  @@ -256,10 +256,10 @@
               if (!at.isIdentity()) {
                   double[] vals = new double[6];
                   at.getMatrix(vals);
  -                pdfInfo.currentStream.add(PDFNumber.doubleOut(vals[0]) + " "
  -                                + PDFNumber.doubleOut(vals[1]) + " "
  -                                + PDFNumber.doubleOut(vals[2]) + " "
  -                                + PDFNumber.doubleOut(vals[3]) + " "
  +                pdfInfo.currentStream.add(PDFNumber.doubleOut(vals[0], 5) + " "
  +                                + PDFNumber.doubleOut(vals[1], 5) + " "
  +                                + PDFNumber.doubleOut(vals[2], 5) + " "
  +                                + PDFNumber.doubleOut(vals[3], 5) + " "
                                   + PDFNumber.doubleOut(vals[4]) + " "
                                   + PDFNumber.doubleOut(vals[5]) + " cm\n");
               }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org