Sort Score
Result 10 results
Languages All
Labels All
Results 3,891 - 3,900 of 8,545 for

document conversion

(0.23 sec)
  1. GroupDocs.Viewer for Java overview | GroupDocs

    GroupDocs.Viewer for Java enables you to convert files to HTML, PNG, JPEG, PDF file formats, and save attachments without relying on third-party applications. GroupDocs.Viewer for Java is cross-platform class library....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/product-overview/
  2. Scan QR Code from DOC using C#

    Quickly learn about how to scan QR Code from DOC using C# without installing extra software. Also, code example will be provided to extract QR Code from DOC in C#....Conversion Product Family GroupDocs...Scanning QR codes from Word documents ( DOC ) is a practical solution...

    kb.groupdocs.com/parser/net/scan-qrcode-from-do...
  3. GroupDocs.Redaction for Java | GroupDocs

    A Java API for redaction of sensitive and classified information from the Documents. You can redact in adobe pdf, redact in excel or in many of different file formats....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/
  4. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/load-from-loca...
  5. Basic Usage | GroupDocs

    Quick Start section for GroupDocs.Metadata API Manage metadata in your Documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when Documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/basic-usage/
  6. Extract text from ZIP archive files | GroupDocs

    To extract files from ZIP archives getContainer method is used. This method returns the collection of ContainerItem objects. Zip Entry can contain the following metadata: Name Description date The time and date at which the file indicated by the Zip Entry was last modified. crc The 32-bit CRC (Cyclic Redundancy Check) on the contents of the Zip Entry. These metadata refer to a container element itself, not a Document. Here are the steps to extract an email text from Zip archives:...Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/extract-text-fro...
  7. Save in rasterized PDF | GroupDocs

    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(); }...Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  8. Sign documents with extra Digital Signature pro...

     This article explains how to use extended Digital electronic signatures options and adjustment on Document page....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/sign-document...
  9. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/reorder-pages/
  10. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted Document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Conversion Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...