Aspose.Note.net20 21.7.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.Note.net20 --version 21.7.0
NuGet\Install-Package Aspose.Note.net20 -Version 21.7.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.net20" Version="21.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.Note.net20 --version 21.7.0
#r "nuget: Aspose.Note.net20, 21.7.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.net20 as a Cake Addin
#addin nuget:?package=Aspose.Note.net20&version=21.7.0

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

.NET API for OneNote Document Processing

Version 21.7 Nuget

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 Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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.

Version Downloads Last updated
22.3.0 623 4/7/2022
22.1.0 554 1/23/2022
21.9.0 457 9/22/2021
21.7.0 363 7/19/2021
21.5.0 400 5/14/2021
21.3.0 414 3/17/2021
21.1.0 567 1/15/2021
20.11.0 468 11/11/2020
20.9.0 542 9/14/2020
20.7.0 560 7/17/2020
20.5.0 573 5/7/2020
20.3.0 653 3/18/2020