提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:胡涛|2022-09-29 11:25:33.493|阅读 375 次
概述:在本文中,我们将学习如何在 C# 中为 PSD 添加水印,欢迎查阅!
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
Aspose.PSD for .NET 是高级PSD文件格式操作API,没有任何Adobe Photoshop依赖项。API允许创建或编辑Photoshop文件,并提供更新图层属性,添加水印,执行图形操作或将一种文件格式转换为另一种文件的功能。
Aspose.PSD for .NET支持PSD和PSB文件格式进行加载和处理,并允许导出为各种光栅图像格式,例如TIFF,JPEG,PNG,GIF,BMP等。
Adobe 流行的 Photoshop 应用程序使用PSD(Photoshop 文档)作为原生图像文件格式。它通常用于创建 PSD 文件包含多个图层的徽标、小册子和其他图像。我们可以通过以编程方式将文本或图像水印添加到 PSD 文件来轻松保护设计。在本文中,我们将学习如何在 C# 中为 PSD 添加水印。
要在 PSD 文件中添加文本或图像水印,我们将使用Aspose.PSD for .NET API。它是一个易于使用的 Adobe Photoshop 文件格式操作 API。它允许在 .NET 应用程序中加载和读取 PSD 和PSB文件。该 API 使我们能够更新图层属性、添加水印、执行压缩、旋转、缩放或渲染 PSD 以及其他几种受支持的文件格式,而无需安装 Adobe Photoshop。
API的PsdImage类允许加载、编辑和保存 PSD 文件。Graphics类表示图像中的图形。我们有这个类的DrawString(string, Font, Brush, RectangleF, StringFormat)方法,它使用指定的画笔和字体对象在指定的矩形中绘制指定的文本字符串。Layer类表示 PSD 层。该类的DrawImage(Point, RasterImage)方法在图层上绘制图像。我们可以使用Save(string, ImageOptionsBase)方法将 PSD 保存到指定的文件位置。
请下载 API 的 DLL或使用NuGet安装它。
PM> Install-Package Aspose.PSD
// This code example shows how to add a text watermark to a PSD file // Load a PSD file as an image and cast it into PsdImage PsdImage psdImage = (PsdImage)Image.Load(@"C:\Files\SimplePSD.psd"); // Create graphics object to perform draw operations. Graphics graphics = new Graphics(psdImage); // Create font to draw watermark with. Font font = new Font("Arial", 25.0f); // Create a solid brush with color alpha set near to 0 to use watermarking effect. SolidBrush brush = new SolidBrush(Color.FromArgb(80, 128, 128, 128)); // Specify string alignment to put watermark at the image center. StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; sf.LineAlignment = StringAlignment.Center; // Draw watermark using font, partly-transparent brush and rotation matrix at the image center. graphics.DrawString("Sample Watermark Text", font, brush, new RectangleF(0, 0, psdImage.Width, psdImage.Height), sf); // Export the image into PNG file format. psdImage.Save(@"C:\Files\AddWatermark_output.png", new PngOptions());
我们还可以使用以下代码示例将输出保存为 PSD 文件:
psdImage.Save(@"C:\Files\AddWatermark_output.psd", new PsdOptions());
我们可以按照以下步骤在 PSD 文件中添加对角线文本水印:
以下代码示例展示了如何在 C# 中向 PSD 文件添加对角线文本水印。
// This code example shows how to add a diagonal text watermark to a PSD file // Load a PSD file as an image and cast it into PsdImage PsdImage psdImage = (PsdImage)Image.Load(@"C:\Files\SimplePSD.psd"); // Create graphics object to perform draw operations Graphics graphics = new Graphics(psdImage); // Create font to draw watermark with Font font = new Font("Arial", 25.0f); // Create a solid brush with color alpha set near to 0 to use watermarking effect SolidBrush brush = new SolidBrush(Color.FromArgb(80, 128, 128, 128)); // Specify transform matrix to rotate watermark graphics.Transform = new Matrix(); graphics.Transform.RotateAt(45, new PointF(psdImage.Width / 2, psdImage.Height / 2)); // Specify string alignment to put watermark at the image center StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; // Draw watermark using font, partly-transparent brush at the image center graphics.DrawString("Sample Watermark Text", font, brush, new RectangleF(0, psdImage.Height / 2, psdImage.Width, psdImage.Height / 2), sf); // Export the image into PNG file format psdImage.Save(@"C:\Files\AddDiagnolWatermark_output.png", new PngOptions());
我们还可以按照以下步骤将图像作为水印添加到 PSD 文件中:
以下代码示例展示了如何在 C# 中将图像水印添加到 PSD 文件中。
// This code sample shows how to add an image watermark to a PSD file // Load a PSD file into PsdImage object PsdImage psdImage = (PsdImage)Image.Load(@"C:\Files\SimplePSD.psd"); // Add a new watermark layer var baseLayer = new Layer(); baseLayer.Top = 200; baseLayer.Bottom = 600; baseLayer.Right = 600; baseLayer.Opacity = 50; // Add layer to PSD file psdImage.AddLayer(baseLayer); // Load a watermark image into a layer FileStream ImageWatermarkFile = new FileStream(@"C:\Files\aspose_logo.png", FileMode.Open); Layer ImageWatermarkLayer = new Layer(ImageWatermarkFile); // Add image watermark to base layer baseLayer.DrawImage(new Point(0, 200), ImageWatermarkLayer); // Save final watermarked PSD file psdImage.Save(@"C:\Files\ImageWatermarkedPSD.png", new PngOptions());
以上便是如何使用通过aspose.psd 在 C# 中将水印添加到 PSD,希望能对您有所帮助,如果您还有其他疑问,欢迎查阅本系列其他教程,或者私信我们获取帮助~
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
创建,读取,编辑和转换PSD和PSB文件,而没有任何Adobe Photoshop依赖项。
Aspose.Cells for .NET专业的电子表格控件,无需MS Excel也可满足一切Excel表格功能。
Aspose.PDF for .NETPDF文档创建组件,无需Adobe Acrobat,也可以在任何平台上操作PDF文档。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