Sort Score
Result 10 results
Languages All
Labels All
Results 1,451 - 1,460 of 31,651 for

redact

(0.06 sec)
  1. GroupDocs.Annotation Product Family

    ค้นหาคำตอบเกี่ยวกับการใส่คำอธิบายประกอบในเอกสารดิจิทัลและรูปภาพประเภทต่างๆ โดยใช้โค้ดบนทุกแพลตฟอร์ม...Redaction Product Family GroupDocs.Annotation...วิธีเพิ่มคำอธิบายประกอบ Text Redaction ใน PDF โดยใช้ Java วิธีเพ...

    kb.groupdocs.com/th/annotation/
  2. Use advanced logging | GroupDocs

    You can implement ILogger interface from com.groupdocs.Redaction.options package. This interface requires to implement three methods: import com.groupdocs.Redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/use-advanced-...
  3. Supported Platforms | GroupDocs

    Learn about Java version requirements and supported operating systems for GroupDocs.Redaction for Java. Minimum JDK 8 required, with support for Windows, Linux, and macOS platforms....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/system-requir...
  4. 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...
  5. Categories on GroupDocs Blog | Document Automat...

    Categories on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Categories on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Gro......Redaction Releases GroupDocs.Parser...Product Family GroupDocs.Redaction Випуски GroupDocs.Metadata...

    blog.groupdocs.com/uk/categories/index.xml
  6. C# kullanarak PDF'de Metin Bul ve Değiştir | PD...

    Büyük/küçük harf duyarlılığı ve C# kullanarak RegEx ile PDF belgelerindeki belirli metinleri, sözcükleri, tümceleri programlı olarak bulun. PDF dosyalarını yeniden düzenlemek için metni değiştirin veya gizleyin....Redaction for .NET’i gösterir. API hakkında.../packages/groupdocs.redaction). PM> Install-Package GroupDocs.Redaction Redaksiyon...

    blog.groupdocs.com/tr/redaction/find-and-replac...
  7. C# Kullanarak Word Belgelerinde Sözcükleri Bul ...

    C# kullanarak Word DOC/DOCX dosyalarındaki metinleri, sözcükleri, tümceleri bulun, değiştirin veya gizleyin. .NET Redaksiyon API'si ile metin, büyük/küçük harfe duyarlı ve RegEx aramasını düzeltin ve gerçekleştirin....Redaction for .NET, çeşitli dosya biçimlerindeki.../packages/groupdocs.redaction). PM> Install-Package GroupDocs.Redaction Bu süreçte...

    blog.groupdocs.com/tr/redaction/find-and-replac...
  8. Extend supported extensions list | GroupDocs

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/extend-support...
  9. Zoek en vervang tekst in PDF in Java | Vervang ...

    Vind programmatisch bepaalde tekst, woorden, woordgroepen in PDF-documenten met hoofdlettergevoeligheid en RegEx in Java. Vervang of verberg de tekst om PDF-bestanden te redigeren....tekst met gekleurd vak Java Redaction API voor het vervangen van...groupdocs</groupId> <artifactId>groupdocs-redaction</artifactId> <version>21.12</version>...

    blog.groupdocs.com/nl/redaction/find-and-replac...
  10. Save to stream | GroupDocs

    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/