Sort Score
Result 10 results
Languages All
Labels All
Results 2,981 - 2,990 of 13,800 for

file

(0.1 sec)
  1. Password-protected documents | Documentation

    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...
  2. Password-protected documents | Documentation

    Learn how to open the password-protected documents....whether a file is password-protected: // Get a file info Options...

    docs.groupdocs.com/parser/net/password-protecte...
  3. Render attachments | Documentation

    Render email attachments with GroupDocs.Viewer for .NET in the same way as you would render any other documents... Specify a file that contains attachments. Call...render attachments from the MSG file: Note NOTE: provided code snippet...

    docs.groupdocs.com/viewer/net/how-to-convert-an...
  4. How to Extract Text from HTML in Java

    This article describes a step-by-step procedure to extract text from HTML in Java and how to use these steps for developing the Java get Text from HTML application....extracting text from an HTML file Initialize the Parser class...allows you to load the HTML file by instantiating the Parser...

    kb.groupdocs.com/parser/java/how-to-extract-tex...
  5. How to Convert TIFF to PDF using C#

    Let's review the step-by-step procedure for converting documents, learn how to convert TIFF to PDF using C# and how to create TIFF to PFD converter C# functionality....next step, load the input TIFF file by creating an instance of the...Finally, save the converted PDF file to disk by invoking the Convert...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  6. How to Convert PDF to Image in C#

    Review the document transformation procedure and learn the guide to convert PDF to Image in C# and explore working sample code to convert PDF to Image using C#....for customizing the output PNG file Finally, call the Convert method...to save the generated result file to the disk. Code to Convert...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  7. Working with metadata in GIF images | Documenta...

    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....and extract some additional file format information. a GIF image...package Use the property to obtain file format information AdvancedUsage...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Add Watermark to Presentations in C# | Text and...

    C# ways to add text to presentation slides as watermark, or apply image watermarks to PPT, PPTX, PPS & more formats using .NET Watermarking API by GroupDocs....other documents of different file formats within .NET applications...spreadsheets, email messages, PDF files, images, Visio drawings, and...

    blog.groupdocs.com/watermark/add-watermark-to-p...
  9. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Redaction for Java since version 19.6: Redactor class introduced as a single entry point to manage the document redaction process (instead of Documentclass from previous versions). Methods redactWith() of the Document class were replaced with similar apply() methods in Redactor class. Method Document.save(OutputStream, SaveOptions) was replaced with Redactor.save(OutputStream, RasterizationOptions). Constructor LoadOptions(DocumentFormatConfiguration) was removed....Old coding style // Load the file Document doc = Redactor . load...New coding style // Load the file Redactor redactor = new Redactor...

    docs.groupdocs.com/redaction/java/migration-notes/
  10. How to Add Digital Signature to PDF in C#

    Review the process to add digital signature to PDF in C# and follow the detailed instructions to use a digital signature in C# with a few API calls....class and pass the output PDF file along with the DigitalSignOptions...class and pass the certificate file. Finally, add a digital signature...

    kb.groupdocs.com/signature/net/how-to-add-digit...