Sort Score
Result 10 results
Languages All
Labels All
Results 1,631 - 1,640 of 3,841 for

assemble

(0.03 sec)
  1. Adjust the image size | Documentation

    Check this guide to learn how to adjust PNG and JPG images size when rendering documents with Image Viewer by GroupDocs for Java....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/image-viewer-adj...
  2. Reduce image quality | Documentation

    Compress images in PDF files to reduce size. Adjust image quality (0-100%) using the GroupDocs.Viewer Python API....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/viewer/python-net/optimizati...
  3. Using OCR to redact image documents | Documenta...

    GroupDocs.Redaction supports both types of image documents for Optical Character Recognition (OCR): image files, such as printed document scans (PNG, JPG, etc.) embedded images within office documents (PDF, DOCX, etc.) You have to implement IOcrConnector interface and pass the instance to RedactorSettings constructor. For more details, see OCR Usage Basics article. OCR usage limitations There are the following limitations of the OCR with GroupDocs.Redaction v21.3: textual replacements are not supported, so you have to use color box replacements to redact text in images....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/net/using-ocr/
  4. Save in original format | Documentation

    The following example demonstrates how to save file in its original format with current date as a suffix: final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/save-in-origi...
  5. Replace missing font | Documentation

    This article explains how to replace missing font when rendering documents with GroupDocs.Viewer within your Java applications....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/replace-missing-...
  6. Add text watermarks | Documentation

    This article explains how to add text watermark when rendering documents with GroupDocs.Viewer within your Java applications....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/add-text-watermark/
  7. Merge DOCX files using C#

    Gain expertise to merge DOCX files using C#. We will provide you sample code example to combine DOCX files in C# without the additional software installations....creating comprehensive reports, assembling chapters of a book, or consolidating...

    kb.groupdocs.com/merger/net/merge-docx-files-us...
  8. Get document info | Documentation

    This article explains how to get document information...Assembly Product Solution GroupDocs...

    docs.groupdocs.com/watermark/net/get-document-i...
  9. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/python-net/removing...