Op 24/12/2010 12:43, sam_dev schreef: > hi...... > i am using Zlib class in c++. After getting the > decompressed data i can't manage how to arrange the data for image > format...please help me regarding this ... As explained in the book, an array of data for an image is not sufficient! You need to know the number of components: 1 (Gray), 3 (RGB), or 4 (CMYK). Moreover you need to know the number of bits per component. Finally, you need to know the width and the height of the image. This information is present in the PDF, use it!
------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Many questions posted to this list can (and will) be answered with a reference to the iText book: http://www.itextpdf.com/book/ Please check the keywords list before you ask for examples: http://itextpdf.com/themes/keywords.php
