Discover how to add image watermark to JPG using Python and protect visual assets by placing a centered logo watermark on images with consistent alignment....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
This article provides a detailed guide on text extraction from ODT in C#. It includes a code example to assist you in performing how to extract text from ODT using C#....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Convert PDF to XLSX using Node.js effortlessly. Learn how to export PDF to XLSX in Node.js with a step-by-step guide for accurate and efficient spreadsheet conversion....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Discover how to convert PDF to SVG using Node.js. Learn how to export PDF to SVG in Node.js with the Conversion library for efficient and scalable file conversions....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Learn how to convert PDF to HTML using Node.js. This guide covers fast and accurate HTML extraction, helping you seamlessly export PDF to HTML in Node.js with ease....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Learn how to read metadata from XLSX using C# without extra software installation. You will be provided sample code example of how to read metadata of XLSX using C#....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Learn how to add text watermark to RTF using Python. This tutorial shows how to embed text watermarks into RTF documents with custom font, color, and alignment....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
Learn how to perform wildcard search using C#. Explore wildcard search in C# with single character and group wildcards for efficient and flexible search queries....Comparison Product Family GroupDocs.Signature Product Family GroupDocs...
This article gives the knowledge of the API methods which can be used to perform operations about word forms provider interface using Java....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property.
The following code snippet reads metadata associated with a CAD file.
AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDxf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Comparison Product Solution GroupDocs.Signature Product Solution GroupDocs...