Sort Score
Result 10 results
Languages All
Labels All
Results 2,811 - 2,820 of 37,264 for

documents

(0.09 sec)
  1. 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(); }...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product.../ Advanced Usage / Saving documents / Save in rasterized PDF Save...

    docs.groupdocs.com/redaction/java/save-in-raste...
  2. Replace missing font | Documentation

    This article explains how to replace missing font when rendering Documents with GroupDocs.Viewer within your Java applications....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...Developer Guide / Render documents / Replace missing font Replace...

    docs.groupdocs.com/viewer/java/replace-missing-...
  3. Render with responsive layout | Documentation

    Learn how to render your document with responsive HTML layout that looks great on mobile and desktop devices....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...Developer Guide / Render documents / Render to HTML / Render...

    docs.groupdocs.com/viewer/java/render-with-resp...
  4. ASP.NET MVC Example Project for GroupDocs.Viewe...

    The GroupDocs team is pleased to announce the Front End sample project for the ASP.NET MVC developers. The reason behind this release is to facilitate the developers to write their own document viewer using GroupDocs.Viewer for .NET 3.x. Almost all the functionalities have been implemented in this project which was given in the old GroupDocs.Viewer for .NET 2.x UI Based API. The developers are flexible to customize the application by their own....developers to write their own document viewer using GroupDocs.Viewer...viewing and navigation of a documents in a browser. The front end...

    blog.groupdocs.com/viewer/asp-net-mvc-ui-exampl...
  5. 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(); }...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product.../ Advanced Usage / Saving documents / Save in original format...

    docs.groupdocs.com/redaction/java/save-in-origi...
  6. Indexing | Documentation

    The articles in this section describe advanced search index related topics. You will find details about index management and advanced options: More resources GitHub examples You may easily run the code from documentation articles and see the features in action in our GitHub examples: GroupDocs.Search for .NET examples GroupDocs.Search for Java examples Free online document search App Along with full featured .NET library we provide simple, but powerful free Apps....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...easily run the code from documentation articles and see the features...

    docs.groupdocs.com/search/java/indexing/
  7. 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...Developer Guide / Render documents / Render to PNG or JPEG /...

    docs.groupdocs.com/viewer/java/image-viewer-adj...
  8. Load from local disk | Documentation

    This article explains how to load from local disk while using GroupDocs. Watermarks Java API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...Advanced Usage / Loading documents / Load from local disk Load...

    docs.groupdocs.com/watermark/java/load-from-loc...
  9. Extract Data from Invoices or Receipts in C# us...

    Parse invoices or receipts and extract data programmatically using C#. Use .NET document parsing API in ASP.NET, WCF, or WPF to extract text from Documents....Invoices and receipts are the documents that are used to record the...for .NET API, visit the documentation . Reach us at our forum...

    blog.groupdocs.com/parser/extract-data-from-inv...
  10. Save overwriting original file | Documentation

    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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product.../ Advanced Usage / Saving documents / Save overwriting original...

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