在实际环境中测试
在生产中测试无水印。
随时随地为您服务。
彩色PDF文件视觉上很吸引人,但是在某些场景中,选择灰度处理更为合适。打印灰度文档不仅可以节省墨水,还能提供经典和专业的外观。灰度图像通常能突显出更细微的细节,使其适用于带有复杂设计或详细图形的文档。
通过阅读本文,您将学会两种简单快速的方法,将您的PDF文档转换为灰度:使用 Adobe Acrobat 或 IronPDF.
安装Adobe Acrobat。
在Adobe Acrobat中打开您的PDF文件。
点击“文件”并选择“打印”,打开“打印”菜单。
在打印设置中,勾选“灰度打印”选项。
Adobe Acrobat可以轻松安装,下载地址是 官方网站.
点击下载按钮开始下载过程。
下载 .EXE 文件后,双击该文件即可在计算机上安装 Adobe Acrobat。
使用 Adobe Acrobat 打开您的 PDF 文档。安装后,PDF 文件将默认自动设置为使用 Adobe Acrobat 打开。
打开 PDF 后,导航到“打印”选项。
在打印设置窗口中,勾选“灰度打印”选框以转换 PDF。预览将出现在窗口的右侧。
现在您已经将 PDF 转换为灰度,请查看新创建的文件。原本彩色的元素现在变成了黑白:
Adobe Acrobat 提供许多可通过左侧窗格访问的编辑功能:
其他工具亦可用:
可以使用 NuGet Visual Studio 中的包管理器。
在NuGet包管理器中搜索“IronPdf”进行安装。
在包管理器控制台中运行以下命令:
Install-Package IronPdf
这是一个演示的例子 生成灰度 PDF 使用 IronPDF:
using IronPdf;
// Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;
// Instantiate Renderer
var renderer = new ChromePdfRenderer();
// Render a PDF from an HTML string
var pdf = renderer.RenderHtmlAsPdf("https://onlinetestcase.com/wpcontent/uploads/2023/06/1-MB.pdf");
// Convert to grayscale
renderer.RenderingOptions.GrayScale = true;
// Save the PDF file
pdf.SaveAs("pdfoutput.pdf");
using IronPdf;
// Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;
// Instantiate Renderer
var renderer = new ChromePdfRenderer();
// Render a PDF from an HTML string
var pdf = renderer.RenderHtmlAsPdf("https://onlinetestcase.com/wpcontent/uploads/2023/06/1-MB.pdf");
// Convert to grayscale
renderer.RenderingOptions.GrayScale = true;
// Save the PDF file
pdf.SaveAs("pdfoutput.pdf");
Imports IronPdf
' Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = True
' Instantiate Renderer
Dim renderer = New ChromePdfRenderer()
' Render a PDF from an HTML string
Dim pdf = renderer.RenderHtmlAsPdf("https://onlinetestcase.com/wpcontent/uploads/2023/06/1-MB.pdf")
' Convert to grayscale
renderer.RenderingOptions.GrayScale = True
' Save the PDF file
pdf.SaveAs("pdfoutput.pdf")
以下是使用IronPDF以灰度渲染的示例文档:
IronPDF需要一个许可证密钥。在appsettings.json
文件中插入密钥:
"IronPdf.LicenseKey": "your license key goes here"
"IronPdf.LicenseKey": "your license key goes here"
'INSTANT VB TODO TASK: The following line uses invalid syntax:
'"IronPdf.LicenseKey": "your license key goes here"
将PDF转换为灰度是一项多才多艺的技能,可以提高文档的质量和可用性。无论您使用Adobe Acrobat、IronPDF或其他工具,该过程都很简单。通过学习不同的方法将PDF转换为灰度,您可以根据各种需求优化您的文档,例如 打印 或 减小文件大小.
IronPDF 是一个强大且高效的工具,适用于需要读取、写入和操作PDF文件的开发人员。