Sort Score
Result 10 results
Languages All
Labels All
Results 2,501 - 2,510 of 9,898 for

text

(0.03 sec)
  1. Introducing Metadata Signatures in GroupDocs.Si...

    We are delighted to announce another monthly release of GroupDocs.Signature for .NET 18.9 with multitude of new features like ability to save Image documents as PDF and signing of PDF with Metadata Signatures. Furthermore, this monthly release also comes up with few fixes, we therefore, recommend you to download the new version of API and evaluate the exciting features to enhance document e-signing experience. Features Metadata Signatures for PDFThe Metadata Signature is the additional document property that contains special attributes/tags to keep non visual information inside the document....document: # // setup options with text of signature PdfMetadataSignOptio...of the API. # MatchType for Text Verification OptionsNow API...

    blog.groupdocs.com/signature/groupdocs.signatur...
  2. Announcing New Features of the GroupDocs' Annot...

    GroupDocs Annotation is a web-based app that allows users to annotate PDF, Word, Excel and PowerPoint documents online, from a web-browser. With this app, you and your colleagues and partners can review and annotate a document simultaneously, in real time. We’re constantly working to improve the app’s interface and would like to introduce a new set of features we’ve recently designed and implemented. Add and Manage NotesGroupDocs Annotation lets you add notes throughout a document which show up as numbered markers....allows you to strike out text and add new text sections. [caption id=“attachment_246”...

    blog.groupdocs.com/annotation/announcing-new-fe...
  3. Python Tiling Watermarks: 7 Examples to Protect...

    Master Python tiling watermarks with 7 practical examples. Learn to add, create, and customize watermarks for document security, remove watermarks, and protect files using GroupDocs.Watermark API for enterprise content protection....Example 1: Basic Confidential Text Watermark (Perfect for Beginners)...Example 1: Basic Confidential Text Watermark (Perfect for Beginners)...

    blog.groupdocs.com/watermark/tiling-watermark-p...
  4. Specify encoding when loading documents | Docum...

    This article explains how to specify encoding when loading documents with GroupDocs.Viewer within your .NET applications....to open file in Notepad the text これはShift_JISエンコード用のサンプルテキストです。...specific to Shift_JIS . To render text file properly you can set encoding...

    docs.groupdocs.com/viewer/net/specify-encoding-...
  5. Composing signature with solid brush background...

     This article explains how to fill signature background with solid brush...filling signature background for Text and Stamp signature types Here...Here are the steps to add Text signature into document with GroupDocs...

    docs.groupdocs.com/signature/net/composing-sign...
  6. Introducing GroupDocs.Assembly for Java | Docum...

    Introduction to GroupDocs.Assembly for Java GroupDocs.Assembly for Java is a Java API engine designed to generate documents based on templates. In essence, the engine accepts a template document and some data, assembles data with the template document as per syntax defined by the template document and then, generates the output document in the template’s format or in the specified output format. Since GroupDocs.Assembly for Java can generate documents based on a data source, essentially it serves two purposes: Document Automation and Report Generation....use segments of pre-existing text and/or data to assemble a new...automate all conditional text, variable text, and data contained within...

    docs.groupdocs.com/assembly/java/introducing-gr...
  7. Two Ways of Uploading Files into a GroupDocs Ac...

    Working with GroupDocs SDK we usually need a GUID to work with a document. But it’s not very comfortable for users to work with GUIDs. So in your app, you can use two methods to upload a file to a GroupDocs account and get it’s GUID programmatically. 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....http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>Upload</title>...<title>Upload</title> <style type="text/css"> {{ Web::minify('templates/'...

    blog.groupdocs.com/total/two-ways-of-uploading-...
  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"; }