airmanxtw / CMPDF

reduce PDF image size to reduce the PDF file size

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

reduce PDF image size to reduce the PDF file size

usage

var pdf=new CMPDF.PDF();
byte[] pdfBytes = File.ReadAllBytes("D:/Temp/Test.pdf");
byte[] scaledPdfBytes = pdf.compression(pdfBytes);
Console.WriteLine(scaledPdfBytes.Length);
File.WriteAllBytes("D:/Temp/Test_Resize.pdf",scaledPdfBytes);

About

reduce PDF image size to reduce the PDF file size


Languages

Language:C# 100.0%