Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 32,127 for

groupdocs.search

(0.3 sec)
  1. Installation | GroupDocs

    GroupDocs hosts all Java APIs on GroupDocs Repository. You use the GroupDocs.Annotation for Java API directly in your Maven projects with simple configurations. Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml as follows: XML GroupDocs Artifact Repository GroupDocs Artifact Repository https://releases.groupdocs.com/java/repo/ Define GroupDocs.Annotation for Java API Dependency Then define GroupDocs.Annotation for Java API dependency in your pom.xml as follows:...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/annotation/java/installation/
  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.Search Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/save-overwrit...
  3. NullReferenceException when extracting PDF file...

    Hello, We are getting an exception when extractor some PDF files… System.NullReferenceException: Object reference not set to an instance of an object.\r\n at Aspose.Pdf.Facades.PdfExtractor.GetAttachNames()\r\n at …...when extracting PDF files GroupDocs.Search Product Family dotnet...This issue is fixed in GroupDocs.Search for .NET 25.9 . jamsharp...

    forum.groupdocs.com/t/nullreferenceexception-wh...
  4. Categories

    查找API的答案 GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family Group......Metadata Product Family GroupDocs.Search Product Family GroupDocs...

    kb.groupdocs.com/zh/categories/page/9/
  5. Searching and modifying watermarks | GroupDocs

    GroupDocs.Watermark API allows you to search the possible watermarks placed in any document. You can also search the watermarks that are added using some third-party tool. The found possible watermarks can be removed or their properties can be changed. For more details please refer to the following guides:...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/watermark/java/searching-and...
  6. Working with Table Reports - Filtered Ordered G...

    Articles in this section...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/assembly/java/working-with-t...
  7. Images | GroupDocs

    Learn about managing metadata for Images formats....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/images/
  8. GroupDocs.Signature for Python via .NET | Group...

    GroupDocs.Signature for Python via .NET is an easy to use electronic signature API designed for C#/.NET applications...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/signature/python-net/
  9. Advanced usage | GroupDocs

    Learn about advanced GroupDocs.Watermark usage. Please find advanced details how to customize your watermarks, search, modify and remove existing watermarks. Articles in this section Loading documents Adding watermarks Saving documents Searching and modifying watermarks More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Watermark for .NET examples GroupDocs.Watermark for Java examples Free online document watermarking App Along with a full-featured ....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/watermark/net/advanced-usage/
  10. Saving image strategy | GroupDocs

    GroupDocs.Markdown provides several strategies for handling images during conversion. Set the ImageExportStrategy property on ConvertOptions to control the behavior: Base64 embedding – inline images as data URIs using ExportImagesAsBase64Strategy. File system export – save images to a directory using ExportImagesToFileSystemStrategy. Use the ImagesRelativePath property to control the relative path written into Markdown image links. Skip images – omit all images from the output using SkipImagesStrategy. Custom handler – implement IImageSavingHandler for full control over image saving, including renaming and custom storage via CustomImagesStrategy....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/markdown/net/strategy/