Details

    • Type: Bug Bug
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 4.1.1
    • Fix Version/s: 4.1.3
    • Component/s: Core/Parsing
    • Labels:
      None
    • Environment:
      any

      Description

      A user has pointed out a regression in the jbig2 support. I've looked into this issue an little closer and the claim is valid. An error check was added for empty JBIG2Global values in the Stream class which is causing the regression. The Hashtable processing block in the jbig2Decode method should instead read:

               Hashtable decodeparms = library.getDictionary(entries, "DecodeParms");
                  if (decodeparms != null) {
                      Stream globalsStream = (Stream) library.getObject(decodeparms, "JBIG2Globals");
                      if (globalsStream != null){
                          byte[] globals = globalsStream.getDecodedStreamBytes();
                          if (globals != null && globals.length > 0) {
                              decoder.setGlobalData(globals);
                              globals = null;
                          }
                      }
                  }

        Activity

        Hide
        Patrick Corless added a comment -

        Checked in patch to fix jbig 2 decoding error when no decode parameters are encountered.

        Show
        Patrick Corless added a comment - Checked in patch to fix jbig 2 decoding error when no decode parameters are encountered.

          People

          • Assignee:
            Patrick Corless
            Reporter:
            Patrick Corless
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: