Sort Score
Result 10 results
Languages All
Labels All
Results 2,171 - 2,180 of 5,022 for

file merger

(0.08 sec)
  1. Load from a local disk | Documentation

    The following example demonstrates how to load a File from a local disk. advanced_usage.loading_Files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata metadata = new Metadata(Constants.InputOne)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples...Merger Product Solution GroupDocs.../ Advanced Usage / Loading files / Load from a local disk Load...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  2. Load from a stream | Documentation

    This example demonstrates how to load a File from a stream. advanced_usage.loading_Files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for ....Merger Product Solution GroupDocs.../ Advanced Usage / Loading files / Load from a stream Load from...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  3. Load from a local disk | Documentation

    The following example demonstrates how to load File from local disk....Merger Product Solution GroupDocs.../ Advanced Usage / Loading files / Load from a local disk Load...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  4. Features Overview | Documentation

    A Java metadata API can be effectively used in removing, updating and reading metadata in a variety of formats. It is very effective in removing metadata from photos. Supporting iptc metadata, exif metadata and xmp metadata....Merger Product Solution GroupDocs...from images, audio and video files Calculating common document...

    docs.groupdocs.com/metadata/java/features-overv...
  5. How to Convert PDF to Word in Java

    Take look at how to convert PDF to Word in Java for document conversion and use the sample code to convert PDF to DOCX using Java in your projects straight away....Merger Product Family GroupDocs.Redaction...class and load the source PDF file Create an instance of the WordProcessingConver...

    kb.groupdocs.com/conversion/java/how-to-convert...
  6. GroupDocs.Comparison for Python via .NET | Docu...

    GroupDocs.Compairson for Python developer documentation. Learn how to diff docx, pptx, and pdf Files using Python....Merger Product Solution GroupDocs...differences between source and target files across paragraph, word, and...

    docs.groupdocs.com/comparison/python-net/
  7. How to Run Examples | Documentation

    We offer multiple solutions on how you can run GroupDocs.Editor examples, by building your own or using our back-end or front-end Node.js examples out-of-the-box....Merger Product Solution GroupDocs...can either download the ZIP file or clone the repository of Github...

    docs.groupdocs.com/editor/nodejs-java/how-to-ru...
  8. GroupDocs.Watermark for Java | Documentation

    A Java API for adding watermarks to the documents of different File formats. It provides the effective watermarking methods that allow you to add watermarks that are hard to be automatically removed by third-party tools....Merger Product Solution GroupDocs...remove watermarks in supported file formats. GroupDocs.Watermark...

    docs.groupdocs.com/watermark/java/
  9. GroupDocs.Search for Java | Documentation

    GroupDocs.Search for Java is a fascinating document search API. It extracts text and metadata from documents and performs advanced searching and indexing operations on the basis of fuzzy and synonym algorithm...Merger Product Solution GroupDocs...occurrences, basic metadata fields, file names, document types and much...

    docs.groupdocs.com/search/java/
  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....Merger Product Solution GroupDocs...save a document to any custom file at any location on the local...

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