Sort Score
Result 10 results
Languages All
Labels All
Results 4,441 - 4,450 of 8,138 for

document conversion api

(0.1 sec)
  1. Optimize the PDF file resources | GroupDocs

    This topic describes how to optimize PDF file using the GroupDocs.Viewer .NET Api (C#) to reduce size....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  2. Reduce image quality | GroupDocs

    Compress images in PDF files to reduce size. Adjust image quality (0-100%) using the GroupDocs.Viewer Python Api....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/python-net/optimizati...
  3. Work with Word Track Changes | GroupDocs

    Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/comparison/python-net/word-t...
  4. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

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

    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 try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/java/getting-known-...
  6. Getting known property descriptors | GroupDocs

    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;iConversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  7. Render archives as HTML, PDF, and image files (...

    This topic describes how to use the GroupDocs.Viewer Java Api to convert archive files to HTML, PDF, PNG, and JPEG formats....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/java/old-render-archi...
  8. GroupDocs Blog | Document Automation Solutions ...

    Document Automation Apis to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify Documents of almost all the popular file formats....Conversion for .NET 25.9 带来了字体转换功能、更灵活的电子表格/文本加载选项、分块的...现已发布,包含性能提升、改进的文档以及错误修复。 推出一个 .NET API,用于将流行的文档格式导出为干净的 Markdown。 GroupDocs...

    blog.groupdocs.com/zh/page/6/
  9. Search index settings | GroupDocs

    This page contains a description of all index settings that can be specified in an instance of the IndexSettings class....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/search/net/search-index-sett...
  10. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The GroupDocs.Metadata Api supports extracting format-specific information from MKV files. The following are the steps to read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using MatroskaRootPackage.MatroskaPackage Read the Matroska metadata properties on different levels of the format structure AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Matroska.MatroskaReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputMkv)) { var root = metadata.GetRootPackage(); // Read the EBML header Console....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/metadata/net/working-with-me...