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

Tilman Hausherr resolved PDFBOX-2000.
-------------------------------------

       Resolution: Duplicate
    Fix Version/s: 2.0.0

This is what I like to call the CMR font problem, but it is JDK related. "We" 
(or rather, John) solved it in version 2.0 by not using awt anymore, but this 
is not in version 1.8. The 2.0 version isn't released, but you can get 
snapshots here and test it:
https://repository.apache.org/content/groups/snapshots/org/apache/pdfbox/

Sorry not to offer better news.

> White page when converting first page to image
> ----------------------------------------------
>
>                 Key: PDFBOX-2000
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-2000
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Rendering
>    Affects Versions: 1.8.4
>         Environment: windows
>            Reporter: Hong-Thai Nguyen
>             Fix For: 2.0.0
>
>         Attachments: wrongpdf.pdf
>
>
> When converting first page to image by this code for attached PDF:
> {code}
> private static BufferedImage computeImage(PDDocument document) throws 
> IOException {
>     int imageType = BufferedImage.TYPE_INT_RGB;
>     int resolution;
>     try {
>       resolution = Toolkit.getDefaultToolkit().getScreenResolution();
>     } catch (HeadlessException e) {
>       resolution = 96;
>     }
>     PDPage page = (PDPage) document.getDocumentCatalog().getAllPages().get(0);
>     try {
>       BufferedImage image = page.convertToImage(imageType, resolution);
>       return image;
>     } finally {
>       page = null;
>     }
>   }
> {code}
> returned image is the of a white page.



--
This message was sent by Atlassian JIRA
(v6.2#6252)

Reply via email to