Sort Score
Result 10 results
Languages All
Labels All
Results 771 - 780 of 3,695 for

view

(0.07 sec)
  1. Optimize output for printing | GroupDocs

    This article explains how to optimize output HTML for printing.... view ( options ); } Was this page...

    docs.groupdocs.com/viewer/java/how-to-optimize-...
  2. GroupDocs.Metadata Product Family on GroupDocs ...

    GroupDocs.Metadata Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Metadata Product Family on GroupDocs Blog | Document Autom......Metadata Editor Discover ways to view and edit EPUB eBook metadata...Metadata Editor Discover ways to view and edit EPUB eBook metadata...

    blog.groupdocs.com/categories/groupdocs.metadat...
  3. Optimize the PDF file by removing unused resour...

    Optimize PDFs with GroupDocs.Viewer by removing unused resources and reducing file size....accessible and visible when viewing the document in any PDF viewer...remove_unused_resources (): view_options_1 = PdfViewOptions (...

    docs.groupdocs.com/viewer/python-net/optimizati...
  4. Arial Font redering error in viewer - Free Supp...

    We are seeing incorrect font rendering in document preViews/thumbnails. The current implementation already includes several font-related mitigations: Arial font files are already bundled in the repo fonts are copied in…...so we can reproduce the exact view options. Version of GroupDocs...

    forum.groupdocs.com/t/arial-font-redering-error...
  5. Getting known property descriptors | GroupDocs

    Extract information about known properties available in a particular package using GroupDocs.Metadata for Python via .NET.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/python-net/getting-...
  6. GroupDocs.Viewer for .NET Library Version 2.8.0...

    Recently we’ve updated our GroupDocs.Viewer for .NET library up to the version 2.8.0. In this post I’d like to discover some of the most remarkable updates implemented in this latest version: New Page Layout OptionsSo far, when Viewing documents, you had the following page layout options: Scroll View – pages are placed in a continuous chain, one after another. One page in a row – one page fit to client’s screen....Layout OptionsSo far, when viewing documents, you had the following...page layout options: # Scroll view – pages are placed in a continuous...

    blog.groupdocs.com/viewer/groupdocs-viewer-for-...
  7. Extracting Common Image Information | GroupDocs

    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 FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); 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); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/extracting-comm...
  8. Get document info | GroupDocs

    GroupDocs.Metadata allows users to get meta information of a document.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/python-net/get-docu...
  9. Set image size limits | GroupDocs

    This article shows how to set image size limits when rendering image to PNG or JPEG... view ( viewOptions ); } Was this...

    docs.groupdocs.com/viewer/java/set-image-size-l...
  10. Working with metadata in FLV files | GroupDocs

    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.... You are welcome to view and edit metadata of PDF, DOC...

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