EvoPdf.Next.MacOS
14.22.0
Prefix Reserved
dotnet add package EvoPdf.Next.MacOS --version 14.22.0
NuGet\Install-Package EvoPdf.Next.MacOS -Version 14.22.0
<PackageReference Include="EvoPdf.Next.MacOS" Version="14.22.0" />
<PackageVersion Include="EvoPdf.Next.MacOS" Version="14.22.0" />
<PackageReference Include="EvoPdf.Next.MacOS" />
paket add EvoPdf.Next.MacOS --version 14.22.0
#r "nuget: EvoPdf.Next.MacOS, 14.22.0"
#:package EvoPdf.Next.MacOS@14.22.0
#addin nuget:?package=EvoPdf.Next.MacOS&version=14.22.0
#tool nuget:?package=EvoPdf.Next.MacOS&version=14.22.0
EvoPdf Next PDF Library for .NET (macOS ARM64)
EvoPdf Next for .NET | EvoPdf Next HTML to PDF for .NET | EVO PDF Software | Free Trial | Licensing | Support
Overview
EvoPdf Next for .NET can be integrated into your applications to create, edit and merge PDF documents, convert HTML to PDF or images, convert Word, Excel, RTF and Markdown to PDF, extract text and images from PDFs, search text in PDFs and convert PDF pages to images.
The library targets .NET Standard 2.0 and can be used in .NET Core and .NET Framework applications deployed on Windows, Linux and macOS platforms, including Azure App Service, Azure Functions and Docker.
Package structure
EvoPdf Next for .NET has a modular architecture, with separate NuGet packages for each major component to prevent unnecessary files from being included in your applications.
This metapackage references all EvoPdf Next for .NET packages required to run on macOS ARM64 platforms.
Separate packages are available for Windows and Linux platforms.
There is also a multiplatform metapackage EvoPdf.Next that references Windows, Linux and macOS packages, which is ideal when developing on one operating system and deploying to multiple runtime environments.
Compatibility
The compatibility list of this package includes the following platforms:
- macOS 12.0+ (Apple Silicon / ARM64)
- .NET 10.0, 9.0, 8.0, 7.0, 6.0 and .NET Standard 2.0
- Web, Console and Desktop applications
Main Features
- Create, edit and merge PDF documents
- Create PDF/UA and PDF/A compliant documents
- Apply HTML stamps, headers and footers to PDFs
- Generate password-protected and digitally signed PDFs
- Convert HTML with CSS, web fonts and JavaScript to PDF
- Generate PDF/UA and PDF/A compliant documents from HTML
- Convert HTML to JPEG, PNG and WebP images
- Convert SVG to PDF
- Convert Word DOCX to PDF
- Convert Excel XLSX to PDF
- Convert RTF to PDF
- Convert Markdown to PDF
- Convert PDF to text
- Search text in PDF documents
- Convert PDF pages to images
- Extract images from PDF pages
Installation
On macOS platforms, the EvoPdf Next runtime does not require the installation of additional dependencies.
Install the package using your preferred NuGet package manager.
Related packages
Full library metapackages
EvoPdf.Next (Multi-platform)
https://www.nuget.org/packages/EvoPdf.NextEvoPdf.Next.Windows (Windows x64)
https://www.nuget.org/packages/EvoPdf.Next.WindowsEvoPdf.Next.Windows.Arm64 (Windows ARM64)
https://www.nuget.org/packages/EvoPdf.Next.Windows.Arm64EvoPdf.Next.Linux (Linux x64)
https://www.nuget.org/packages/EvoPdf.Next.LinuxEvoPdf.Next.Linux.Arm64 (Linux ARM64)
https://www.nuget.org/packages/EvoPdf.Next.Linux.Arm64EvoPdf.Next.MacOS (macOS ARM64)
https://www.nuget.org/packages/EvoPdf.Next.MacOS
Other EvoPdf.Next component packages
Core PDF API (create, edit, merge and secure PDF documents)
https://www.nuget.org/packages/EvoPdf.Next.CoreHTML to PDF
https://www.nuget.org/packages/EvoPdf.Next.HtmlToPdfWord to PDF
https://www.nuget.org/packages/EvoPdf.Next.WordToPdfExcel to PDF
https://www.nuget.org/packages/EvoPdf.Next.ExcelToPdfRTF to PDF
https://www.nuget.org/packages/EvoPdf.Next.RtfToPdfMarkdown to PDF
https://www.nuget.org/packages/EvoPdf.Next.MarkdownToPdfPDF Processor (PDF to text, PDF to images, extract images)
https://www.nuget.org/packages/EvoPdf.Next.PdfProcessor
EvoPdf.Next namespace
All components of the EvoPdf Next for .NET library share the same namespace EvoPdf.Next and can be used together in the same application.
To use the library in your own code, add the following using directive at the top of your C# source file:
using EvoPdf.Next;
Getting Started
For documentation and code samples, please visit: https://www.evopdf.com/evopdf-next-dotnet
You can copy the C# code lines from the section below to create a PDF document from a web page or from an HTML string and save the resulting PDF to a memory buffer for further processing, to a PDF file or send it to the browser for download in ASP.NET applications.
C# Code Samples
To convert a HTML string or an URL to a PDF file you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert the HTML string to a PDF file
converter.ConvertHtmlToFile("<b>Hello World</b> from EVO PDF !", null, "HtmlToFile.pdf");
// convert HTML page from URL to a PDF file
string htmlPageURL = "https://www.evopdf.com";
converter.ConvertUrlToFile(htmlPageURL, "UrlToFile.pdf");
To convert a HTML string or an URL to a PDF document in a memory buffer and then save it to a file you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert a HTML string to a memory buffer
byte[] htmlToPdfBuffer = converter.ConvertHtml("<b>Hello World</b> from EVO PDF !", null);
// write the memory buffer to a PDF file
System.IO.File.WriteAllBytes("HtmlToMemory.pdf", htmlToPdfBuffer);
// convert an URL to a memory buffer
string htmlPageURL = "https://www.evopdf.com";
byte[] urlToPdfBuffer = converter.ConvertUrl(htmlPageURL);
// write the memory buffer to a PDF file
System.IO.File.WriteAllBytes("UrlToMemory.pdf", urlToPdfBuffer);
To convert in your ASP.NET Core applications a HTML string or an URL to a PDF document in a memory buffer and then send it for download to browser you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert a HTML string to a memory buffer
byte[] htmlToPdfBuffer = converter.ConvertHtml("<b>Hello World</b> from EVO PDF !", null);
FileResult fileResult = new FileContentResult(htmlToPdfBuffer, "application/pdf");
fileResult.FileDownloadName = "HtmlToPdf.pdf";
return fileResult;
Free Trial
You can download the EvoPdf Next for .NET evaluation package from EVO PDF Downloads page of the website.
The evaluation package contains a demo ASP.NET application with full C# code for all features of the library.
You can evaluate the library for free as long as it is needed to ensure that the solution fits your application needs.
Licensing
The EVO PDF Software licenses are perpetual which means they never expire for a version of the product and include free maintenance for the first year. You can find more details about licensing on the website.
Support
For technical and sales questions or for general inquiries about our software and company you can contact us using the email addresses from the contact page of the website.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- EvoPdf.Next.ExcelToPdf.MacOS (>= 14.22.0)
- EvoPdf.Next.HtmlToPdf.MacOS (>= 14.22.0)
- EvoPdf.Next.MarkdownToPdf.MacOS (>= 14.22.0)
- EvoPdf.Next.PdfProcessor.MacOS (>= 14.22.0)
- EvoPdf.Next.RtfToPdf.MacOS (>= 14.22.0)
- EvoPdf.Next.WordToPdf.MacOS (>= 14.22.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 14.22.0 | 48 | 7/4/2026 |
