Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 76 for

metadata copy java

(1.21 sec)
  1. Archive

    archives...Adobe File Metadata by Hand: XMP Automation in Java August 11...Production Teams Manage XMP Metadata in PSD and AI Files with ...

    blog.groupdocs.com/archives/
  2. Save overwriting original file | GroupDocs

    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....Metadata Product Solution GroupDocs...Family / GroupDocs.Redaction for Java / Developer Guide / Advanced...

    docs.groupdocs.com/redaction/java/save-overwrit...
  3. Extract data with GroupDocs.Parser | GroupDocs

    Extract plain text, single pages, formatted Markdown and document information from Word, PDF and 170+ other formats with GroupDocs.Total for Node.js via Java, with runnable JavaScript examples and downloadable input and output files....Metadata Product Solution GroupDocs...GroupDocs.Total for Node.js via Java / Developer guide / Parser Extract...

    docs.groupdocs.com/total/nodejs-java/developer-...
  4. Extract data with GroupDocs.Parser | GroupDocs

    Extract plain text, single pages, formatted Markdown and document information from Word, PDF and 170+ other formats with GroupDocs.Total for Java, with runnable Java examples and downloadable input and output files....Metadata Product Solution GroupDocs...Family / GroupDocs.Total for Java / Developer guide / Parser Extract...

    docs.groupdocs.com/total/java/developer-guide/p...
  5. Merge Password-Protected PDFs with GroupDocs.Me...

    Practical guide showing how to unlock, merge, and re‑protect PDFs using GroupDocs.Merger for Java. Step‑by‑step tutorial with working code examples....Merger workflow for Java that unlocks heterogeneous PDFs...combined PDF in under 30 lines of Java code. When should I merge password‑protected...

    blog.groupdocs.com/groupdocs.merger/password-me...
  6. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...Viewer for Java 3.2.2. The latest version of...Viewer for Java 3.2.2. Document Viewer API for Java - FeaturesFollowing...

    blog.groupdocs.com/groupdocs.blog/page/88/
  7. Render PDF documents as HTML and image files | ...

    This topic describes how to use the GroupDocs.Viewer Java API to convert PDF files to HTML, PNG, and JPEG formats....Metadata Product Solution GroupDocs...Family / GroupDocs.Viewer for Java / Document rendering basics...

    docs.groupdocs.com/viewer/java/render-pdf-docum...
  8. AI Watermarking: Protect Documents with Context...

    Discover how to protect documents with AI-powered watermarks using GroupDocs.Watermark. Learn to add, create, and customize watermarks automatically for enhanced document security and content protection....and legal notices – no more copy-pasting wrong case numbers!...Document Analysis : Extract metadata including title, author, creation...

    blog.groupdocs.com/watermark/ai-driven-dynamic-...
  9. Rasterize document or page | GroupDocs

    The watermark can be removed from the PDF documents using third-party tools. However, if you want to remove a watermark that is almost impossible to remove, you can rasterize pdf documents. GroupDocs.Watermark provides the feature to convert all the pages of a PDF document to raster images with only one line of code....Metadata Product Solution GroupDocs...Family / GroupDocs.Watermark for Java / Developer Guide / Advanced...

    docs.groupdocs.com/watermark/java/rasterize-doc...
  10. Load document from stream | GroupDocs

    There might be cases when the document is presented only as a stream (without a Copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....Metadata Product Solution GroupDocs...Family / GroupDocs.Parser for Java / Developer Guide / Advanced...

    docs.groupdocs.com/parser/java/load-document-fr...