Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 236 for

chunk

(0.05 sec)
  1. search in chunk on GroupDocs Blog | Document Au...

    search in Chunk on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in search in Chunk on GroupDocs Blog | Document Automation Solutions for .NET & Java Deve......search in chunk on GroupDocs Blog | Document Automation Solutions...Recent content in search in chunk on GroupDocs Blog | Document...

    blog.groupdocs.com/fr/tag/search-in-chunk/index...
  2. 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.getPngPackage Read the PNG metadata properties advanced_usage.managing_metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = metadata.getRootPackageGeneric(); for (PngTextChunk Chunk : root.getPngPackage().getTextChunks()) { System.out.println(Chunk.getKeyword()); System.out.println(Chunk.getText()); if (Chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) Chunk; System....getRootPackageGeneri (); for ( PngTextChunk chunk : root . getPngPackage (). getTextChunks...println ( chunk . getKeyword ()); System . out . println ( chunk . getText...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. PNG Metadata Editor – View & Edit PNG Properties

    Discover ways to view and edit PNG metadata. Either edit PNG metadata online or do it programmatically using C# & Java....otPackage>(); foreach (var chunk in root.PngPackage.TextChunks)...WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var...

    blog.groupdocs.com/metadata/view-edit-png-metad...
  4. 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 !...PngRootPackage >(); foreach ( var chunk in root . PngPackage . TextChunks...WriteLine ( chunk . Keyword ); Console . WriteLine ( chunk . Text...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. Working with metadata in AVI files | Documentation

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System.... } Extract RIFF INFO chunk metadata The AVI format is derived...with metadata in the INFO chunk. The chunk may include information...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Handling metadata in WAV files | Documentation

    This article explains about the API supports extracting metadata from WAV files...SampleRate ); } } Extract RIFF INFO chunk metadata The WAV format is derived...with metadata in the INFO chunk. The chunk may include information...

    docs.groupdocs.com/metadata/net/handling-metada...
  7. Working with metadata in AVI files | Documentation

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using AviRootPackage.Header Read the AVI header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Avi.AviReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputAvi)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.AviHeaderFlags); Console.WriteLine(root.Header.Height); Console.WriteLine(root.Header.Width); Console.WriteLine(root.Header.TotalFrames); Console.WriteLine(root.Header.InitialFrames); Console.WriteLine(root.Header.MaxBytesPerSec); Console.WriteLine(root.Header.PaddingGranularity); Console.WriteLine(root.Header.Streams); // .... } Extract RIFF INFO chunk metadata The AVI format is derived...with metadata in the INFO chunk. The chunk may include information...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Handling metadata in WAV files | Documentation

    This article explains about the API supports extracting metadata from WAV files...()); } } Extract RIFF INFO chunk metadata The WAV format is derived...with metadata in the INFO chunk. The chunk may include information...

    docs.groupdocs.com/metadata/java/handling-metad...
  9. Search Text in Folders by Indexing using C# | U...

    Search text by parts, text indexing, specify the number of search threads, and get search time to get search results in C# using GroupDocs Search API for .NET Developers....index and then search text in chunks from the mentioned folder in...perform the search by parts/chunks. Create the Index with your...

    blog.groupdocs.com/search/search-text-by-indexi...
  10. Search by chunks | Documentation

    This article gives the knowledge about the ability to perform search by Chunks using Java search API....Searching / Search by chunks Search by chunks Leave feedback The...ability to perform search by chunks. This means that in one call...

    docs.groupdocs.com/search/java/search-by-chunks/