Sort Score
Result 10 results
Languages All
Labels All
Results 5,471 - 5,480 of 10,565 for

document redaction

(0.05 sec)
  1. Working with metadata in TIFF images | Document...

    Working with XMP metadata GroupDocs.Metadata for .NET allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF metadata section. Working with IPTC metadata GroupDocs.Metadata for .NET is also able to work with IPTC metadata in TIFF images....Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Loading Multiple DocumentTable Objects from a S...

    Note The code uses some of the objects defined in The Business Layer. Loading Multiple DocumentTable Objects GroupDocs.Assembly for .NET API provides the ability to load multiple DocumentTable objects from a single file as a single operation. Following classes and interfaces of the GroupDocs.Assembly.Data namespace have been added: DocumentTableSet DocumentTableCollection IDocumentTableLoadHandler DocumentTableLoadArgs. Moreover, following properties of the GroupDocs.Assembly.Data.DocumentTable class have been added: Name IndexInDocument Data Source Document Multiple Tables Data....Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/loading-multipl...
  3. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/get-supported-...
  4. Optimize a PDF file for a browser | Documentation

    This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET API (C#) for web browser or to reduce size....Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  5. GroupDocs.Conversion Product Family

    Find answers about converting Documents and images of various types using code on any platform....Redaction Product Family GroupDocs.Conversion...in C# How to Convert Word Document to Image in Java How to Convert...

    kb.groupdocs.com/conversion/page/11/
  6. GroupDocs.Assembly for Java 19.3 Release Notes ...

    This page contains release notes for GroupDocs.Assembly for Java 19.3. Major Features Supported in-lining of syntax error messages into templates instead of exception throwing. Full List of Features Covering all Changes in this Release Key Summary Category ASSEMBLYNET-99  Provide an ability to inline template syntax errors in generated Word Processing Documents instead of exception throwing  Feature  ASSEMBLYNET-100  Provide an ability to inline template syntax errors in generated Spreadsheet Documents instead of exception throwing  Feature  ASSEMBLYNET-101  Provide an ability to inline template syntax errors in generated Presentation Documents instead of exception throwing  Feature  ASSEMBLYNET-102  Provide an ability to inline template syntax errors in generated Email Documents instead of exception throwing  Feature  ASSEMBLYNET-103  Provide an ability to inline template syntax errors in generated Plain Text Documents instead of exception throwing  Feature  ASSEMBLYNET-107  Allow null values for image tag expressions  Enhancement  ASSEMBLYNET-108  Allow null values for doc tag expressions  Enhancement  Public API and Backward Incompatible Changes This section lists public API changes that were introduced in GroupDocs....Redaction Product Solution GroupDocs...generated Word Processing documents instead of exception throwing...

    docs.groupdocs.com/assembly/java/groupdocs-asse...
  7. Working with metadata in HEIF/HEIC images | Doc...

    Working with XMP metadata GroupDocs.Metadata for .NET allows managing XMP metadata in HEIF/HEIC images. For more details please refer to the following guide: Working with XMP metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in HEIF/HEIC images. Please find appropriate code samples in the Working with EXIF metadata section. More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Loading of template documents from HTML with re...

    Note This feature is supported by version 19.5. or greater Note The code uses some of the objects defined in The Business Layer. Loading of template Documents from HTML with resources GroupDocs.Assembly provides a great feature which is loading of HTML template Documents referencing external resource files to be assembled and saved to non-HTML formats. Since version 19.5, when loading an HTML Document from a file, its containing folder is used as a base URI to resolve external resource files’ relative URIs to absolute ones by default as shown in the following example....Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/loading-of-tem...
  9. List and print all supported file types | Docum...

    This article explains how to list and print file types supported by GroupDocs.Viewer for .NET...Redaction Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/how-to-list-and-p...
  10. Use advanced logging | Documentation

    You can implement ILogger interface from com.groupdocs.Redaction.options package. This interface requires to implement three methods: import com.groupdocs.Redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Redaction Product Solution GroupDocs...Acquisition GroupDocs Documentation / GroupDocs.Redaction Product Family...

    docs.groupdocs.com/redaction/java/use-advanced-...