Sort Score
Result 10 results
Languages All
Labels All
Results 401 - 410 of 10,378 for

new

(0.07 sec)
  1. C# Diff Library - Compare Text Files (PDF, DOC(...

    It compares and merges Microsoft Word, Excel, PowerPoint, OpenDocument ODT, PDF, Text and HTML documents. Document comparison API compares content to detect changes for words, paragraphs and characters....# using (Comparer comparer = new Comparer(“source.docx”)) { comparer...# using (Comparer comparer = new Comparer(File.OpenRead(“source...

    blog.groupdocs.com/comparison/groupdocs-compari...
  2. Working with metadata in EPUB e-books | Documen...

    What is EPUB? EPUB is an e-book file format that uses the “.epub” file extension. EPUB is supported by many e-readers, and compatible software is available for most smartphones, tablets, and computers. Note Please find more information on the format at https://en.wikipedia.org/wiki/EPUB Reading EPUB format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from EPUB files. The following are the steps to read native EPUB metadata. Load an EPUB file Get the root metadata package Extract the native metadata package using the EpubRootPackage....Consulting Blog Knowledge Base New Releases Status Websites aspose...EpubReadNativeMetada try ( Metadata metadata = new Metadata ( Constants . InputEpub...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. Split document | Documentation

    This guide describes how to split document of PDF, Word, Excel, PowerPoint and many other formats into several resultant documents using GroupDocs.Merger API....Consulting Blog Knowledge Base New Releases Status Websites aspose...splitOptions = new SplitOptions ( filePathOut , new int [] { 3 ...

    docs.groupdocs.com/merger/net/split-document/
  4. Load from Stream | Documentation

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = New FileInputStream("sample.docx"); try { final Redactor redactor = New Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(New DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Consulting Blog Knowledge Base New Releases Status Websites aspose...final FileInputStream stream = new FileInputStream ( "sample.docx"...

    docs.groupdocs.com/redaction/java/load-from-str...
  5. Load from Amazon S3 Storage | Documentation

    This article explains how to load a document from Amazon S3 Storage with GroupDocs.Viewer within your Java applications....Consulting Blog Knowledge Base New Releases Status Websites aspose...client = new AmazonS3Client (); GetObjectRequest request = new GetObjectRequest...

    docs.groupdocs.com/viewer/java/load-document-fr...
  6. 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....Consulting Blog Knowledge Base New Releases Status Websites aspose.... copy ( new File ( "Sample.docx" ). toPath (), new File ( "OverwrittenSample...

    docs.groupdocs.com/redaction/java/save-overwrit...
  7. Sign documents with encrypted QR-code text | Do...

    This article explains how to create encrypted QR-code electronic signature with GroupDocs.Signature API...Consulting Blog Knowledge Base New Releases Status Websites aspose...GroupDocs.Signature: Create new instance of class and pass source...

    docs.groupdocs.com/signature/net/sign-documents...
  8. Extract Formatted Text from CHM Documents using...

    We keep looking forward to bringing you more features and therefore, we have released version 18.3 of GroupDocs.Text for .NET providing the support of extracting formatted text from CHM documents. The latest version also allows you to extract text by pages and extract table of content from CHM documents. The following sections will provide you the details about the New features of the API. Extracting Formatted Text from CHM Documents GroupDocs....provide you the details about the new features of the API. Extracting...documents using (var extractor = new ChmFormattedTextExtr(stream))...

    blog.groupdocs.com/parser/extract-formatted-tex...
  9. Sign document with extensions | Documentation

    This article shows how to create electronic signatures with additional visual extensions...Consulting Blog Knowledge Base New Releases Status Websites aspose...GroupDocs.Signature: Create new instance of class and pass source...

    docs.groupdocs.com/signature/java/sign-document...
  10. Load PDF document with options | Documentation

    Learn this article and check how to load and convert PDF documents with advanced options using GroupDocs.Conversion for Java API....Consulting Blog Knowledge Base New Releases Status Websites aspose...PdfLoadOptions loadOptions = new PdfLoadOptions (); loadOptions...

    docs.groupdocs.com/conversion/java/load-pdf-doc...