![]() |
VOOZH | about |
dotnet add package Aspose.Page --version 26.5.0
NuGet\Install-Package Aspose.Page -Version 26.5.0
<PackageReference Include="Aspose.Page" Version="26.5.0" />
<PackageVersion Include="Aspose.Page" Version="26.5.0" />Directory.Packages.props
<PackageReference Include="Aspose.Page" />Project file
paket add Aspose.Page --version 26.5.0
#r "nuget: Aspose.Page, 26.5.0"
#:package Aspose.Page@26.5.0
#addin nuget:?package=Aspose.Page&version=26.5.0Install as a Cake Addin
#tool nuget:?package=Aspose.Page&version=26.5.0Install as a Cake Tool
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
Aspose.Page for .NET is an on premise .NET API that allows you to add XPS manipulation features to your own applications. The API also supports converting XPS, EPS & PS documents to other formats.
Developers can perform various operations on XPS documents, such as, add text, images, pages, gradient, grid using the visual brush, transparency object and set opacity mask. It allows you to create, edit and convert the file pages as well as the ability to manipulate documents and elements, create vector graphics, group shapes, and specifying colors in different color spaces including sRGB, scRGB, and any space-based on ICC profile.
XPS, EPS, PS
Fixed Layout: PDF
Image: BMP, TIFF, JPEG, PNG
Metafiles: EMF, WMF
Animation: GIF
Image: BMP, TIFF, JPEG, PNG
Aspose.Page for .NET can be integrated with any kind of ASP.NET Web Application or a Windows Application.
Are you ready to give Aspose.Page for .NET a try? Simply execute Install-Package Aspose.Page from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Page for .NET and want to upgrade the version, please execute Update-Package Aspose.Page to get the latest version.
Execute the below code snippet to see how Aspose.Page API performs in your own environment or check the GitHub Repository for other common usage scenarios.
// create XPS document
XpsDocument xDocs = new XpsDocument();
// add glyph to the document
var glyphs = xDocs.AddGlyphs("Arial", 12, FontStyle.Regular, 300f, 450f, "Hello World!");
glyphs.Fill = xDocs.CreateSolidColorBrush(Color.Black);
// save result
xDocs.Save(dir + "output.xps");
Aspose.Page for .NET allows you to work with document conversion, such as; PS to images, PS to PDF, XPS to images, XPS to PDF and so on. The following snippet demonstrates the conversion of PS to PDF using streams:
// initialize PostScript input stream
var psStream = new System.IO.FileStream(dir + "template.ps", System.IO.FileMode.Open, System.IO.FileAccess.Read);
// initialize PDF output stream
var pdfStream = new System.IO.FileStream(dir + "output.pdf", System.IO.FileMode.Create, System.IO.FileAccess.Write);
// read PS file
var document = new PsDocument(psStream);
// create a device for output steram
var device = new PdfDevice(pdfStream);
try
{
document.Save(device, options);
}
finally
{
psStream.Close();
pdfStream.Close();
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | Free Support | Temporary License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net40 net40 is compatible. net403 net403 was computed. net45 net45 was computed. net451 net451 was computed. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on Aspose.Page:
| Package | Downloads |
|---|---|
|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications. |
Showing the top 1 popular GitHub repositories that depend on Aspose.Page:
| Repository | Stars |
|---|---|
|
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
|
| Version | Downloads | Last Updated |
|---|---|---|
| 26.5.0 | 198 | 5/26/2026 |
| 26.4.0 | 2,182 | 4/21/2026 |
| 26.2.0 | 3,845 | 2/20/2026 |
| 26.1.0 | 2,327 | 1/20/2026 |
| 25.12.0 | 5,243 | 12/18/2025 |
| 25.11.0 | 7,447 | 11/14/2025 |
| 25.10.0 | 5,991 | 10/15/2025 |
| 25.9.4 | 12,765 | 9/22/2025 |
| 25.9.3 | 2,589 | 9/15/2025 |
| 25.9.2 | 2,912 | 9/9/2025 |
| 25.9.1 | 2,139 | 9/8/2025 |
| 25.9.0 | 2,177 | 9/22/2025 |
| 25.8.0 | 4,023 | 8/25/2025 |
| 25.7.0 | 7,294 | 7/17/2025 |
| 25.6.2 | 4,638 | 6/23/2025 |
| 25.5.0 | 6,698 | 5/23/2025 |
| 25.4.0 | 10,685 | 4/22/2025 |
| 25.3.0 | 5,250 | 3/25/2025 |