Sort Score
Result 10 results
Languages All
Labels All
Results 2,221 - 2,230 of 5,074 for

groupdocs.viewer,

(0.16 sec)
  1. How to Convert PDF to HTML using C#

    Learn how to convert PDF to HTML using C# on any platform without any third-party software. Check out the guide and sample code to convert PDF to HTML in C#....Learn how to convert PDF to HTML using C# on any platform without any third-party software. Check out the guide and sample code to convert PDF to HTML in C#.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  2. GroupDocs.Total Product Family

    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....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.

    blog.groupdocs.com/categories/groupdocs.total-p...
  3. Groupdocs Viewer 8.0.7 - Wrong page no displaye...

    Hi, We recently moved to 8.0.7 viewer, so far its working fine. Just observed following random problem. Issue Wrong page no is displayed initially when the document is opened in viewer. Issue is observed when our web s…...Hi, We recently moved to 8.0.7 viewer, so far its working fine. Just observed following random problem. Issue Wrong page no is displayed initially when the document is opened in viewer. Issue is observed when our web s…

    forum.groupdocs.com/t/groupdocs-viewer-8-0-7-wr...
  4. Convert JPG to PDF using C#

    By closely adhering to this topic, you will gain knowledge how to convert JPG to PDF using C#. Also, we will provide you with the code to export JPG to PDF using C#....By closely adhering to this topic, you will gain knowledge how to convert JPG to PDF using C#. Also, we will provide you with the code to export JPG to PDF using C#.

    kb.groupdocs.com/conversion/net/convert-jpg-to-...
  5. How to Convert XLSX to DOCX using C#

    In this article, you will be guided on how to convert XLSX to DOCX using C#. Also, a code example will be provided to demonstrate how to export XLSX to DOCX in C#....In this article, you will be guided on how to convert XLSX to DOCX using C#. Also, a code example will be provided to demonstrate how to export XLSX to DOCX in C#.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  6. How to Convert ODT to PPTX using Java

    In this tutorial, we will discover how to convert ODT to PPTX using Java without installing extra software installation along with code to export ODT to PPTX in Java....In this tutorial, we will discover how to convert ODT to PPTX using Java without installing extra software installation along with code to export ODT to PPTX in Java.

    kb.groupdocs.com/conversion/java/how-to-convert...
  7. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser.

    docs.groupdocs.com/parser/java/load-document-fr...
  8. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....GroupDocs.Metadata allows users to get meta information of a document.

    docs.groupdocs.com/metadata/python-net/get-docu...
  9. 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 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:...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<ImageRootPackage>(); 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:

    docs.groupdocs.com/metadata/net/extracting-comm...
  10. Get document info | Documentation

    This article explains how to get document information...This article explains how to get document information

    docs.groupdocs.com/watermark/net/get-document-i...