Zh

使用 Java 将多种文件类型合并为一种

当您打算将不同文档的分散数据收集到一个文件中时,通常需要合并不同的文档。在本文中,您将学习自动化文档合并过程。这将展示如何使用 Java 以编程方式将相同或不同文件类型的多个文档合并到一个文件中。在另一篇文章中,我们讨论了[使用 C# 合并多个不同格式的文件][1]。
六月 13, 2021 · 1 分钟 · Shoaib Khan

使用 Java 的水印演示幻灯片

为了保护文件和演示文稿不被非法使用,我们可以使用水印。在本文中,我们将学习以编程方式将基于文本和图像的水印应用于演示文稿或 Java 演示文稿的特定幻灯片。在另一篇文章中,我们讨论了[使用 C# 将水印应用于演示文稿][1]。
六月 9, 2021 · 2 分钟 · Shoaib Khan

用 C# 构建您的全文搜索解决方案

Full-text search is basically a more advanced way to search a text/query over a collection of documents. This approach quickly finds all instances of a term and it works by using text indexes. In this article, we will learn, how to programmatically search full-text in documents using C#.
六月 3, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将 EML 或 MSG 文件转换为 PDF

For sharing and referencing the email content, you may need to convert your email message to PDF format. In this article, you will learn the conversion of email message files like EML and MSG into PDF using C#. In one of the other blog posts, we have already discussed the [conversion of emails to PDF using Java][1]. This will help to automate the email conversions within your desktop or web-based applications.
五月 26, 2021 · 2 分钟 · Shoaib Khan

在 Java 中将文档转换为 Excel XLS、XLSX

对于 PDF 和 Word 文档的表格形式的数据,您有时需要将其转换为 Excel 电子表格。我们需要将尽可能多的文档自动转换为电子表格或多个工作簿。本文将讨论如何以编程方式将 Word 文档转换为 Excel,以及如何将 PDF 文件转换为 Java 中的 Excel 电子表格。
五月 22, 2021 · 2 分钟 · Shoaib Khan

在 C# 中将图像转换为 PDF

An Image can be converted to PDF to assure that the image will display correctly across devices without being altered. PDF images are ideal for printing and for storing images online when intended to be downloaded. PDF can hold as many images in one document so can be printed easily or saved as a catalog. This article will guide you to programmatically convert images like JPG, GIF, WebP, PNG to PDF in C# using .NET API for document and image conversion.
五月 19, 2021 · 2 分钟 · Shoaib Khan

使用 Java 管理 HEIF/HEIC 图像的 XMP 和 EXIF 数据

HEIC 代表高效图像容器。它是某些苹果设备捕获的图像的文件扩展名。它是一个可以包含 High-Efficiency Image Format HEIF 图像的容器。在本文中,我们将讨论如何在 Java 应用程序中提取、更新和删除 HEIF/HEIC 图像的 EXIF 和 XMP 元数据
五月 10, 2021 · 3 分钟 · Shoaib Khan

使用 C# 将多个文件类型合并到单个文档中

To combine the data that is present in multiple documents, and sometimes in documents of different file types, there comes the need to merge all your documents or the portion of the documents into one. In this article, you will learn, how to merge multiple documents of either the same or different file types in one file using C#. 以下是本文涵盖的主题:

  • .NET API - 合并多种文档类型 * 将 PDF、Word、Excel 文件合并为一个 PDF * 将多个文件的选择性页面合并为一个文件 [继续阅读…][1]
五月 4, 2021 · 1 分钟 · Shoaib Khan

使用 C# 将水印添加到演示文稿幻灯片

Watermarks are normally used to protect the documents from any unauthorized use. To protect your presentations and to claim ownership, today we will learn how to programmatically add text and image watermarks to the Microsoft PowerPoint presentations within .NET applications using C#. In a separate article, we have seen [applying watermarks to images in C#][1].
五月 1, 2021 · 2 分钟 · Shoaib Khan

使用 C# 查看 CAD 文档

CAD (Computer-Aided Design) drawings are normally used to create architectural plans and models using CAD software programs. Some of the well-known AutoCAD file formats are DWG, DXF, DGN, DWF. We discussed [viewing the CAD drawings using Java][1] in a separate article. Today, in this article, we will discuss how to programmatically view CAD files using C# within .NET applications. 本文简要介绍了以下主题:

  • .NET API 来渲染 CAD 文件。 * 将 CAD 文件转换为 HTML、JPG、PNG 或 PDF。 * 获取 DWG 的布局和图层。 * 渲染 DWG 图纸的 CAD 图层。 * 渲染 DWG 图纸的 CAD 布局。 [继续阅读…][2]
四月 27, 2021 · 3 分钟 · Shoaib Khan