Aspose.Note 20.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Note --version 20.1.0
NuGet\Install-Package Aspose.Note -Version 20.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.Note" Version="20.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Note --version 20.1.0
#r "nuget: Aspose.Note, 20.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspose.Note as a Cake Addin
#addin nuget:?package=Aspose.Note&version=20.1.0

// Install Aspose.Note as a Cake Tool
#tool nuget:?package=Aspose.Note&version=20.1.0

.NET API for OneNote Document Processing

It is a standalone class library that allows to interact with Microsoft OneNote® documents for processing and conversion.

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 an OneNote file.
  • Parse and export various numbered list formats.
  • Extract text from any part of an OneNote document.
  • Export OneNote documents as other popular formats.

New Features in Version 20.1.0

  • Set quality while saving an image.

New Public Properties Added in Version 20.1.0

  • Aspose.Note.Saving.ImageSaveOptions.Quality - Gets or sets a value determining the quality of the saved image.

For the detailed notes, please visit Aspose.Note for .NET 20.1 Release Notes.

Read & Write OneNote Format

Microsoft OneNote: ONE

Save OneNote Files As

Fixed Layout: PDF Web: HTML Images: GIF, JPEG, PNG, BMP, TIFF

Read Formats

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 & Sliverlight 3.

Getting Started with Aspose.Note for .NET

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

Execute below code snippet to see how Aspose.Note API performs in your environment or check the GitHub Repository for other common usage scenarios.

// 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

Aspose.Note for .NET enables your .NET applications to list and manipulate images from an OneNote document as demonstrated with following snippet:

// 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 | Documentation | API Reference | Code Examples | Blog | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 is compatible.  net40 is compatible.  net40-client is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Aspose.Note:

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.2.0 5,196 2/28/2024
23.12.0 15,941 12/22/2023
23.11.0 12,396 11/23/2023
23.10.0 6,922 10/17/2023
23.9.0 12,362 9/27/2023
23.8.0 24,874 8/23/2023
23.7.0 10,956 7/25/2023
23.6.0 11,748 6/27/2023
23.5.0 7,169 5/22/2023
23.3.0 20,178 3/28/2023
23.2.0 5,568 3/2/2023
22.11.0 46,646 11/17/2022
22.9.0 116,298 9/21/2022
22.7.0 47,329 7/15/2022
22.5.0 17,920 6/10/2022
22.3.0 16,631 4/7/2022
22.1.0 27,419 1/23/2022
21.11.0 15,627 11/18/2021
21.9.0 13,957 9/22/2021
21.7.0 14,511 7/19/2021
21.5.0 13,560 5/14/2021
21.3.0 42,794 3/17/2021
21.1.0 11,043 1/15/2021
20.11.0 10,966 11/11/2020
20.9.0 2,212 9/14/2020
20.7.0 4,370 7/17/2020
20.5.0 26,896 5/7/2020
20.3.0 3,386 3/18/2020
20.1.0 6,666 1/21/2020
19.11.0 7,140 11/15/2019
19.9.0 10,072 9/13/2019
19.7.0 1,705 7/5/2019
19.5.0 53,111 5/15/2019
19.3.0 1,416 3/31/2019
19.1.0 1,215 1/23/2019
18.11.0 2,564 11/20/2018
18.9.0 1,206 9/18/2018
18.7.0 32,860 7/19/2018
18.5.0 1,336 5/22/2018
18.3.0 2,640 3/19/2018
18.1.0 12,562 1/17/2018
17.11.0 2,504 11/7/2017
17.8.0 2,377 8/30/2017
17.3.0 1,627 4/1/2017
16.12.0 2,104 12/28/2016
16.11.0 1,324 11/14/2016
2.5.0 1,343 8/19/2016
2.4.0 1,573 6/13/2016
2.3.0 1,278 5/6/2016
2.2.0 1,578 3/26/2016
2.1.0 1,915 12/15/2015
2.0.0 4,725 11/3/2015
1.9.0 1,620 8/31/2015
1.8.0 1,691 8/6/2015
1.7.0 1,396 7/3/2015
1.6.0 1,438 6/1/2015
1.5.0 1,492 5/6/2015
1.4.0 1,798 3/27/2015
1.3.1 2,220 6/24/2014
1.3.0 1,900 6/17/2014
1.2.1 1,650 5/7/2014
1.2.0 1,557 4/28/2014
1.1.0 1,793 4/1/2014
1.0.0 1,965 3/3/2014