Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information.
Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties
using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Editor Product Solution GroupDocs...
This article shows you how to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online....Editor Product Solution GroupDocs...
For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature.
Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties
using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Editor Product Solution GroupDocs...
Learn how to remove image watermark from RTF using Python. This tutorial shows how to detect and delete image watermarks in RTF documents programmatically....compatibility across various text editors, office tools, and platforms...
Esta seção ensinará como converter MSG para DOCX usando Java sem a necessidade de software de terceiros. Além disso, forneceremos o código para exportar MSG para DOCX em Java....o Microsoft Word e outros editores de texto. Pode haver casos...
Aprenda como mesclar arquivos PDF usando programação Java. Aprimore o gerenciamento de documentos com exemplo de código para combinar arquivos PDF em Java, sem a necessidade de software adicional....ferramentas necessárias, um editor de código como IntelliJ IDEA...
En esta guía, proporcionaremos pasos sencillos para convertir DOCX a TXT usando Java. Además, le proporcionaremos un ejemplo de código que representa cómo exportar DOCX a TXT en Java....motivos, como colaborar con editores de texto básicos, extraer...
En este tutorial, proporcionaremos pasos sencillos para convertir DOCX a TXT usando C#. Además, proporcionaremos un ejemplo de código que representa cómo exportar DOCX a TXT en C#....razones, como trabajar con editores de texto más simples, extraer...
Note In this article, we will use GroupDocs.Assembly to generate a Single Row Image report in Spreadsheet Document format. Note The code uses some of the objects defined in The Business Layer. Single Row in Microsoft Excel Document Creating a Single Row Please follow below steps to create Single Row Image in MS Excel 2013:
Create a new Workbook. Insert a desired shape to display image in it. Go to Insert Tab and select shape by clicking on Shape Icon....Editor Product Solution GroupDocs...