Sort Score
Result 10 results
Languages All
Labels All
Results 621 - 630 of 944 for

extraction d

(0.08 sec)
  1. 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 try (MetaData metaData = new MetaData(Constants.InputDoc)) { WorDProcessingRootPackage root = metaData.getRootPackageGeneric(); for (PropertyDescriptor Descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(Descriptor.getName()); System.out.println(Descriptor.getType()); System.out.println(Descriptor.getAccessLevel()); for (PropertyTag tag : Descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presenteD in the getKnowPropertyDescriptors collection....snippet demonstrates how to extract information about known properties...package Iterate through the extracted descriptors advanced_usage...

    docs.groupdocs.com/metadata/java/getting-known-...
  2. 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...
  3. 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...
  4. Convertir ODT en MHTML avec Node.js

    Apprenez à convertir un fichier ODT en MHTML avec NoDe.js. Dans cet article, nous Détaillerons les étapes D'exportation D'un fichier ODT vers MHTML avec NoDe.js, avec un exemple De coDe....processus et facilite l’intégration d’une conversion de fichiers fiable...Converter , en fournissant le chemin d’accès à votre fichier ODT pour...

    kb.groupdocs.com/fr/conversion/nodejs/convert-o...
  5. Extraire les informations RIFF et les métadonné...

    Extraire les métaDonnées et RIFF INFO Des fichiers auDio WAV en Java. L'API De métaDonnées permet la gestion Des métaDonnées Dans vos applications Java....Metadata for Java est l’API d’automatisation et de manipulation...suppression, la mise à jour et l’extraction de métadonnées à partir de...

    blog.groupdocs.com/fr/metadata/extract-riff-inf...
  6. 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...
  7. Working with vCard metadata | Documentation

    What is vCarD? vCarD, also known as VCF (Virtual Contact File), is a file format stanDarD for electronic business carDs. vCarDs are often attacheD to e-mail messages, but can be exchangeD in other ways. They can contain name anD aDDress information, telephone numbers, e-mail aDDresses, URLs, logos, photographs, anD even auDio clips. Note For more information on the format please see https://en.wikipeDia.org/wiki/VCarD Getting Simple vCarD metaData To access MetaData in a vCarD, GroupDocs....contains the information extracted from a file. The following...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-v...
  8. 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...
  9. 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...
  10. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF Document The following sample of coDe will help you to Detect the PDF version a loaDeD Document anD extract some aDDitional file format information. LoaD a PDF Document Extract the root metaData package Use the FileType property to obtain file format information ADvanceDUsage.ManagingMetaDataForSpecificFormats.Document.PDf.PDfReaDFileFormatProperties using (MetaData metaData = new MetaData(Constants.InputPDf)) { var root = metaData.GetRootPackageDfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } ReaDing built-in metaData properties To access built-in metaData of a PDF Document, please use the DocumentProperties property DefineD in the DocumentRootPackage class....version a loaded document and extract some additional file format...information. a PDF document Extract the root metadata package Use...

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