【问题标题】:How to decode image with /ASCIIHexDecode如何使用 /ASCIIHexDecode 解码图像
【发布时间】:2018-04-16 12:10:40
【问题描述】:

我正在尝试使用 iTextSharp 从 PDF 文件中提取图像。

该过程适用于我拥有的大多数 PDF 文件,但其他一些文件失败。

特别是,我观察到失败的 PDF 包含带有过滤器 /ASCIIHexDecode/CCITTFaxDecode 的图像。

如何使用此过滤器解码图像?

仅供参考,我的图像提取例程是(pg object is get using PdfReader.GetPageN):

private static FindImages(PdfReader reader, PdfDictionary pdfPage)
{
    var imgPdfObject = FindImageInPDFDictionary(pdfPage);
    foreach (var image in imgPdfObject)
    {
        var xrefIndex = ((PRIndirectReference)image).Number;
        var stream = reader.GetPdfObject(xrefIndex);
        // Exception occurs here :
        var pdfImage = new PdfImageObject((PRStream)stream);
        img = (Bitmap)pdfImage.GetDrawingImage();

        // Do something with the image

    }
}
private static IEnumerable<PdfObject> FindImageInPDFDictionary(PdfDictionary pg)
{
    PdfDictionary res =
        (PdfDictionary)PdfReader.GetPdfObject(pg.Get(PdfName.RESOURCES));

    PdfDictionary xobj =
      (PdfDictionary)PdfReader.GetPdfObject(res.Get(PdfName.XOBJECT));
    if (xobj != null)
    {
        foreach (PdfName name in xobj.Keys)
        {
            PdfObject obj = xobj.Get(name);
            if (obj.IsIndirect())
            {
                PdfDictionary tg = (PdfDictionary)PdfReader.GetPdfObject(obj);

                PdfName type = (PdfName)PdfReader.GetPdfObject(tg.Get(PdfName.SUBTYPE));

                //image at the root of the pdf
                if (PdfName.IMAGE.Equals(type))
                {
                    yield return obj;
                }// image inside a form
                else if (PdfName.FORM.Equals(type))
                {
                    foreach (var nestedObj in FindImageInPDFDictionary(tg))
                    {
                        yield return nestedObj;
                    }
                } //image inside a group
                else if (PdfName.GROUP.Equals(type))
                {
                    foreach (var nestedObj in FindImageInPDFDictionary(tg))
                    {
                        yield return nestedObj;
                    }
                }
            }
        }
    }
}

确切的例外是:

