I am trying to extract image metadata (and the image) for images embedded in pdfs, using pdfbox. I have the following problem,
for each page i:
for each image j in page i:
extract metadata, output
create the image file in separate thread
Now, I have the following code for creating the image file, which is included in a method called generate_image() in FileWritingclass implementing Runnable. This method is called from run(). The code follows:
try {
File F=new File(figurename);
item.getImage().write2file( F );
} catch (Exception e) {
e.printStackTrace();
}
where item.getImage() returns a PDXObjectImage object. If I do this without creating a separate thread, it works fine, but when I create a thread to do this task, it shows following error:
java.lang.IndexOutOfBoundsException: Index: 5, Size: 0
at java.util.ArrayList.rangeCheck(ArrayList.java:604)
at java.util.ArrayList.get(ArrayList.java:382)
at org.apache.pdfbox.io.RandomAccessBuffer.seek(RandomAccessBuffer.java:84)
at org.apache.pdfbox.io.RandomAccessFileInputStream.read(RandomAccessFileInputStream.java:96)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:275)
at java.io.BufferedInputStream.read(BufferedInputStream.java:334)
at java.io.FilterInputStream.read(FilterInputStream.java:107)
at org.apache.pdfbox.pdmodel.graphics.xobject.PDCcitt$TiffWrapper.read(PDCcitt.java:468)
at org.apache.pdfbox.io.IOUtils.copy(IOUtils.java:68)
at org.apache.pdfbox.pdmodel.graphics.xobject.PDCcitt.write2OutputStream(PDCcitt.java:184)
at org.apache.pdfbox.pdmodel.graphics.xobject.PDXObjectImage.write2file(PDXObjectImage.java:165)
at extractor.FileWriting.generate_image(FileWriting.java:136)
Can anyone please point out where I am going wrong?