You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnDoc/packages/Syncfusion.Pdf.Imaging.NET....
Stefan Hutter 77d5c661f7
Update 20240807 - nach NUGET-Update Syncfusion
1 year ago
..
lib Update 20240807 - nach NUGET-Update Syncfusion 1 year ago
.signature.p7s Update 20240807 - nach NUGET-Update Syncfusion 1 year ago
LICENSE.txt Update 20240807 - nach NUGET-Update Syncfusion 1 year ago
README.md Update 20240807 - nach NUGET-Update Syncfusion 1 year ago
Syncfusion.Pdf.Imaging.NET.26.2.8.nupkg Update 20240807 - nach NUGET-Update Syncfusion 1 year ago
syncfusion_logo.png Update 20240807 - nach NUGET-Update Syncfusion 1 year ago

README.md

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Syncfusion .NET PDF Imaging library

Syncfusion .NET PDF Imaging is a .NET standard PDF library used to draw the image files to PDF in any .NET applications.

.NET PDF Imaging

Features overview | Documentation | API Reference | Blogs | Support | Forums | Feedback.

Key Features

  • Supports drawing JPEG, PNG images to PDF document.
  • Support to compress existing PDF files.
  • Support to extract images from existing PDF files.
  • Support to convert PDF to PDF/A-1B conformance.
  • Support for PDF/X1-A,PDF/A1-B,PDF/A3-B and PDF/A1-B conformances.
  • Support to run the PDF applications in multi-thread and its thread safe.

System Requirements

Getting Started

You can fetch the Syncfusion .NET PDF imaging library NuGet by simply running Install-Package Syncfusion.Pdf.Imaging.NET from the Package Manager Console in Visual Studio.

Try the following code example to draw image to PDF document

//Create a new PDF document
PdfDocument doc = new PdfDocument();
//Add a page to the document
PdfPage page = doc.Pages.Add();
//Create PDF graphics for the page
PdfGraphics graphics = page.Graphics;
//Load the image from the disk
FileStream imageStream = new FileStream("Autumn Leaves.jpg", FileMode.Open, FileAccess.Read);
PdfBitmap image = new PdfBitmap(imageStream);
//Draw the image
graphics.DrawImage(image, 0, 0);
//Creating the stream object
MemoryStream stream = new MemoryStream();
//Save the document as stream
doc.Save(stream);
//Close the document
doc.Close(true);

License

This is a commercial product and requires a paid license for possession or use. Syncfusions licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI(Preview), Flutter and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.

sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET