https://chatglm.cn 这个试试如果你想在C#中将WebP格式的图片转换为JPG格式,你可以使用一些第三方库,如WebP.NET。下面是一个使用WebP.NET的简单示例:
首先,确保你已经安装了WebP.NET库。在你的项目中,右键单击"依赖项",然后选择"管理 NuGet 程序包"。搜索"WebP.NET"并安装它。
然后,你可以使用以下代码将 WebP 格式的图片转换为 JPG 格式:
[JavaScript] 纯文本查看 复制代码 using System;
using System.IO;
using WebP.Net;
class Program
{
static void Main(string[] args)
{
// 输入文件路径(WebP 格式)
string inputFilePath = "input.webp";
// 输出文件路径(JPG 格式)
string outputFilePath = "output.jpg";
// 创建 WebP 图像对象
WebPImage webPImage = new WebPImage(inputFilePath);
// 将 WebP 图像转换为 JPG 图像
byte[] jpgImageBytes = webPImage.ToJpg();
// 保存 JPG 图像到文件
File.WriteAllBytes(outputFilePath, jpgImageBytes);
Console.WriteLine("WebP 图像已成功转换为 JPG 图像。"); <div class="loadingGif" style="display: inline;"><div style="background-image: url(); background-repeat: no-repeat; background-size: cover; display: inline-block; width: 17px; height: 17px; transform: translateY(4px)"></div></div>
|