ByteScout PDF Renderer SDK - C# - PDF to 1-bit BMP - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

ByteScout PDF Renderer SDK – C# – PDF to 1-bit BMP

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Renderer SDK – C# – PDF to 1-bit BMP

ByteScout PDF Renderer SDK – C# – PDF to 1-bit BMP

Program.cs

using System.Drawing;
using System.Drawing.Imaging;
using System.Diagnostics;
using Bytescout.PDFRenderer;

namespace PDF2BMP
{
class Program
{
static void Main(string[] args)
{
// Create an instance of Bytescout.PDFRenderer.RasterRenderer object and register it.
RasterRenderer renderer = new RasterRenderer();
renderer.RegistrationName = “demo”;
renderer.RegistrationKey = “demo”;

// Load PDF document.
renderer.LoadDocumentFromFile(“multipage.pdf”);

RenderingOptions renderingOptions = new RenderingOptions();
// Set pixel format to 1-bit
renderingOptions.ImageBitsPerPixel = ImageBitsPerPixel.BPP1;

for (int i = 0; i < renderer.GetPageCount(); i++) { // Save 1-bit image to file renderer.Save("image" + i + ".bmp", RasterImageFormat.BMP, i, 200, renderingOptions); } // Cleanup renderer.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("image0.bmp"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } } [/csharp]


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next