Re: how to increase an image resolution in PDF Transcoder

2003-06-13 Thread Roland Kofler
Thank you Thomas! I found the source of the problem: the downscaling of an image is done by applying an affine transformation -line 145 in GraphicUtil: cr = new AffineRed(cr, at, g2d.getRenderingHints()); on a BufferedImage. This results in a scaled raster image. then you take only the visible

Re: how to increase an image resolution in PDF Transcoder

2003-06-13 Thread Thomas DeWeese
Roland Kofler wrote: Thank you Thomas! I found the source of the problem: the downscaling of an image is done by applying an affine transformation -line 145 in GraphicUtil: cr = new AffineRed(cr, at, g2d.getRenderingHints()); on a BufferedImage. This results in a scaled raster image. then you

Re: how to increase an image resolution in PDF Transcoder

2003-06-10 Thread Thomas E Deweese
RK == Roland Kofler [EMAIL PROTECTED] writes: RK Keiron Liddle suggested to post this issue to batik-dev: I patched RK the PDFGraphics2D class to get a better resolution for Images. RK Keiron gave me the hint that i may have to increase the Dimensions RK of the BufferedImage() to do this. Now, I