Aspose.Note.net20
22.3.0
dotnet add package Aspose.Note.net20 --version 22.3.0
NuGet\Install-Package Aspose.Note.net20 -Version 22.3.0
<PackageReference Include="Aspose.Note.net20" Version="22.3.0" />
paket add Aspose.Note.net20 --version 22.3.0
#r "nuget: Aspose.Note.net20, 22.3.0"
// Install Aspose.Note.net20 as a Cake Addin
#addin nuget:?package=Aspose.Note.net20&version=22.3.0
// Install Aspose.Note.net20 as a Cake Tool
#tool nuget:?package=Aspose.Note.net20&version=22.3.0
.NET API for OneNote Document Processing
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
It is a standalone class library that allows interacting with Microsoft OneNote® documents for processing and conversion.
Please note that this package supports the .NET 2.0 platform only. For the Aspose.Note for .NET package, please check Aspose.Note.
Aspose.Note for .NET can be used for printing ONE documents as well as manipulation of pages, images, text, tables, attachments, tags, tasks, text styles, and hyperlinks, without needing Microsoft OneNote.
Microsoft OneNote File Processing Features
- Load, edit, and save Microsoft OneNote documents via API.
- Navigate through the OneNote Document Object Model (DOM).
- Insert an image into a OneNote file.
- Parse and export various numbered list formats.
- Extract text from any part of a OneNote document.
- Export OneNote documents as other popular formats.
Read & Write OneNote Format
Microsoft OneNote: ONE
Save OneNote Files As
Fixed Layout: PDF
Images: PNG, GIF, JPEG, BMP, TIFF
Read Formats
Microsoft OneNote: ONETOC2
Platform Independence
Aspose.Note for .NET can be used to build both the 32-bit and the 64-bit .NET applications, including ASP.NET, Web Services & WinForms. Its deployment is very easy and consists of a single assembly with no dependencies (except for the .NET framework). Aspose.Note.dll is CLS compliant, written entirely in C#, and contains only safe managed code for .NET Framework, .NET Core & Silverlight 3.
Get Started
Are you ready to give Aspose.Note for .NET a try? Simply execute Install-Package Aspose.Note
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Note for .NET and want to upgrade the version, please execute Update-Package Aspose.Note
to get the latest version.
Convert Microsoft OneNote to PDF Format via C# Code
// load the document into Aspose.Note.
Document oneFile = new Document(dir + "template.one");
// save the document as PDF
oneFile.Save(dir + "output.pdf", SaveFormat.Pdf);
Extract Images from Microsoft OneNote Document
// load the document into Aspose.Note.
Document oneFile = new Document(dir + "template.one");
// get all image nodes
IList<Aspose.Note.Image> nodes = oneFile.GetChildNodes<Aspose.Note.Image>();
foreach (Aspose.Note.Image image in nodes)
{
using (MemoryStream stream = new MemoryStream(image.Bytes))
{
using (Bitmap bitMap = new Bitmap(stream))
{
// save image bytes to a file
bitMap.Save(dir + image.FileName);
}
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Product | Versions |
---|---|
.NET Framework | net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
-
.NETFramework 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
The Aspose.Note for .NET 22.3 is the last version of this package.
This package is no longer supported, and will not receive any updates. Please upgrade to Aspose.Note
https://docs.aspose.com/note/net/aspose-note-for-net-22-3-release-notes/