您的位置:首页 > 财经 > 金融 > spire.Pdf 将pdf转成image

spire.Pdf 将pdf转成image

2024/12/22 14:51:12 来源:https://blog.csdn.net/xiaoxionglove/article/details/139877933  浏览:    关键词:spire.Pdf 将pdf转成image

一、nuget安装

  <ItemGroup><PackageReference Include="Spire.PDF" Version="10.6.7" /></ItemGroup>

二、直接上代码

using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.IO;namespace pdfdemo.Controllers
{public class HomeController : Controller{private readonly ILogger<HomeController> _logger;public HomeController(ILogger<HomeController> logger){_logger = logger;}public IActionResult Index(){var path = $"{AppDomain.CurrentDomain.BaseDirectory}/133634930918199804.pdf";var imgPath = $"{AppDomain.CurrentDomain.BaseDirectory}/1336349309181998041.png";using (Spire.Pdf.PdfDocument document = new Spire.Pdf.PdfDocument()){using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read)){document.LoadFromStream(stream);using (var memoryStream = new System.IO.MemoryStream()){document.SaveToImageStream(0, memoryStream, "image/png");System.IO.File.WriteAllBytes(imgPath, memoryStream.ToArray());}}}return View();}}
}

运行效果:

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com