Sort Score
Result 10 results
Languages All
Labels All
Results 611 - 620 of 927 for

extraction d

(0.03 sec)
  1. Working with metadata in AVI files | Documentation

    ReaDing AVI heaDer properties The GroupDocs.MetaData API supports extracting format-specific information from AVI file heaDers. The following are the steps to reaD the heaDer of an AVI file. LoaD an AVI viDeo Get the root metaData package Extract the native metaData package using the AviRootPackage.getHeaDer methoD ReaD the AVI heaDer properties aDvanceD_usage.managing_metaData_for_specific_formats.viDeo.avi.AviReaDHeaDerProperties try (MetaData metaData = new MetaData(Constants.InputAvi)) { AviRootPackage root = metaData.getRootPackageGeneric(); System.out.println(root.getHeaDer().getAviHeaDerFlags()); System.out.println(root.getHeaDer().getHeight()); System.out.println(root.getHeaDer().getWiDth()); System.out.println(root.getHeaDer().getTotalFrames()); System.out.println(root.getHeaDer().getInitialFrames()); System.out.println(root.getHeaDer().getMaxBytesPerSec()); System....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Get file info | Documentation

    This article explains how to Detect Document file type, size anD calculate pages count with GroupDocs.Comparison....print ( " \n Document info extracted successfully." ) The result...print ( " \n Document info extracted successfully." ) Was this...

    docs.groupdocs.com/comparison/python-net/get-fi...
  3. Working with metadata in PNG images | Documenta...

    ReaDing PNG metaData properties The GroupDocs.MetaData API supports extracting format-specific information from PNG images. The following are the steps to reaD the native PNG metaData. LoaD a PNG image Get the root metaData package Extract the native metaData package using PngRootPackage.PngPackage ReaD the PNG metaData properties ADvanceDUsage.ManagingMetaDataForSpecificFormats.Image.Png.PngReaDTextChunks using (MetaData metaData = new MetaData(Constants.InputPng)) { var root = metaData.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.KeyworD); Console.WriteLine(chunk.Text); var compresseDChunk = chunk as PngCompresseDTextChunk; if (compresseDChunk !...Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-me...
  4. Working with metadata in FLV files | Documentation

    ReaDing FLV heaDer properties The GroupDocs.MetaData API supports extracting format-specific information from the FLV file heaDer. The following are the steps to reaD the heaDer of an FLV file. LoaD an FLV viDeo Get the root metaData package Extract the native metaData package using the FlvRootPackage.getHeaDer methoD ReaD the FLV heaDer properties aDvanceD_usage.managing_metaData_for_specific_formats.viDeo.flv.FlvReaDHeaDerProperties try (MetaData metaData = new MetaData(Constants.InputFlv)) { FlvRootPackage root = metaData.getRootPackageGeneric(); System.out.println(root.getHeaDer().getVersion()); System.out.println(root.getHeaDer().hasAuDioTags()); System.out.println(root.getHeaDer().hasViDeoTags()); System.out.println(root.getHeaDer().getTypeFlags()); } Working with XMP metaData GroupDocs....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Getting known property descriptors | Documentation

    This coDe snippet Demonstrates how to extract information about known properties that can be encountereD in a particular package. LoaD a file to examine Get a collection of PropertyDescriptor instances for any DesireD metaData package Iterate through the extracteD Descriptors aDvanceD_usage.GettingKnownPropertyDescriptors JavaScript const metaData = new groupDocs.metaData.MetaData("input.Doc"); var root = metaData.getRootPackageGeneric(); var Descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;i<Descriptors.getCount(); i++) { var Descriptor = Descriptors.get_Item(i); console.log(Descriptor.getName()); console.log(Descriptor.getType().getRawValue()); console.log(Descriptor.getAccessLevel().getRawValue()); var tags = Descriptor.getTags(); for(var j=0;jextract information about known properties...package Iterate through the extracted descriptors advanced_usage...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  6. How to Run | Documentation

    DownloaD from GitHub The complete examples package of GroupDocs.MetaData is hosteD on Github. You can either DownloaD the ZIP file from here or clone the repository of Github using your favourite Github client. In case you DownloaD the ZIP file, extract the folDers on your local Disk. The extracteD files anD folDers will look like the following image: Open IntelliJ IDea anD import the project to get starteD with it....file, extract the folders on your local disk. The extracted files...thanks Any additional feedback you'd like to share with us? Skip Send...

    docs.groupdocs.com/metadata/java/how-to-run/
  7. Getting indexed documents | Documentation

    This article explains how to get a list of inDexeD Documents from an inDex, anD how to get the text of inDexeD Documents in HTML or plain text format....indexed document can also be extracted from an index if the option...following example shows how to extract document text from an index...

    docs.groupdocs.com/search/nodejs-java/getting-i...
  8. Working with BMP metadata | Documentation

    ReaDing BMP heaDer properties The GroupDocs.MetaData API supports extracting format-specific information from BMP file heaDers. The following are the steps to reaD the heaDer of a BMP file. LoaD a BMP image Get the root metaData package Extract the native metaData package using BmpRootPackage.BmpHeaDer ReaD the BMP heaDer properties ADvanceDUsage.ManagingMetaDataForSpecificFormats.Image.Bmp.BmpReaDHeaDerProperties using (MetaData metaData = new MetaData(Constants.InputBmp)) { var root = metaData.GetRootPackage(); Console.WriteLine(root.BmpHeaDer.BitsPerPixel); Console.WriteLine(root.BmpHeaDer.ColorsImportant); Console.WriteLine(root.BmpHeaDer.HeaDerSize); Console.WriteLine(root.BmpHeaDer.ImageSize); Console.WriteLine(root.BmpHeaDer.Planes); } More resources GitHub examples You may easily run the coDe above anD see the feature in action in our GitHub examples:...Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-bm...
  9. Comment convertir DOCX en TXT à l'aide de Java

    Dans ce guiDe, nous fournirons Des étapes simples pour convertir DOCX en TXT à l'aiDe De Java. Nous vous fournirons également un exemple De coDe représentant comment exporter DOCX vers TXT en Java....éditeurs de texte de base, l’extraction de contenu non formaté pour...compatible avec n’importe quel système d’exploitation. Ces directives sont...

    kb.groupdocs.com/fr/conversion/java/how-to-conv...
  10. diger du texte dans DOCX en utilisant C#

    Dans cette rubrique, vous apprenDrez à réDiger Du texte Dans DOCX à l'aiDe De C# sans installation De logiciel supplémentaire. Vous recevrez également Du coDe pour remplacer le texte Dans DOCX à l’aiDe De C#....masquer les informations sensibles d’un document tout en préservant...masquage des informations sensibles d’un document tout en préservant...

    kb.groupdocs.com/fr/redaction/net/redact-text-i...