Sort Score
Result 10 results
Languages All
Labels All
Results 3,731 - 3,740 of 15,927 for

file

(0.28 sec)
  1. Load text from string | GroupDocs

    This article explains how to load values from variables of string type when using GroupDocs.Comparison for .NET....contains text to be compared, not file path). Instantiate the object...using ( Stream sourceStream = File . OpenRead ( "./source.docx"...

    docs.groupdocs.com/comparison/net/load-text-fro...
  2. 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 getGifImageType method to obtain File format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....and extract some additional file format information. a GIF image...package Use the method to obtain file format information advanced_usage...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. Set document metadata on save | GroupDocs

    Follow this guide and learn how to set document metadata when saving output document after Files comparison within your .NET applications....metadata: Set metadata from source file C# using GroupDocs.Comparison...}); } Set metadata from target file C# using GroupDocs.Comparison...

    docs.groupdocs.com/comparison/net/set-document-...
  4. Tags on GroupDocs Blog | Document Automation So...

    Tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Tags on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers AI Integration ......cell comparison compare excel files compare excel spreadsheets compare...net-ui GroupDocs.Search Log Files printing PDF Fix Version 25...

    blog.groupdocs.com/he/tags/index.xml
  5. How to Add Image Signature to PDF in Java

    Understand the step-by-step procedure to add image signature to PDF in Java and how to create functionality to insert signature image in PDF using Java....and pass the required image file to the constructor Call the...Signature class, pass the output PDF file name and ImageSignOptions object...

    kb.groupdocs.com/signature/java/how-to-add-imag...
  6. Render SVG as PDF using C#

    Efficiently acquire the knowledge of how to render SVG as PDF using C#. Additionally, delve into step-by-step guidelines and C# code for rendering SVG to PDF....object by providing the SVG file path as an argument to its constructor...the required adjustments to file paths, incorporating the code...

    kb.groupdocs.com/viewer/net/render-svg-as-pdf-u...
  7. Add Arrow Annotation to JPG using C#

    You will learn how to add arrow annotation to JPG using C# in this tutorial. Additionally, we will provide code example to insert arrow annotation to JPG in C#....Annotator class by supplying the JPG file path as an argument to its constructor...annotation library and modifying file paths as needed, seamlessly...

    kb.groupdocs.com/annotation/net/add-arrow-annot...
  8. How to Sign RTF with Stamp Signature using C#

    This article is here to assist you to sign RTF with stamp signature using C#. Additionally, we will furnish you with a code example to embed stamp signature into RTF using C#....object by providing the RTF file path to its constructor Create...library and made the required file path adjustments, you can use...

    kb.groupdocs.com/signature/net/how-to-sign-rtf-...
  9. Add document to Presentation via OLE | GroupDocs

    This article explains how to add document to Presentation via OLE with GroupDocs.Merger within your .NET applications....Initialise class with embedded file path and page number; Instantiate...Call method and pass desired file path to save resultant document...

    docs.groupdocs.com/merger/net/add-document-to-p...
  10. Password-protected documents | GroupDocs

    GroupDocs.Parser provides the functionality to open the password-protected documents. The following are the steps to work with password protected documents. Instantiate the LoadOptions object; Set password in LoadOptions(String) constructor; Create Parser object and call any method. The following code sample shows how to process password protected documents. try { String password = "123456"; // Create an instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text extraction is supported if (!...whether a file is password-protected: // Get a file info FileInfo...

    docs.groupdocs.com/parser/java/password-protect...