do you need to have the images inside files? Otherwise you could just
read them from oracle (BLOAD) and get the bytes:
InputStream in = blob.getStream(); // or something like that
byte []bytes=new byte[in.available()];
in.read(bytes);
in.close();
Image image=Image.getInstance(bytes);
Otherwise I agree that this is more of an oracle problem than iText.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions