Sort Score
Result 10 results
Languages All
Labels All
Results 8,881 - 8,890 of 9,027 for

image

(0.05 sec)
  1. Comment comparer des fichiers PDF avec Java - U...

    Comparez deux fichiers PDF ou plus à l'aide de l'API Java avec l'API de comparaison de documents. Mettez en surbrillance les différences et acceptez/rejetez les modifications même si elles sont protégées par un mot de passe....différences Java Comparaison d’images à l’aide de Java et repérer...

    blog.groupdocs.com/fr/comparison/guide-to-compa...
  2. Working with metadata in Presentations | Docume...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported Document Formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage....PPT, PPTX, XLS, XLSX, emails, images and more with our free online...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Introduction | Documentation

    This is an introduction to editing documents, explaining the main stages of document opening, editing, and saving results within Node.js via Java applications....different options, stylesheets, images, fonts, save the HTML document...

    docs.groupdocs.com/editor/nodejs-java/introduct...
  4. 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....PPT, PPTX, XLS, XLSX, emails, images and more with our free online...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. Visualize arquivos CAD usando a API Java | Conv...

    Construa seu visualizador de arquivos CAD em Java. Converta DWG, DGN para renderizar como HTML, JPG, PNG ou PDF usando a API Java do visualizador de documentos do GroupDocs....de imagem em formato HTML, Image ou PDF para visualizar esses...

    blog.groupdocs.com/pt/viewer/viewing-cad-docume...
  6. C# を使用して Word 文書に透かしを入れる |テキストと画像の透かし

    C# を使用して Word 文書にテキストと画像の透かしを追加します。 .NET API を使用して、プログラムでページにウォーターマークを適用します。...= new ImageWatermark("path/image.png") { Opacity = .5, HorizontalAlignment...

    blog.groupdocs.com/ja/watermark/watermark-word-...
  7. Java を使用してデジタル署名証明書で PDF に署名する

    Java で証明書を使用して PDF にデジタル署名する技術をマスターします。デジタル署名 API を使用して署名をカスタマイズし、独自のアプリケーションを構築します。...setImageFilePath("image.jpg"); options.setLeft(100);...

    blog.groupdocs.com/ja/signature/sign-pdf-with-c...
  8. Comparez des documents Word à l'aide de C # ave...

    Comparez deux ou plusieurs documents Word à l'aide de l'API de comparaison pour .NET. Mettez en surbrillance les différences et acceptez/rejetez les modifications en C#, même pour les documents protégés par mot de passe....Voir également # Comparer l’image en utilisant C # pour repérer...

    blog.groupdocs.com/fr/comparison/compare-word-d...
  9. 자바에서 바코드 생성 | 문서 및 이미지에 바코드 추가

    Java e-Signing API를 사용하여 Word, Excel, PDF, PNG, JPG, WebP 파일에 바코드를 추가하여 Java에서 바코드를 생성하고 문서 및 이미지에 전자 서명합니다....signature = new Signature("path/image.jpg"); // 바코드 텍스트로 바코드 옵션 생성...

    blog.groupdocs.com/ko/signature/generate-barcod...
  10. 在 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"; }