GroupDocs.Metadata
21.1.0
GroupDocs.Metadata for .NET is a full featured class library which allows users to read and edit metadata associated with various document, image, audio, video and many other formats. It works with most notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks, ID3 and format-specific metadata properties.
See the version list below for details.
Install-Package GroupDocs.Metadata -Version 21.1.0
dotnet add package GroupDocs.Metadata --version 21.1.0
<PackageReference Include="GroupDocs.Metadata" Version="21.1.0" />
paket add GroupDocs.Metadata --version 21.1.0
#r "nuget: GroupDocs.Metadata, 21.1.0"
.NET API for Metadata Processing
This .NET API can be consumed to integrate metadata viewer, editor, reader, writer, and remover operations within your .NET apps.
Document Metadata Processing Features
- Read, update, and remove metadata in a variety of formats.
- Search, update, and remove particular metadata properties as per specified predicate.
- Use tags to easily manipulate the most common metadata properties in a unified manner.
- Work with password-protected documents.
- Extract information about hidden document pages, digital signatures, user comments, revisions, etc.
- Supports many popular metadata standards, such as IPTC, XMP, EXIF, Image Resources.
- Manipulate native metadata properties in various formats.
- Extract technical information from images, audio, and video files.
- Calculate common document statistics (word count, character count, etc.).
- Detect the format and MIME type of a file by its internal structure.
- Work with various audio tags (ID3, Lyrics, APE).
- Load file from a local disk or a stream.
- Load a file of a specific format or load a password-protected file.
- Traverse a whole metadata tree.
- Work with the APEv2, ID3v1, ID3v2, Lyrics & other tags of MP3 metadata.
New Features & Enhancements 
- Implemented the ability to extract content statistics from the
OneNote
documents. - Implemented the ability to extract
INFO
chunk metadata from all formats derived from theRIFF
container (AVI
,WAV
).
Please visit GroupDocs.Metadata for .NET 21.1 Release Notes for the detailed notes.
Read & Write Metadata Formats
Microsoft Word: DOC, DOT, DOCX, DOCM, DOTX
Microsoft Excel: XLSX, XLSM, XLTM, XLS
Microsoft PowerPoint: PPTX, PPTM, PPSX, PPSM, POTX, POTM, PPT, PPS
Microsoft Visio: VSD, VDX, VSDX, VSS, VSX
Microsoft OneNote: ONE
Microsoft Project: MPP
OpenOffice: ODS, ODT, OTF, OTC
Audio: MP3, WAV
Video: AVI, MOV / QT, ASF, FLV
Email: EML, MSG, VCF, VCR
Image: BMP, GIF, JPG, JPEG, JPE, JP2, PNG, TIFF, DICOM, WEBP
Archive: ZIP
Font: TTF, TTC
Metafile: EMF, WMF
Adobe Photoshop: PSD
AutoCAD: DWG, DXF
Portable: PDF
eBook: EPUB, DJVU, DJV
Other: TORRENT
Platform Independence
GroupDocs.Metadata for .NET does not require any external software or third party tool to be installed. GroupDocs.Metadata for .NET support any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Metadata for .NET
Are you ready to give GroupDocs.Metadata for .NET a try? Simply execute Install-Package GroupDocs.Metadata
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Metadata assembly in your project. If you already have GroupDocs.Metadata for .Net and want to upgrade it, please execute Update-Package GroupDocs.Metadata
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Use C# to Remove All Metadata Properties from a File
using (Metadata metadata = new Metadata(Constants.InputPdf))
{
// Remove detected metadata packages
var affected = metadata.Sanitize();
Console.WriteLine("Properties removed: {0}", affected);
metadata.Save(Constants.OutputPdf);
}
Extract Metadata from Files via C# Code
foreach (string file in Directory.GetFiles(Constants.InputPath))
{
using (Metadata metadata = new Metadata(file))
{
if (metadata.FileFormat != FileFormat.Unknown && !metadata.GetDocumentInfo().IsEncrypted)
{
Console.WriteLine();
Console.WriteLine(file);
// fetch all metadata properties that fall into a particular category
var properties = metadata.FindProperties(p => p.Tags.Any(t => t.Category == Tags.Content));
Console.WriteLine("The metadata properties describing some characteristics of the file content: title, keywords, language, etc.");
foreach (var property in properties)
{
Console.WriteLine("{0} = {1}", property.Name, property.Value);
}
// fetch all properties having a specific type and value
var year = DateTime.Today.Year;
properties = metadata.FindProperties(p => p.Value.Type == MetadataPropertyType.DateTime &&
p.Value.ToStruct(DateTime.MinValue).Year == year);
Console.WriteLine("All datetime properties with the year value equal to the current year");
foreach (var property in properties)
{
Console.WriteLine("{0} = {1}", property.Name, property.Value);
}
}
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
.NET API for Metadata Processing
This .NET API can be consumed to integrate metadata viewer, editor, reader, writer, and remover operations within your .NET apps.
Document Metadata Processing Features
- Read, update, and remove metadata in a variety of formats.
- Search, update, and remove particular metadata properties as per specified predicate.
- Use tags to easily manipulate the most common metadata properties in a unified manner.
- Work with password-protected documents.
- Extract information about hidden document pages, digital signatures, user comments, revisions, etc.
- Supports many popular metadata standards, such as IPTC, XMP, EXIF, Image Resources.
- Manipulate native metadata properties in various formats.
- Extract technical information from images, audio, and video files.
- Calculate common document statistics (word count, character count, etc.).
- Detect the format and MIME type of a file by its internal structure.
- Work with various audio tags (ID3, Lyrics, APE).
- Load file from a local disk or a stream.
- Load a file of a specific format or load a password-protected file.
- Traverse a whole metadata tree.
- Work with the APEv2, ID3v1, ID3v2, Lyrics & other tags of MP3 metadata.
New Features & Enhancements 
- Implemented the ability to extract content statistics from the
OneNote
documents. - Implemented the ability to extract
INFO
chunk metadata from all formats derived from theRIFF
container (AVI
,WAV
).
Please visit GroupDocs.Metadata for .NET 21.1 Release Notes for the detailed notes.
Read & Write Metadata Formats
Microsoft Word: DOC, DOT, DOCX, DOCM, DOTX
Microsoft Excel: XLSX, XLSM, XLTM, XLS
Microsoft PowerPoint: PPTX, PPTM, PPSX, PPSM, POTX, POTM, PPT, PPS
Microsoft Visio: VSD, VDX, VSDX, VSS, VSX
Microsoft OneNote: ONE
Microsoft Project: MPP
OpenOffice: ODS, ODT, OTF, OTC
Audio: MP3, WAV
Video: AVI, MOV / QT, ASF, FLV
Email: EML, MSG, VCF, VCR
Image: BMP, GIF, JPG, JPEG, JPE, JP2, PNG, TIFF, DICOM, WEBP
Archive: ZIP
Font: TTF, TTC
Metafile: EMF, WMF
Adobe Photoshop: PSD
AutoCAD: DWG, DXF
Portable: PDF
eBook: EPUB, DJVU, DJV
Other: TORRENT
Platform Independence
GroupDocs.Metadata for .NET does not require any external software or third party tool to be installed. GroupDocs.Metadata for .NET support any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:
Microsoft Windows: Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OS: Mac OS X
Linux: Linux (Ubuntu, OpenSUSE, CentOS and others)
Development Environments: Microsoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported Frameworks: GroupDocs.Conversion for .NET supports .NET and Mono frameworks.
Getting Started with GroupDocs.Metadata for .NET
Are you ready to give GroupDocs.Metadata for .NET a try? Simply execute Install-Package GroupDocs.Metadata
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Metadata assembly in your project. If you already have GroupDocs.Metadata for .Net and want to upgrade it, please execute Update-Package GroupDocs.Metadata
to get the latest version.
Please check the GitHub Repository for other common usage scenarios.
Use C# to Remove All Metadata Properties from a File
using (Metadata metadata = new Metadata(Constants.InputPdf))
{
// Remove detected metadata packages
var affected = metadata.Sanitize();
Console.WriteLine("Properties removed: {0}", affected);
metadata.Save(Constants.OutputPdf);
}
Extract Metadata from Files via C# Code
foreach (string file in Directory.GetFiles(Constants.InputPath))
{
using (Metadata metadata = new Metadata(file))
{
if (metadata.FileFormat != FileFormat.Unknown && !metadata.GetDocumentInfo().IsEncrypted)
{
Console.WriteLine();
Console.WriteLine(file);
// fetch all metadata properties that fall into a particular category
var properties = metadata.FindProperties(p => p.Tags.Any(t => t.Category == Tags.Content));
Console.WriteLine("The metadata properties describing some characteristics of the file content: title, keywords, language, etc.");
foreach (var property in properties)
{
Console.WriteLine("{0} = {1}", property.Name, property.Value);
}
// fetch all properties having a specific type and value
var year = DateTime.Today.Year;
properties = metadata.FindProperties(p => p.Value.Type == MetadataPropertyType.DateTime &&
p.Value.ToStruct(DateTime.MinValue).Year == year);
Console.WriteLine("All datetime properties with the year value equal to the current year");
foreach (var property in properties)
{
Console.WriteLine("{0} = {1}", property.Name, property.Value);
}
}
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.groupdocs.com/metadata/net/groupdocs-metadata-for-net-21-1-release-notes/
Dependencies
-
.NETFramework 2.0
- No dependencies.
-
.NETStandard 2.0
- SkiaSharp (>= 2.80.1)
- System.CodeDom (>= 4.4.0)
- System.Drawing.Common (>= 4.5.1)
- System.Reflection.Emit (>= 4.3.0)
- System.Reflection.Emit.ILGeneration (>= 4.3.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
Used By
NuGet packages (2)
Showing the top 2 NuGet packages that depend on GroupDocs.Metadata:
Package | Downloads |
---|---|
GroupDocs.Total
GroupDocs.Total for .NET is a compilation of every .NET API offered by GroupDocs. We compile it on a daily basis to ensure that it contains the most up to date versions of each of our .NET document manipulation APIs.
With GroupDocs.Total for .NET developers can use all our APIs with a single license. However, you can order any individual API as well. The APIs we offer include:
GroupDocs.Viewer
GroupDocs.Annotation
GroupDocs.Conversion
GroupDocs.Comparison
GroupDocs.Signature
GroupDocs.Assembly
GroupDocs.Metadata
GroupDocs.Search
GroupDocs.Parser
GroupDocs.Watermark
GroupDocs.Editor
GroupDocs.Merger
GroupDocs.Redaction
GroupDocs.Classification
GroupDocs.Total for .NET Documentation
https://docs.groupdocs.com/display/gdtotalproductfamily/GroupDocs.Total+for+.NET
Free support for GroupDocs.Total for .NET is provided on our support forum:
https://forum.groupdocs.com/
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
21.2.0 | 131 | 2/4/2021 |
21.1.0 | 145 | 1/20/2021 |
20.11.0 | 444 | 11/2/2020 |
20.10.0 | 211 | 9/30/2020 |
20.9.0 | 377 | 9/4/2020 |
20.8.0 | 339 | 8/11/2020 |
20.7.0 | 692 | 7/3/2020 |
20.6.0 | 332 | 6/3/2020 |
20.5.0 | 322 | 5/6/2020 |
20.4.0 | 234 | 4/2/2020 |
20.3.0 | 279 | 3/13/2020 |
20.1.0 | 883 | 1/23/2020 |
19.11.0 | 423 | 11/29/2019 |
19.5.1 | 1,234 | 6/14/2019 |
19.5.0 | 300 | 5/29/2019 |
19.4.0 | 384 | 4/4/2019 |
19.3.0 | 277 | 3/7/2019 |
19.2.0 | 342 | 2/7/2019 |
19.1.0 | 401 | 1/10/2019 |
18.12.0 | 418 | 12/5/2018 |
18.11.0 | 446 | 11/1/2018 |
18.10.0 | 496 | 10/5/2018 |
18.9.0 | 463 | 9/4/2018 |
18.8.0 | 519 | 8/3/2018 |
18.7.0 | 470 | 7/2/2018 |
18.6.0 | 480 | 6/4/2018 |
18.5.0 | 565 | 5/10/2018 |
18.4.0 | 570 | 4/12/2018 |
18.2.0 | 625 | 2/7/2018 |
18.1.0 | 584 | 1/12/2018 |
17.12.0 | 608 | 12/12/2017 |
17.11.0 | 589 | 11/6/2017 |
17.10.2 | 677 | 10/24/2017 |
17.10.1 | 544 | 10/10/2017 |
17.10.0 | 569 | 10/3/2017 |