Sort Score
Result 10 results
Languages All
Labels All
Results 1,431 - 1,440 of 2,633 for

resource

(0.1 sec)
  1. Working with metadata in GIF images | GroupDocs

    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.... More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Search and Filter Documents in C#

    Efficiently get knowledge of how to search and filter documents in C#. Learn how to filter documents search results in C# for precise and streamlined data retrieval....results, saving both time and resources. Implementing these techniques...

    kb.groupdocs.com/search/net/search-and-filter-d...
  3. تحويل SVG إلى HTML باستخدام Python

    تعرف على كيفية تحويل SVG إلى HTML باستخدام Python. يوضح هذا الدليل كيفية تحويل SVG إلى HTML في Python مع موارد مدمجة لإنتاج جاهز للمتصفح....HtmlViewOptions باستخدام for_embedded_resources لتجميع المخرجات في ملف HTML...

    kb.groupdocs.com/ar/viewer/python/render-svg-as...
  4. Get document info | GroupDocs

    GroupDocs.Metadata allows users to get meta information of a document.... is_encrypted } " ) More resources Advanced usage topics To learn...

    docs.groupdocs.com/metadata/python-net/get-docu...
  5. Getting known property descriptors | GroupDocs

    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.... More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/java/getting-known-...
  6. GroupDocs.Annotation עבור .NET 25.11 – עדכונים ...

    גלה מה חדש ב‑GroupDocs.Annotation עבור .NET 25.11. זמין כעת ב‑NuGet ובאתר GroupDocs....מיושר and more aggressive resource cleanup, reducing the memory...

    blog.groupdocs.com/he/annotation/groupdocs-anno...
  7. Generate QR codes Online | Add QR code to Docum...

    Create QR codes online! Learn to generate various types using user-friendly tools. Get a sneak peek into QR code creation with C# and Java code snippets....links for further details and resources: Documentation Examples –...

    blog.groupdocs.com/signature/generate-qrcode-on...
  8. Perform Synonym Search in Documents Online

    Unlock the power of synonym search! Learn how to search alternate words in text-based documents online & programmatically....links for more details and resources: Documentation Examples on...

    blog.groupdocs.com/search/online-synonym-search/
  9. Extract data from Emails | GroupDocs

    GroupDocs.Parser provides the functionality to extract data from emails. Both email message (eml, msg) and Outlook Storage (ost, pst) formats are supported. Also POP, IMAP and Exchange Web Services protocols are supported. The following table provides the list of supported formats: Format Description EML E-Mail Message EMLX Apple Mail Message MSG Microsoft Outlook Mail Message PST Microsoft Outlook Personal Information Store File OST Microsoft Outlook Offline Data File More Resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Outlook Offline Data File More resources GitHub examples You may easily...

    docs.groupdocs.com/parser/java/extract-data-fro...
  10. Indexing metadata of documents | GroupDocs

    API allows creating of full-text and / or metadata index on documents. To index only metadata without main content of documents, you only need to set IndexType.MetadataIndex when creating an index....Search ( "Einstein" ); More resources GitHub examples You may easily...

    docs.groupdocs.com/search/net/indexing-metadata...