Yoko.Images.Webp
1.2.4.1
dotnet add package Yoko.Images.Webp --version 1.2.4.1
NuGet\Install-Package Yoko.Images.Webp -Version 1.2.4.1
<PackageReference Include="Yoko.Images.Webp" Version="1.2.4.1" />
paket add Yoko.Images.Webp --version 1.2.4.1
#r "nuget: Yoko.Images.Webp, 1.2.4.1"
// Install Yoko.Images.Webp as a Cake Addin #addin nuget:?package=Yoko.Images.Webp&version=1.2.4.1 // Install Yoko.Images.Webp as a Cake Tool #tool nuget:?package=Yoko.Images.Webp&version=1.2.4.1
Yoko.Images.WebP
从静态路径或者网络路径转换、调整大小和压缩 jpeg、png 和 webp 图像
注意事项
检查 libwebp_x64.dll、libwebp_x86.dll 文件,复制到项目运行根目录中
测试环境ok,发布到线上报错?请检查线上服务器的系统环境依赖是否完整
路径: C:\Windows\System32 C:\Windows\SysWOW64 检查文件: KERNEL32.dll VCRUNTIME140.dll api-ms-win-crt-runtime-l1-1-0.dll api-ms-win-crt-heap-l1-1-0.dll api-ms-win-crt-math-l1-1-0.dll api-ms-win-crt-utility-l1-1-0.dll
更新日志
1.2.4.1
- 更新 libwebp_x64.dll、libwebp_x86.dll
1.2.4
支持普通图像的Bitmap转webP编码的Stream
BitmapToWebpStream(bitmap,);
常用于不落地处理图像,如传到第三方对象存储中心
1.2.3
更新 libwebp.dll
- 无损编码器的安全修复 - 在使用无损时改进了WebP报告进度粒度 - 提高了转换的精度 - 错误OOM的崩溃、泄漏修复和其他错误修复
1.1.0
兼容更多版本
新增dll包含
自动添加dll,重新生成工程项目时dll会自动复制到工程运行目录下
//打开 {ProjectName}.csproj <ItemGroup> <Content Include="build\libwebp_x64.dll" /> <Content Include="build\libwebp_x86.dll" /> </ItemGroup> //替换为 <ItemGroup> <Content Include="build\libwebp_x64.dll"> <Link>libwebp_x64.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> <Content Include="build\libwebp_x86.dll"> <Link>libwebp_x86.dll</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> </ItemGroup>
1.0.3.1
- 支持将Bitmap对象存储为Webp图像
1.0.3
- 支持将WebP图片转为Bitmap对象
- 自动补全依赖dll
💎 DLL 要求
请将build文件夹下的 libwebp_x64.dll、libwebp_x86.dll文件,复制到项目运行根目录中
💎 示例
using Yoko.Images.Webp;
var sourcePath = @"D:\Images\input.jpg";
var destPath = @"D:\Images\test.webp";
//将一个图像转换为webp并保存在本地路径
Images.JpegToWebP(sourcePath, destPath, 50);
//将web类型png图像转换为webp并保存在本地路径
Images.PngToWebPFromWeb("https://XXXXXXXXXXXXXX.png", "Test.webp", 100, 50);
💎 参考方法
🔍 调整 webp 图像的大小
Images.ResizeWebP()
🔍 调整jpeg图像的大小
Images.ResizeJpeg()
🔍 调整png图片的大小
Images.ResizePng()
🔍 将jpeg图像转换为webp(转换图像质量)(调整图像大小)
Images.JpegToWebP()
🔍 将Png图像转换为webp(转换图像质量)(调整图像大小)
Images.PngToWebP()
🔍 将 webp 图像转换为 jpeg(压缩图像?)(调整图像大小)
Images.WebPToJpeg()
🔍 将 webp 图像转换为 Png (压缩图像?)(调整图像大小)
Images.WebPToPng()
🔍 将一个webP图片转为Bitmap对象
Images.WebpToBitmap()
🔍 将一个Bitmap对象存储为Webp图像
Images.BitmapToImage()
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Drawing.Common (>= 6.0.0)
-
.NETStandard 2.1
- System.Drawing.Common (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.