First of all, this has nothing to do with your version of OpenOffice. Additional information you should provide: - PDFBox version - Java version - Sample files showing this error (both PDF and the generated image files). - The code that writes out the BufferedImage object to an actual file.
On Mon, Jun 10, 2013 at 11:15 AM, Robin Thomas Panicker <[email protected]>wrote: > Thanks a lot Gilad, for responding. I was not sure on what more information > to provide. Now that you have asked me the specific details, let me provide > you with more information. > > I am using the below code to do the conversion of PDF - image. (Trying to > save the first page of the pdf as an image file) > > String pdfFile ="d:/hs/4.pdf"; > document = PDDocument.load( pdfFile ); > > List pages = document.getDocumentCatalog().getAllPages(); > PDPage page = ( PDPage ) pages.get( 0 ); > int width = ( int ) page.getArtBox().getWidth(); > int height = ( int ) page.getArtBox().getHeight(); > BufferedImage image = page.convertToImage( imageType, > resolution ); > > > On a machine (prod server) where the conversion DOES NOT work, I have > Ubuntu 12.4, open office 3.0 > while on a machine (development machine) where the conversion works, I have > Ubuntu 10.10 and open office 3.0 > > On both the machines I am using the same code and version of PDFBox on both > is 1.8.1 > > The issue that I face is that the image conversion simply doesnt work > correctly ( I can see parts of image / text garbled, or missing) There is > no error or warning on the log outputs. > > Please let me know if I can provide you with any more information in > understanding the problem > > Thanks, > Robin > > > > On Mon, Jun 10, 2013 at 2:25 PM, Gilad Denneboom > <[email protected]>wrote: > > > A lof of information missing, there... How are you converting the PDF > > files, exactly? What type of problems do you encounter? Which version of > > PDFBox do you use? And what does it have to do with your Office suite > > > > Without more information it's impossible to help you with your problem. > > > > > > On Mon, Jun 10, 2013 at 8:22 AM, Robin Thomas Panicker <[email protected] > > >wrote: > > > > > Hi, > > > I am using PDFBox to convert PDF documents into images. > However > > in > > > some machines I am facing an issue. The conversion does not happen > > correct. > > > I can see missing text / images etc. > > > > > > Please note that this happens only in a few machines. I use Ubuntu and > > > OpenOffice. I have tried with a variety of combinations for difference > > > version of Ubuntu and Openoffice (and even LibreOffice) > > > > > > However I am unable to find out why it does not work on some machines. > > > > > > Can anyone please help? > > > > > > Thanks, > > > Robin > > > > > > > > > -- > > Robin Panicker, > Q*Burst* > www.qburst.com > Skype: Robin.at.qburst >

