Sort Score
Result 10 results
Languages All
Labels All
Results 4,251 - 4,260 of 7,156 for

document viewer

(0.06 sec)
  1. Composing signature with texture brush backgrou...

     This article explains how to fill signature background with texture brush...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/composing-sig...
  2. Use redaction callback | Documentation

    In order to reject specific changes during redaction process or to keep a full log of changes in the Document, you need to set Redactor.RedactionCallback property, to a class implementing IRedactionCallback interface. The interface contains only one method, AcceptRedaction, which receives detailed information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumping changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-redaction...
  3. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  4. Save in rasterized PDF | Documentation

    The following example demonstrates how to save the Document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  5. How to Insert Area Annotation to PDF using C#

    In this subject, you will learn how to insert area annotation to PDF using C#. It also includes guidance and code example to add area annotation to PDF in C#....Viewer Product Family GroupDocs.Comparison...emphasize specific areas of the document and attach comments, notes...

    kb.groupdocs.com/annotation/net/how-to-insert-a...
  6. How to Convert HTML to ODT using C#

    Quickly convert HTML to ODT using C# with a popular conversion library along with code example to export HTML to ODT in C# on commonly used operating systems....Viewer Product Family GroupDocs.Comparison...Converting HTML to ODT (Open Document Text) can be a useful feature...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  7. Inserting Hyperlinks Dynamically | Documentation

    Note This feature is supported by version 18.7. or greater Note The code uses some of the objects defined in The Business Layer. Inserting Hyperlinks Dynamically Using GroupDocs.Assembly, you can insert hyperlinks to your reports dynamically using link tags. The syntax of a link tag is defined as follows: <> Here, uri_expression defines URI for a hyperlink to be inserted dynamically. This expression is mandatory and must return a non-empty value....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/inserting-hyper...
  8. How to Convert XLSX to CSV using Java

    The focus of this topic is to guide you on how to convert XLSX to CSV using Java, and help you in developing a Java application to change XLSX to CSV in Java....Viewer Product Family GroupDocs.Comparison...the Excel document to CSV. Once the designated document conversion...

    kb.groupdocs.com/conversion/java/how-to-convert...
  9. Logging | Documentation

    An interface is used to receive the information about errors, warnings and events which occur while data extraction....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/logging/
  10. How to Remove Annotation Reply from PDF using Java

    The purpose of this topic is to show you how to remove annotation reply from PDF using Java along with code example to delete reply annotation using Java from PDF....Viewer Product Family GroupDocs.Comparison...Annotator object with input document path Call Annotator.get method...

    kb.groupdocs.com/annotation/java/how-to-remove-...