With HiQPdf Library you can extract the images from PDF documents using the HiQPdfPdfImagesExtract class. You can extract the images to memory HiQPdfExtractedPdfImage objects using the PdfImagesExtractExtractToImageObjects(String, Int32, Int32) method or to image files using the PdfImagesExtractExtractToImageFiles(String, Int32, Int32, String, String) method. There is also a special method PdfImagesExtractRaiseImageExtractedEvent(String, Int32, Int32) which can be used to extract the images one by one in memory to avoid high memory usage for large PDF documents. The HiQPdfExtractedPdfImage objects can be disposed when they are no longer necessary.
In this demo you can learn how to extract the images from a PDF document. You can choose the range of PDF pages from where to extract the images. Images will be extracted in memory in .NET Image objects.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Hosting;
using HiQPdf;
namespace HiQPdf_Demo.Controllers
{
public class ExtractImagesFromPdfController : Controller
{
IHostingEnvironment m_hostingEnvironment;
public ExtractImagesFromPdfController(IHostingEnvironment hostingEnvironment)
{
m_hostingEnvironment = hostingEnvironment;
}
// GET: ExtractImagesFromPdf
public ActionResult Index()
{
SetCrtPageUri();
return View();
}
[HttpPost]
public ActionResult ExtractImages(IFormCollection collection)
{
// get the PDF file
string pdfFile = m_hostingEnvironment.ContentRootPath + @"\wwwroot" + @"\DemoFiles\Pdf\InputPdf.pdf";
// create the PDF images extractor
PdfImagesExtract pdfImagesExtract = new PdfImagesExtract();
// set a demo serial number
pdfImagesExtract.SerialNumber = "YCgJMTAE-BiwJAhIB-EhlWTlBA-UEBRQFBA-U1FOUVJO-WVlZWQ==";
int fromPdfPageNumber = int.Parse(collection["textBoxFromPage"]);
int toPdfPageNumber = collection["textBoxToPage"][0].Length > 0 ? int.Parse(collection["textBoxToPage"]) : 0;
// extract the images from PDF document to memory in .NET Image objects
// the images can also be extracted to a folder using the ExtractToImageFiles method
// or they can be extracted one by one using the RaiseImageExtractedEvent method
ExtractedPdfImage[] extractedImages = pdfImagesExtract.ExtractToImageObjects(pdfFile, fromPdfPageNumber, toPdfPageNumber);
// return if no image was extracted
if (extractedImages.Length == 0)
return Redirect("/ExtractImagesFromPdf");
// get the largest image bytes in a buffer
byte[] imageBuffer = null;
try
{
// select the largest image
ExtractedPdfImage largestImage = null;
for (int i = 0; i < extractedImages.Length; i++)
{
if (largestImage == null || extractedImages[i].ImageObject.Size.Width * extractedImages[i].ImageObject.Size.Height >
largestImage.ImageObject.Size.Width * largestImage.ImageObject.Size.Height)
{
largestImage = extractedImages[i];
}
}
// get the .NET Image object
System.Drawing.Image imageObject = largestImage.ImageObject;
// get the image data in a buffer
imageBuffer = GetImageBuffer(imageObject);
}
finally
{
// dispose the extracted images
for (int i = 0; i < extractedImages.Length; i++)
extractedImages[i].Dispose();
}
FileResult fileResult = new FileContentResult(imageBuffer, "image/png");
fileResult.FileDownloadName = "ExtractedImage.png";
return fileResult;
}
private byte[] GetImageBuffer(System.Drawing.Image imageObject)
{
// create a memory stream where to save the image
System.IO.MemoryStream imageMemoryStream = new System.IO.MemoryStream();
// save the image to memory stream
imageObject.Save(imageMemoryStream, System.Drawing.Imaging.ImageFormat.Png);
// get a copy of the image buffer to allow image disposing
byte[] imageBuffer = new byte[imageMemoryStream.Length];
Array.Copy(imageMemoryStream.GetBuffer(), imageBuffer, imageBuffer.Length);
// close the memory stream
imageMemoryStream.Close();
return imageBuffer;
}
private void SetCrtPageUri()
{
HttpRequest httpRequest = this.ControllerContext.HttpContext.Request;
UriBuilder uriBuilder = new UriBuilder();
uriBuilder.Scheme = httpRequest.Scheme;
uriBuilder.Host = httpRequest.Host.Host;
if (httpRequest.Host.Port != null)
uriBuilder.Port = (int)httpRequest.Host.Port;
uriBuilder.Path = httpRequest.Path.ToString();
uriBuilder.Query = httpRequest.QueryString.ToString();
ViewData["CrtPageUri"] = uriBuilder.Uri.AbsoluteUri;
}
}
}