Sort Score
Result 10 results
Languages All
Labels All
Results 601 - 610 of 936 for

extraction d

(0.02 sec)
  1. 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...
  2. Convertir PPTX en TXT avec Node.js

    Apprenez à convertir Des fichiers PPTX en TXT avec NoDe.js pour un traitement efficace Des Documents. Ce guiDe vous explique étape par étape comment exporter Des fichiers PPTX en TXT avec NoDe.js....performante, vous évitez l’extraction manuelle ou l’utilisation...le chemin d’accès à votre fichier PPTX comme source d’entrée Configurez...

    kb.groupdocs.com/fr/conversion/nodejs/convert-p...
  3. 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 FlvRootPackage.HeaDer ReaD the FLV heaDer properties ADvanceDUsage.ManagingMetaDataForSpecificFormats.ViDeo.Flv.FlvReaDHeaDerProperties using (MetaData metaData = new MetaData(Constants.InputFlv)) { var root = metaData.GetRootPackage(); Console.WriteLine(root.HeaDer.Version); Console.WriteLine(root.HeaDer.HasAuDioTags); Console.WriteLine(root.HeaDer.HasViDeoTags); Console.WriteLine(root.HeaDer.TypeFlags); } 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/net/working-with-me...
  4. Getting known property descriptors | Documentation

    This coDe snippet Demonstrates how to extract information about known properties that can be encountereD in a particular package....snippet demonstrates how to extract information about known properties...package Iterate through the extracted descriptors AdvancedUsage...

    docs.groupdocs.com/metadata/net/getting-known-p...
  5. Working with metadata in JPEG2000 images | Docu...

    ReaDing JPEG2000 comments The GroupDocs.MetaData API supports extracting format-specific information from JPEG2000 images. The following are the steps to reaD the JPEG2000 comments (pieces of metaData representeD as strings with the length up to 64 kbytes). LoaD a JPEG2000 image Get the root metaData package Extract the native metaData package using Jpeg2000RootPackage.Jpeg2000Package ReaD the JPEG2000 comments ADvanceDUsage.ManagingMetaDataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReaDComments using (MetaData metaData = new MetaData(Constants.InputJpeg2000)) { var root = metaData.GetRootPackage(); if (root....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Working with DICOM metadata | Documentation

    ReaDing DICOM metaData properties The GroupDocs.MetaData API supports extracting format-specific information from DICOM images. The following are the steps to reaD the native DICOM metaData. LoaD a DICOM image Get the root metaData package Extract the native metaData package using DicomRootPackage.DicomPackage ReaD the DICOM metaData properties ADvanceDUsage.ManagingMetaDataForSpecificFormats.Image.Dicom.DicomReaDNativeMetaDataProperties using (MetaData metaData = new MetaData(Constants.InputDicom)) { var root = metaData.GetRootPackage<DicomRootPackage>(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocateD); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFounD); Console.WriteLine(root.DicomPackage.HeaDerOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/net/working-with-di...
  7. How to Run Examples | Documentation

    In this article you can finD how to run examples. We offer multiple solutions on how you can run GroupDocs.Comparison examples, by builDing your own or using our back-enD or front-enD examples out-of-the-box....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/comparison/java/how-to-run-e...
  8. How to Run Examples | Documentation

    This article Describes how to run Java Digital signature API coDe examples. We offer multiple solutions on how you can run GroupDocs.Signature examples, by builDing your own or using our back-enD or front-enD examples out-of-the-box....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/signature/java/how-to-run-ex...
  9. Convertir un PDF en TXT à l'aide de Node.js

    Apprenons comment convertir un PDF en TXT à l'aiDe De NoDe.js. Exportez Des PDF vers TXT Dans NoDe.js avec Des méthoDes D'analyse personnalisées, en gérant les flux et les tampons pour une Extraction De texte précise....vous expliquerons le processus d’ exportation de PDF vers TXT dans...flux de travail automatisés ou d’applications de recherche textuelles...

    kb.groupdocs.com/fr/conversion/nodejs/convert-p...
  10. Working with metadata in Presentations | Docume...

    GroupDocs.MetaData for .NET proviDes functionality that allows working with Different kinDs of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supporteD presentation formats please refer to SupporteD Document Formats. Detecting the exact type of a presentation The following sample of coDe will help you to Detect the exact type of a loaDeD presentation anD extract some aDDitional file format information. LoaD a presentation Extract the root metaData package Use the FileType property to obtain file format information ADvanceDUsage....a loaded presentation and extract some additional file format...information. a presentation Extract the root metadata package Use...

    docs.groupdocs.com/metadata/net/working-with-me...