I've a different requirement. I'm receiving TIFF images as a binary text. I don't know if I can call that Binary Text. The text contains non-ascii characters like shown below
0ÎÀi7°®èý¯Â£ôîÀk1 ü"»£ð‚£Ê£ðü»£ö¿
ŒGÓº?¬hÄr€kðŠîÂ
ŒG*Àkð
¸z «ÿ*ëÿ¢^˾6‚¢êZÒáÿì)eì"‚("¿ÿ€jPšÄ0?<À@Ã\=>P€ª ê¨Eý5?J†¤=oöÃ|(0Ã6ª™P†!*¯Ä0ÿ*¢uÝ¡0Šjþ &&—ÿ
+§¾È°Ã¡-s§‚2“³˜©Î{é¾pªXp%&ì;PËæ™4ºfŒ˜Îÿ Éû½)¨ŽV“þp¦IÇG˜bþñÿÿi•¼
So, I tired to read this text using imageIO using the below code, But it throws error.
String str = "Binary Mentioned Above";
byte[] b = str.getBytes();
ByteArrayInputStream in = new ByteArrayInputStream(b);
BufferedImage bImageFromConvert = ImageIO.read(in);
TIFFEncodeParam params = new TIFFEncodeParam();
File myNewTIFF_File = new File("C:\\Projects\\test\\combined.tif");
ImageIO.write(bImageFromConvert, "TIFF", myNewTIFF_File);
The Error message I get is
Exception in thread "main" java.lang.IllegalArgumentException: image == null!
Now surfing through the posts, I identified that not all TIF can be read using ImageIO. So I used a code online that basically converts the TIFF into a PDF.
public static String ImageToPDF(byte[] bytes, String pathFile) {
String fileName= pathFile + ".pdf";
Document document = null;
document = new Document();
try {
FileOutputStream fos = new FileOutputStream(fileName);
PdfWriter writer = PdfWriter.getInstance(document, fos);
writer.open();
document.open();
// Array of bytes we have read from the Binary file
RandomAccessFileOrArray ra = new RandomAccessFileOrArray(bytes);
System.out.println("ra ---- "+ra);
// Get the number of pages the the binary file have inside
int numberOfPages = TiffImage.getNumberOfPages(ra);
System.out.println("numberOfPages ------------ "+numberOfPages);
// Loop through numberOfPages and add them on the document
// one by one
for(int page = 1; page <= numberOfPages; page ++){
Image image = TiffImage.getTiffImage(new RandomAccessFileOrArray(bytes),page);
image.scaleAbsolute(500, 500);
document.add(image);
}
document.close();
writer.close();
} catch (Exception e) {
e.printStackTrace();
}
return fileName;
}
public static void main(String[] args) throws IOException{
File imgFront = new File("C:\\Projects\\newtest.txt");
byte[] fileContent = Files.readAllBytes(imgFront.toPath());
//fileContent = File
ImageToPDF(fileContent,"C:\\Projects\\pdfWithImage");
}
I get the error as Bad endianness tag (not 0x4949 or 0x4d4d)
. This error comes in this line TiffImage.getNumberOfPages(ra);
when I try to read the pages in Tiff. I verified using Mirth tool to create a binary text of a tiff and the tiff is valid. I'm running out of options on how to fix this issue. ANy help is much appreciated.