You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2014/08/31 23:11:20 UTC

[jira] [Commented] (PDFBOX-2302) Make better use of RenderingHints

    [ https://issues.apache.org/jira/browse/PDFBOX-2302?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14116893#comment-14116893 ] 

ASF subversion and git services commented on PDFBOX-2302:
---------------------------------------------------------

Commit 1621640 from [~jahewson] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1621640 ]

PDFBOX-2302: Make better use of RenderingHints

> Make better use of RenderingHints
> ---------------------------------
>
>                 Key: PDFBOX-2302
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-2302
>             Project: PDFBox
>          Issue Type: Improvement
>          Components: Rendering
>    Affects Versions: 2.0.0
>            Reporter: John Hewson
>            Assignee: John Hewson
>            Priority: Minor
>         Attachments: mori-cvpr01.pdf
>
>
> PageDrawer doesn't make effective use of Java 2D's RenderingHints. The situation now is a little odd due to code having been moved around and copied and pasted. Most of the time we're not making use of higher quality renderings which are available to us.
> Some examples of strangeness:
> - drawTilingPattern sets VALUE_FRACTIONALMETRICS_ON, yet this applies only to AWT fonts
> - drawGlyph2D sets VALUE_ANTIALIAS_ON but strokePath and fillPath set it to VALUE_ANTIALIAS_OFF
> - drawBufferedImage sets KEY_INTERPOLATION to VALUE_INTERPOLATION_NEAREST_NEIGHBOR which is the lowest quality image scaling method
> - shadingFill sets VALUE_ANTIALIAS_OFF (but that might make more sense because we're Paint-ing these ourselves, OTOH if the canvas is buffered already for anti-aliasing do we save anything by disabling it?)
> - drawPage sets VALUE_ANTIALIAS_ON but this is always overridden by the various drawing methods
> Currently we're missing out on anti-aliasing for paths (other than glyphs) and we're getting low-quality resizing of images, which makes Type 3 fonts look particularly ugly. Setting the appropriate rendering hints would improve this greatly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)