Sort Score
Result 10 results
Languages All
Labels All
Results 1,041 - 1,050 of 2,371 for

resource

(0.11 sec)
  1. Save a modified file to the original source | G...

    This article shows how to save the modified content to the underlying source using GroupDocs.Metadata for Python via .NET.... save () More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/python-net/save-a-m...
  2. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk using GroupDocs.Metadata for Python via .NET.... output_jpeg ) More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/python-net/save-a-m...
  3. Load from a stream | GroupDocs

    This example demonstrates how to load a file from a stream....remove metadata here } More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/load-from-a-str...
  4. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk... OutputJpeg ); } More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/save-a-modified...
  5. Save a modified file to the original source | G...

    This article shows how to save the modified content to the underlying source.... Save (); } More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/net/save-a-modified...
  6. Render XLSX as JPG using Python

    In this topic, we will learn how to render XLSX as JPG using Python. This tutorial explains how to convert XLSX to JPG in Python for static image generation....with statement to manage resources safely Define JpgViewOptions...

    kb.groupdocs.com/viewer/python/render-xlsx-as-j...
  7. Nesting search queries in object form | GroupDocs

    This article gives the knowledge about nesting search queries in object form....+ Wildcard – + – – – More resources GitHub examples You may easily...

    docs.groupdocs.com/search/net/nesting-search-qu...
  8. Load document from url | GroupDocs

    Learn how to Load document from url.... ReadToEnd ()); } } More resources GitHub examples You may easily...

    docs.groupdocs.com/parser/net/load-document-fro...
  9. Load a password-protected document | GroupDocs

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More Resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...remove metadata here } More resources GitHub examples You may easily...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  10. Get supported file formats | GroupDocs

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More Resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....getDescription ()); } More resources Advanced usage topics To learn...

    docs.groupdocs.com/metadata/java/get-supported-...