Sort Score
Result 10 results
Languages All
Labels All
Results 5,761 - 5,770 of 36,529 for

documents

(0.14 sec)
  1. Inserting Images Dynamically | Documentation

    Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. You can insert images to your reports dynamically using image tags. To declare a dynamically inserted image within your template, do the following steps: Add a textbox to your template at the place where you want an image to be inserted. Set common image attributes such as frame, size, and others for the textbox, making the textbox look like a blank inserted image....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...will help us improve our documentation. Analyzing your prompt,...

    docs.groupdocs.com/assembly/net/inserting-image...
  2. Licensing and evaluation | Documentation

    GroupDocs.Total provides different plans for purchasing or offers a Free Trial and a 30-day Temporary License for evaluation....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Total Product...will help us improve our documentation. On this page Analyzing...

    docs.groupdocs.com/total/net/licensing-and-eval...
  3. Show gap lines instead of changes | Documentation

    This article explains how to adjust the display of the output document so that the changed content is replaced with empty lines in GroupDocs.Comparison for Java....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...adjust appearance of the output document. By default, changes from...

    docs.groupdocs.com/comparison/java/show-gap-lines/
  4. Working with metadata in JPEG images | Document...

    Reading Photoshop metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a JPEG image. For more information on the Photoshop file format and metadata blocks that can be attached to images of different formats please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a JPEG image....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Please visit the following documentation section for more information:...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Load file from stream | Documentation

    This article demonstrates how to convert file presented as a stream using GroupDocs.Conversion for .NET API....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...will help us improve our documentation. Analyzing your prompt,...

    docs.groupdocs.com/conversion/net/load-file-fro...
  8. Working with metadata in PNG images | Documenta...

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iDocumentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  10. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...GitHub examples: Free online document metadata management App Along...

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