# This patch file was generated by NetBeans IDE # It uses platform neutral UTF-8 encoding and \n newlines. --- PageDrawer.java (1566760) +++ Current File @@ -186,18 +186,19 @@ * * @param g The graphics context to draw onto. * @param stream The stream to be used. - * @param resources resources to be used when drawing the stream + * @param resources resources to be used when drawing the stream. * @param pageDimension The size of the page to draw. + * @param matrix The current transformation matrix. * * @throws IOException If there is an IO error while drawing the page. */ - public void drawStream(Graphics g, COSStream stream, PDResources resources, PDRectangle pageDimension) + public void drawStream(Graphics g, COSStream stream, PDResources resources, PDRectangle pageDimension, Matrix matrix) throws IOException { graphics = (Graphics2D) g; graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); graphics.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_ON); - processStream(resources, stream, pageDimension, 0); + processStream(resources, stream, pageDimension, 0, matrix); } /**