Quick Start section for GroupDocs.Redaction API Perform redactions for your documents easily with our intuitive and powerful API just with a few lines of code.
Let’s review common usage scenarios when source document “sample.docx” is stored at a local drive and you want to apply redactions to it....Merger Product Solution GroupDocs...to it. Get supported file formats Get file info Get document page...
Code examples and live demostrations of GroupDocs.Editor for Java...Merger Product Solution GroupDocs...below to learn more about edit file features. GitHub Examples You...
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....Merger Product Family GroupDocs.Redaction...and pass the required image file to the constructor Call the...
Load documents from your local disk using a File path with GroupDocs.Viewer in Python....Merger Product Solution GroupDocs...a path to a file. GroupDocs.Viewer opens the file in the read-only...
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#....Merger Product Family GroupDocs.Redaction...Annotator class by supplying the JPG file path as an argument to its constructor...
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....Merger Product Family GroupDocs.Redaction...object by providing the SVG file path as an argument to its constructor...
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#....Merger Product Family GroupDocs.Redaction...object by providing the RTF file path to its constructor Create...
This article demonstrates how to create new documents, spreadsheets, and presentations with GroupDocs.Editor for Node.js via Java API....Merger Product Solution GroupDocs...); // Save the document to a file const outputFilePath = 'output...
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....Merger Product Solution GroupDocs...and extract some additional file format information. a GIF image...
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 (!...Merger Product Solution GroupDocs...whether a file is password-protected: // Get a file info FileInfo...