Uploaded image for project: 'XMLGraphicsCommons'
  1. XMLGraphicsCommons
  2. XGC-9

TIFFImage constructor failed with error "TIFFImage10" on image with Adobe Deflate compression type

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Resolution: Won't Fix
    • 1.2
    • None
    • image codecs
    • None
    • Operating System: All
      Platform: All

    Description

      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; }

      Attachments

        Activity

          People

            general@xmlgraphics.apache.org XML Graphics Project Mailing List
            sorlov@mdi.ru Sergey Orlov
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: