Sort Score
Result 10 results
Languages All
Labels All
Results 4,521 - 4,530 of 15,593 for

file

(0.42 sec)
  1. User roles | GroupDocs

    The page describes how to implement user roles in GroupDocs.Annotation for .NET API....pdf-file" )) { AreaAnnotation area =...

    docs.groupdocs.com/annotation/net/apply-roles/
  2. Hot to load document from Azure Blob Storage | ...

    This section explains how to load document from Azure Blob Storage with GroupDocs.Signature API....= 100 }; // sign document to file signature . Sign ( outputFilePath...

    docs.groupdocs.com/signature/net/load-document-...
  3. Product Overview | GroupDocs

    GroupDocs.Editor for .NET is a C# api allows to edit Microsoft Office documents like Word, Excel or PowerPoint or PDF without third party software installed....NET you can edit files of various formats and no third-party...following benefits: Rich set of file editing features; Platform independence;...

    docs.groupdocs.com/editor/net/product-overview/
  4. Introducing a More Optimized and Simplified Gro...

    It’s been quite long since we released the last version of GroupDocs.Watermark for .NET API. The reason behind this gap was to introduce a more simplified and optimized watermark manipulation API for the .NET platform. Today, I am excited to announce that the API v2 of GroupDocs.Watermark for .NET has been released as v19.10 and it is available for download. What’s new in the latest release? The major updates have been done at the architecture level of the API to simplify its usage....document information from the local file. Old API # New API # For more...

    blog.groupdocs.com/watermark/net-api-to-add-sea...
  5. How to Convert TIFF to PDF in Java

    This guide walks you through the whole process to convert TIFF to PDF in Java. Explore sample code for Java TIFF to PDF capability and modify it as per your needs....class and pass the input TIFF file to its constructor Create an...

    kb.groupdocs.com/conversion/java/how-to-convert...
  6. Implement thread-safe cache for GroupDocs.Viewe...

    This article explains how to make cache thread safe with GroupDocs.Viewer within your .NET applications....simultaneously view the same file. The web application uses GroupDocs...local disk to store the cache files. The FileCache is not thread...

    docs.groupdocs.com/viewer/net/implement-thread-...
  7. Working with metadata in Spreadsheets | GroupDocs

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of spreadsheet formats such as XLS, XLSX, ODS, etc. For the full list of supported document formats please refer to Supported document formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded spreadsheet and extract some additional File format information. Load a Spreadsheet document Extract the root metadata package Use the getSpreadsheetType method to obtain File format information advanced_usage....and extract some additional file format information. a Spreadsheet...package Use the method to obtain file format information advanced_usage...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Extract pages | GroupDocs

    Following this guide you will learn how to extract pages from PDF, Word, Excel, PowerPoint and many other File types using GroupDocs.Merger for .NET....to it; Call method specifying file path to save resultant document...

    docs.groupdocs.com/merger/net/extract-pages/
  9. Save signed document with password | GroupDocs

    This article explains how to save document with password protection....false ); // sign document to file signature . sign ( "SignedProtected...

    docs.groupdocs.com/signature/java/save-signed-d...
  10. Extracting common image information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain File format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...package Use the method to obtain file format information advanced_usage...

    docs.groupdocs.com/metadata/java/extracting-com...