Sort Score
Result 10 results
Languages All
Labels All
Results 1,201 - 1,210 of 29,871 for

redact

(0.05 sec)
  1. Save with default options | Documentation

    The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF file will be overwritten. The following example demonstrates usage of Save() method with default options. final Redactor Redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform Redactions Redactor....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-with-def...
  2. Редагувати PDF і відскановані документи в C# | ...

    Відредагуйте текст у PDF та інших документах за допомогою C# у ваших програмах .NET. Відредагуйте документи на затемнений текст, а також текст у вбудованих зображеннях....Redaction надає API редагування документів...Install-Package GroupDocs.Redaction Встановіть через диспетчер...

    blog.groupdocs.com/uk/redaction/redact-text-and...
  3. ویرایش متن در DOCX با استفاده از جاوا

    این مبحث راهنمایی هایی در مورد نحوه ویرایش متن در DOCX با استفاده از جاوا ارائه می دهد. بدون نیاز به نصب نرم افزار اضافی، می توانید متن را در DOCX با استفاده از جاوا جایگزین کنید....Redaction Product Family ویرایش متن...برای استفاده از GroupDocs.Redaction for Java به منظور ویرایش متن...

    kb.groupdocs.com/fa/redaction/java/redact-text-...
  4. แก้ไขข้อความใน PPTX โดยใช้ Java

    ในคู่มือนี้ คุณจะค้นพบวิธีแก้ไขข้อความใน PPTX โดยใช้ Java นอกจากนี้ คุณจะได้รับตัวอย่างโค้ดง่ายๆ เพื่อแทนที่ข้อความใน PPTX โดยใช้ Java...Redaction Product Family แก้ไขข้อความใน...(IDE) เพื่อใช้ GroupDocs.Redaction for Java เพื่อตรวจทานข้อความในไฟล์...

    kb.groupdocs.com/th/redaction/java/redact-text-...
  5. Xóa siêu dữ liệu khỏi PPTX bằng Java

    Dễ dàng tìm hiểu cách xóa siêu dữ liệu khỏi PPTX bằng Java. Bạn cũng sẽ nhận được mã ví dụ cho biết cách xóa siêu dữ liệu khỏi PPTX trong Java mà không cần cài đặt thêm phần mềm....Redaction Product Family Xóa siêu dữ...bạn để sử dụng GroupDocs.Redaction for Java nhằm xóa siêu dữ...

    kb.groupdocs.com/vi/redaction/java/remove-metad...
  6. GroupDocs.Annotation Product Family

    Find answers about annotating digital documents and images of various types using code on any platform....Redaction Product Family GroupDocs.Annotation...using Java How to Add Text Redaction Annotation in PDF using Java...

    kb.groupdocs.com/annotation/
  7. Remove Annotations from RTF using Java

    Discover how to effectively remove annotations from RTF using Java. This guide provides code example that illustrates how to delete annotations in RTF using Java....Redaction Product Family Remove Annotations...final version. Using the redaction library makes it easy to remove...

    kb.groupdocs.com/redaction/java/remove-annotati...
  8. 在 C# 中编辑 PDF 和扫描的文档 | PDF 中的黑屏文本

    在 .NET 应用程序中使用 C# 编辑 PDF 和其他文档中的文本。编辑文档以遮蔽文本以及嵌入图像中的文本。...Redaction 提供了 document redaction .NET API ,允许在...Install-Package GroupDocs.Redaction 通过 NuGet 包管理器安装 # 使用 C# 编辑...

    blog.groupdocs.com/zh/redaction/redact-text-and...
  9. Redige PDF e documenti scansionati in C# | Test...

    Redigere testo in PDF e altri documenti utilizzando C# nelle applicazioni .NET. Redigere i documenti per oscurare il testo e anche il testo all'interno delle immagini incorporate....Redaction fornisce la redazione del...Install-Package GroupDocs.Redaction Installa tramite Gestione...

    blog.groupdocs.com/it/redaction/redact-text-and...
  10. Save to stream | Documentation

    You might need to save a document to any custom file at any location on the local disc or a even a Stream. The following example demonstrates how to save a document to any location. final Redactor Redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform Redactions RedactorChangeLog result = Redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-to-stream/