Sort Score
Result 10 results
Languages All
Labels All
Results 3,471 - 3,480 of 7,433 for

document comparison

(0.04 sec)
  1. Merge SVG files using C#

    This article will outline essential steps to merge SVG files using C# and offer a sample code example to illustrate the process of how to combine SVG files in C#....Comparison Product Family GroupDocs...method, expanding the merged document’s content Finish the merging...

    kb.groupdocs.com/merger/net/merge-svg-files-usi...
  2. Add Text Watermark to PPTX using C#

    Learn how to add text watermark to PPTX using C#, without extra software installation. Additionally, you'll get code required to insert text watermark to PPTX in C#....Comparison Product Family GroupDocs...semi-transparent text overlay added to a document or presentation to convey...

    kb.groupdocs.com/watermark/net/add-text-waterma...
  3. Common conversion options | Documentation

    This Documentation sections describe how to customize Document conversion process - convert specific Document pages, apply watermarks etc. when using GroupDocs.Conversion for .NET....Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/common-conver...
  4. Convert PST or OST documents to different forma...

    Follow this guide and learn how to convert contents of PST/OST Documents to different format based on content type using GroupDocs.Conversion for .NET....Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/convert-pst-o...
  5. Optimize the PDF file resources | Documentation

    This topic describes how to optimize PDF file using the GroupDocs.Viewer Java API to reduce size....Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/optimization-pdf...
  6. Load password-protected file | Documentation

    Load password-protected file In order to open password-protected Documents, you have to pass your password to LoadOptions class constructor or assign it to its Password property of an instance of LoadOptions class: LoadOptions loadOptions = new LoadOptions("mypassword"); final Redactor redactor = new Redactor("protected_sample.docx", loadOptions); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); redactor.save(); } finally { redactor.close(); }...Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-password...
  7. Cache results | Documentation

    This article contains caching use-cases with GroupDocs.Viewer within your .NET applications....Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/caching-results/
  8. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/clean-m...
  9. Load documents from different sources | Documen...

    Load Documents in Python apps with GroupDocs.Viewer. Explore practical use cases and examples....Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/python-net/loading-do...
  10. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Comparison Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-bm...