Return-Path: Delivered-To: apmail-xmlgraphics-general-archive@www.apache.org Received: (qmail 737 invoked from network); 14 Aug 2007 13:06:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Aug 2007 13:06:59 -0000 Received: (qmail 92490 invoked by uid 500); 14 Aug 2007 13:06:57 -0000 Mailing-List: contact general-help@xmlgraphics.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@xmlgraphics.apache.org Delivered-To: mailing list general@xmlgraphics.apache.org Received: (qmail 92479 invoked by uid 99); 14 Aug 2007 13:06:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Aug 2007 06:06:57 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Aug 2007 13:07:11 +0000 Received: by brutus.apache.org (Postfix, from userid 33) id 8C156714191; Tue, 14 Aug 2007 06:06:36 -0700 (PDT) From: bugzilla@apache.org To: general@xmlgraphics.apache.org Subject: DO NOT REPLY [Bug 43118] New: - TIFFImage constructor failed with error "TIFFImage10" on image with Adobe Deflate compression type Message-ID: X-Bugzilla-Reason: AssignedTo Date: Tue, 14 Aug 2007 06:06:36 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=43118 Summary: TIFFImage constructor failed with error "TIFFImage10" on image with Adobe Deflate compression type Product: XMLGraphicsCommons Version: 1.2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Image codecs AssignedTo: general@xmlgraphics.apache.org ReportedBy: sorlov@mdi.ru 327: compression = compField == null ? COMP_NONE : compField.getAsInt(0); After this assignment field "compression" has unsupported value => 8 I use next workaround: if (compField == null) compression = COMP_NONE; else { compression = compField.getAsInt(0); if (compression == 8) // Adobe Deflate compression = COMP_DEFLATE; } -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- Apache XML Graphics Project URL: http://xmlgraphics.apache.org/ To unsubscribe, e-mail: general-unsubscribe@xmlgraphics.apache.org For additional commands, e-mail: general-help@xmlgraphics.apache.org