Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 7,577 for

groupdocs viewer 24

(0.09 sec)
  1. Highlight text upon conversion to HTML in .NET ...

    Hi, I was wondering if there is any way to highlight certain words of document, when converting it to HTML with Groupdocs.Viewer. I tried using Groupdocs.Search after the conversion with Groupdocs.Viewer, but the resul…...NET GroupDocs.Viewer Product Family dotnet...document-annotation , document-viewer , document-search , text-parser...

    forum.groupdocs.com/t/highlight-text-upon-conve...
  2. Convert a JPG file passed as FileStream to PDF ...

    Hello, I noticed some very strange behavior when converting a certain jpg file. The problem is always reproducible using the basic pdf conversion sample, but only happens when the file is passed in as a stream. The fo…...NET GroupDocs.Conversion Product Family...Family Clemens_Pestuka January 24, 2020, 2:50pm 1 Hello, I noticed...

    forum.groupdocs.com/t/convert-a-jpg-file-passed...
  3. How to Convert MSG to PDF using C#

    In this topic, you will learn how to convert MSG to PDF using C# without installing third-party softwares. Also, we will provide code to export MSG to PDF in C#....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  4. Convert MSG to DOCX using Node.js

    Learn how to convert MSG to DOCX using Node.js with a simple guide. Follow easy steps to export MSG to DOCX in Node.js for seamless email-to-document conversion....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/conversion/nodejs/convert-msg-...
  5. How to Sign RTF with Barcode Signature using Java

    Effectively acquire instructions to sign RTF with Barcode signature using Java. Additionally, we will provide you code to create Barcode signature in RTF using Java....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/signature/java/how-to-sign-rtf...
  6. GroupDocs Editor Not Working with Kendo - Free ...

    Hello, I am working with Groupdocs Editor, previously we were using TinyMCE and now going ahead with Kendo as we are already using Kendo Editor in some of our functionalities. There were few errors in TinyMCE as well l…...GroupDocs Editor Not Working with Kendo GroupDocs.Editor Product...18, 2024, 1:30pm 1 Hello, I am working with GroupDocs Editor...

    forum.groupdocs.com/t/groupdocs-editor-not-work...
  7. How to Use the GetChanges Method from the Compa...

    This article explains how to use the GetChanges method from the ComparisonApi in the Groupdocs SDK. Requirements PHP 5.3 Apache ModRewrite PHP Curl extension PHP Sockets extension (php_sockets.dll) Groupdocs PHP SDK composer.phar (Download from http://getcomposer.org/download/ or use the included version.) FatFree framework https://github.com/bcosca/fatfree We already know how to install the Fatfree framework and prepare for creating the sample from a previous article. The sample that we create in this article is not much different from other Fatfree examples....the ComparisonApi in the GroupDocs SDK . Requirements # PHP 5...extension (php_sockets.dll) GroupDocs PHP SDK composer.phar (Download...

    blog.groupdocs.com/comparison/how-to-use-the-ge...
  8. 在 ASP.NET Core MVC 中为 140 多种文件格式创建文档查看器

    在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 ASP.NET MVC 中创建通用文档查看器的文章。 我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 Groupdocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PDF、Word、Excel、PowerPoint、Visio、CAD、Outlook 和许多其他流行的格式。 为什么选择 .NET Core? .NET Core 是 Microsoft 对 .NET 生态系统的重要补充。它使开发跨平台应用程序成为可能,而无需开发人员进行任何额外的努力。这就是我选择 .NET Core 作为目标框架的原因。 在 ASP.NET Core 中创建文档查看器的步骤 1. 打开 Visual Studio 并启动一个新项目。 2. 从项目类型中选择 .NET Core,从模板中选择 ASP.NET Core Web Application。 3. 选择 Web Application (Model-View-Controller) 并点击 Ok 按钮。 4. 从 NuGet 安装 Groupdocs.Viewer。 5. 打开 Views/Home/Index.cshtml 文件并将其内容替换为以下内容: @{ ViewData["Title"] = "Home Page"; }