Sort Score
Result 10 results
Languages All
Labels All
Results 401 - 410 of 851 for

java pdf signature security

(0.08 sec)
  1. Markdown | Documentation

    This article explains that how to extract Markdown formatted text from document page in Java....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/parser/java/markdown/
  2. Extracting common image information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/extracting-com...
  3. Delete indexed documents | Documentation

    GroupDocs.Search for Node.js has the ability to remove individual documents from the index that are indexed from a stream or structure....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition GroupDocs...

    docs.groupdocs.com/search/nodejs-java/delete-in...
  4. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images. The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 image Get the root metadata package Extract the native metadata package using the Jpeg2000RootPackage.getJpeg2000Package method Read the JPEG2000 comments advanced_usage.managing_metadata_for_specific_formats.image.jpeg2000.Jpeg2000ReadComments try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { Jpeg2000RootPackage root = metadata....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Working with metadata in MOV files | Documentation

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using the MovRootPackage.getMovPackage method Read the QuickTime atoms advanced_usage....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Rasterize document or page | Documentation

    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....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/watermark/java/rasterize-doc...
  7. Get file info | Documentation

    This article explains how to detect document file type, size and calculate pages count when annotate documents or images with GroupDocs.Comparison....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/comparison/java/get-file-info/
  8. 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 the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/working-with-b...
  9. OCR support | Documentation

    OCR support means the ability to connect an external module (library) for the recognition of printed text (optical character recognition, OCR) on images, either separate or embedded in documents. To connect OCR, you need to implement the IOcrConnector interface in the client code. The following example demonstrates how to implement the OCR connector using com.aspose.ocr library for text recognition in images. const indexFolder = 'c:/MyIndex/'; const documentsFolder = 'c:/MyDocuments/'; const query = 'Einstein'; // Creating an index const index = new groupdocs....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition GroupDocs...

    docs.groupdocs.com/search/nodejs-java/ocr-support/
  10. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Signature Product Solution GroupDocs...Us Contact Customers Legal Security Events Acquisition Ask AI...

    docs.groupdocs.com/metadata/java/working-with-d...