12

我需要将一页 pdf 文档保存为网站上缩略图的图像。

我一直在搞乱 PDFSharp 并且没有运气。

我试过这个:http ://www.pdfsharp.net/wiki/ExportImages-sample.ashx?AspxAutoDetectCookieSupport=1但它所做的只是提取 PDF 文件中的嵌入图像,这不是预期的结果。

关于如何做到这一点的想法?任何人都知道可以处理这个问题的好图书馆吗?

编辑:请让我知道为什么这是一个糟糕的问题。如果有人对此有很好的解决方案,那么对于许多其他人来说,这将是一个很好的资源。特别是因为谷歌搜索是空的。

4

5 回答 5

5

看看Ghostscript。您可以使用它将 PDF 渲染为图像。

http://www.mattephraim.com/blog/2009/01/06/a-simple-c-wrapper-for-ghostscript/

于 2012-01-09T04:12:13.170 回答
5

Ghostscript 目前是渲染 PDF 的事实标准。包装起来有点棘手,即使使用 GhostScriptSharp。

Jason Morse 编写了一个出色的 C# 包装器,用于将 PDF 渲染为开源imageresizing.net 库的插件。

如果它是一个 asp.net 应用程序,则该库允许即时渲染,因此您只需添加一个查询字符串即可获取 jpeg/png 版本:

/pdfs/letter.pdf?format=jpg&page=2

您也可以改用托管 API(在任何应用程序类型中 - 不是特定于 asp.net)

ImageBuilder.Current.Build("letter.pdf","dest.jpg",new ResizeSettings("format=jpg;page=2"));

PdfRenderer 插件是 GPL 许可的,就像 Ghostscript 一样。

于 2012-01-20T17:18:53.017 回答
2

ABCpdf 使用 C# 将 PDF 文档导出为 JPEG。见:http ://www.websupergoo.com/helppdfnet/source/4-examples/19-rendering.htm

于 2012-01-13T09:55:56.567 回答
1

(免责声明:我为 Atalasoft 工作并编写了很多 PDF 技术)如果您使用 Atalasoft dotImage 中的PdfDecoder,这很简单:

public void PdfToJpegThumb(Stream srcStream, int pageNo, int maxDimension, Stream dstStream)
{
    PdfDecoder decoder = new PdfDecoder();
    decoder.Resolution = 96; // reduce default resolution to speed up rendering
    // render page
    using (AtalaImage pdfimage = decoder.read(srcStream, pageNo, null)) {
        Thumbnail tn = new Thumbnail(maxDimension, maxDimension);
        // make a thumbnail image
        using (AtalaImage tnImage = tn.Create(pdfImage)) {
            // save it
            tnImage.Save(dstStream, new JpegEncoder(), null);
        }
    }
}
于 2012-01-10T15:43:54.047 回答
0

我从网络上的某个地方得到这个 - 不记得确切的位置,但它对我有用!
我只是把它变成了一个很好的功能。

它使用 GhostScript API (GSdll32.dll)

imageFormat 参数的示例是“jpeg”、“tiff32nc”等。

    #region GhostScript API functions
    [DllImport("gsdll32.dll", EntryPoint = "gsapi_new_instance")]
    private static extern int CreateAPIInstance(out IntPtr pinstance,
                                            IntPtr caller_handle);

    [DllImport("gsdll32.dll", EntryPoint = "gsapi_init_with_args")]
    private static extern int InitAPI(IntPtr instance, int argc, IntPtr argv);

    [DllImport("gsdll32.dll", EntryPoint = "gsapi_exit")]
    private static extern int ExitAPI(IntPtr instance);

    [DllImport("gsdll32.dll", EntryPoint = "gsapi_delete_instance")]
    private static extern void DeleteAPIInstance(IntPtr instance);
    #endregion

    public bool CreateImage(string inputPath, string outputPath, string imageFormat, int firstPage, int lastPage, int width, int height)
    {
        bool result = false;
        try
        {
            string[] args = GetArgs(inputPath, outputPath, imageFormat, firstPage, lastPage, width, height);
            var argStrHandles = new GCHandle[args.Length];
            var argPtrs = new IntPtr[args.Length];

            // Create a handle for each of the arguments after 
            // they've been converted to an ANSI null terminated
            // string. Then store the pointers for each of the handles
            for (int i = 0; i < args.Length; i++)
            {
                argStrHandles[i] = GCHandle.Alloc(StringToAnsi(args[i]), GCHandleType.Pinned);
                argPtrs[i] = argStrHandles[i].AddrOfPinnedObject();
            }

            // Get a new handle for the array of argument pointers
            var argPtrsHandle = GCHandle.Alloc(argPtrs, GCHandleType.Pinned);

            // Get a pointer to an instance of the GhostScript API 
            // and run the API with the current arguments
            IntPtr gsInstancePtr;
            CreateAPIInstance(out gsInstancePtr, IntPtr.Zero);
            InitAPI(gsInstancePtr, args.Length, argPtrsHandle.AddrOfPinnedObject());

            // Cleanup arguments in memory
            for (int i = 0; i < argStrHandles.Length; i++)
                argStrHandles[i].Free();

            argPtrsHandle.Free();

            // Clear API
            ExitAPI(gsInstancePtr);
            DeleteAPIInstance(gsInstancePtr);

            result = true;
        }
        catch(Exception e)
        {
            throw e;
        }
        return result;
    }
于 2012-01-19T14:02:22.777 回答