iTextSharp.text.exceptions.InvalidImageException: **Invalid code encountered while decoding 2D group 4 compressed data.**
  à iTextSharp.text.pdf.codec.TIFFFaxDecoder.DecodeT6(Byte[] buffer, Byte[] compData, Int32 startX, Int32 height, Int64 tiffT6Options)
  à iTextSharp.text.pdf.FilterHandlers.Filter_CCITTFAXDECODE.Decode(Byte[] b, PdfName filterName, PdfObject decodeParams, PdfDictionary streamDictionary)
  à iTextSharp.text.pdf.PdfReader.DecodeBytes(Byte[] b, PdfDictionary streamDictionary, IDictionary`2 filterHandlers)
  à iTextSharp.text.pdf.parser.PdfImageObject..ctor(PdfDictionary dictionary, Byte[] samples, PdfDictionary colorSpaceDic)
  à iTextSharp.text.pdf.parser.PdfImageObject..ctor(PRStream stream)
  à MyProject.MyClass.MyMethod(PdfReader reader, PdfDictionary pdfPage) dans c:\\sopmewhere\\PdfProcessor.cs:ligne 161

仅供参考:这是一个导致问题的示例 PDF:test.pdf

【问题讨论】:

  • 请分享出现异常的pdf。
  • 我更新了缺少实际失败代码的重现代码,以及导致问题的示例 PDF。
  • 您的示例文件不包含任何带有 ASCIIHexDecode 过滤器的流。您可能希望从问题标题中编辑此内容,因为它可能会误导人们专注于该过滤器,例如 Jacek Blaszczynski 在他的回答中。
  • 我可以重现您的问题,确实 iText 不认为有问题的图像是有效的。不幸的是,我对图像格式没有那么深入,无法判断图像数据是否确实被破坏或 iText 图像解码代码不完整。但是,由于格式是 TIFF 变体,两者都可能是真的。

标签: c# itext invalidargumentexception pdfobject


【解决方案1】:

无需深入了解您的代码示例,还有一些 PDF 过滤器的替代实现,特别是一个非常简单的实现,如下 PDFSharp - AsciiHexDecode.cs。希望它会有所帮助,因为替换 iTextSharp 中实现的编码器和解码器应该很简单,并且应该允许验证数据是否损坏或解码器/编码器之一有错误。不幸的是,在撰写本文时,我手头没有关于 /CCITTFaxDecode 的示例。

//
// Copyright (c) 2005-2016 empira Software GmbH, Cologne Area (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
// DEALINGS IN THE SOFTWARE.
#endregion

using System;

namespace PdfSharp.Pdf.Filters
{
    /// <summary>
    /// Implements the ASCIIHexDecode filter.
    /// </summary>
    public class AsciiHexDecode : Filter
    {
        // Reference: 3.3.1  ASCIIHexDecode Filter / Page 69

        /// <summary>
        /// Encodes the specified data.
        /// </summary>
        public override byte[] Encode(byte[] data)
        {
            if (data == null)
                throw new ArgumentNullException("data");

            int count = data.Length;
            byte[] bytes = new byte[2 * count];
            for (int i = 0, j = 0; i < count; i++)
            {
                byte b = data[i];
                bytes[j++] = (byte)((b >> 4) + ((b >> 4) < 10 ? (byte)'0' : (byte)('A' - 10)));
                bytes[j++] = (byte)((b & 0xF) + ((b & 0xF) < 10 ? (byte)'0' : (byte)('A' - 10)));
            }
            return bytes;
        }

        /// <summary>
        /// Decodes the specified data.
        /// </summary>
        public override byte[] Decode(byte[] data, FilterParms parms)
        {
            if (data == null)
                throw new ArgumentNullException("data");

            data = RemoveWhiteSpace(data);
            int count = data.Length;
            // Ignore EOD (end of data) character.
            // EOD can be anywhere in the stream, but makes sense only at the end of the stream.
            if (count > 0 && data[count - 1] == '>')
                --count;
            if (count % 2 == 1)
            {
                count++;
                byte[] temp = data;
                data = new byte[count];
                temp.CopyTo(data, 0);
            }
            count >>= 1;
            byte[] bytes = new byte[count];
            for (int i = 0, j = 0; i < count; i++)
            {
                // Must support 0-9, A-F, a-f - "Any other characters cause an error."
                byte hi = data[j++];
                byte lo = data[j++];
                if (hi >= 'a' && hi <= 'f')
                    hi -= 32;
                if (lo >= 'a' && lo <= 'f')
                    lo -= 32;
                // TODO Throw on invalid characters. Stop when encountering EOD. Add one more byte if EOD is the lo byte.
                bytes[i] = (byte)((hi > '9' ? hi - '7'/*'A' + 10*/: hi - '0') * 16 + (lo > '9' ? lo - '7'/*'A' + 10*/: lo - '0'));
            }
            return bytes;
        }
    }
}

【讨论】:

  • 该问题极不可能是由于 iText 的 AsciiHexDecoder 中的问题。如果问题完全是由于 iText 中的问题(而不是损坏的图像数据),则更有可能是 TIFFFaxDecoder 的限制。在回答之前,你有没有检查过那门课?
  • 感谢@Jacek,但我认为我的问题与过滤器本身无关,而是与我的代码中的逻辑有关。我期待PdfImage.GetDrawingImage 方法能够处理这个问题,因为我在一些博客文章中读过很多次。
猜你喜欢
  • 2020-09-13
  • 1970-01-01
  • 2021-12-28
  • 1970-01-01
  • 2016-08-20
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-01-31
相关资源
最近更新 更多