使用.Net c# 从 PDF 中提取图像

发布于 2024-08-07 16:49:16 字数 1436 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森罗 2024-08-14 16:49:16

Docotic.Pdf 库 可用于从 PDF 中提取图像。

以下示例展示了如何从 PDF 中提取所有图像:

static void ExtractAllImages()
{
    string path = "";
    using (PdfDocument pdf = new PdfDocument(path))
    {
        for (int i = 0; i < pdf.Images.Count; i++)
        {
            string imageName = string.Format("image{0}", i);
            string imagePath = pdf.Images[i].Save(imageName);
        }
    }
}

该库不会对图像重新采样。它将以与 PDF 中完全相同的方式保存它们。

免责声明:我为 Bit Miracle 工作,该库的供应商。

Docotic.Pdf library can be used to extract images from PDFs.

Here is a sample that shows how to extract all images from a PDF:

static void ExtractAllImages()
{
    string path = "";
    using (PdfDocument pdf = new PdfDocument(path))
    {
        for (int i = 0; i < pdf.Images.Count; i++)
        {
            string imageName = string.Format("image{0}", i);
            string imagePath = pdf.Images[i].Save(imageName);
        }
    }
}

The library won't resample images. It will save them exactly the same as in PDF.

Disclaimer: I work for Bit Miracle, vendor of the library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文