You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Andreas Lehmkühler (JIRA)" <ji...@apache.org> on 2013/08/25 15:48:51 UTC

[jira] [Resolved] (PDFBOX-1702) Performance improvement in PDPageContentStream.drawString

     [ https://issues.apache.org/jira/browse/PDFBOX-1702?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Lehmkühler resolved PDFBOX-1702.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 2.0.0
         Assignee: Andreas Lehmkühler

I added some improvements in revision 1517288 based on Philips proposal.

Thanks for the contribution!

P.S.: Please provide possible future proposals as diff patch
                
> Performance improvement in PDPageContentStream.drawString
> ---------------------------------------------------------
>
>                 Key: PDFBOX-1702
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-1702
>             Project: PDFBox
>          Issue Type: Improvement
>          Components: Writing
>    Affects Versions: 1.8.2
>            Reporter: Philip Helger
>            Assignee: Andreas Lehmkühler
>             Fix For: 2.0.0
>
>         Attachments: PDPageContentStreamFast.java
>
>
> There is a simple way of improving the performance of drawString by replacing
>        string.writePDF( buffer );
>         appendRawCommands( new String( buffer.toByteArray(), "ISO-8859-1"));
>         appendRawCommands( SPACE );
> with
>        string.writePDF( buffer );
>         appendRawCommands( buffer.toByteArray() );
>         appendRawCommands( SPACE );
> as the appendRawCommands(String) simple does a appendRawCommands(str.getBytes( "ISO-8859-1" ));
> Therefore this optimization should spare the String creation as well as the conversion back to a byte array.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira