We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
WebP-wrapper
C# 中 libwebp 的包装器。纯托管 C# 中最完整的 wapper。
公开简单解码 API、简单编码 API、高级编码 API(带有压缩统计信息)、获取库版本和 WebPGetFeatures(任何 WebP 文件的信息)。将来我将更新以公开高级解码 API。
包装器位于一个类中的安全托管代码中。除了 libwebp_x86.dll 和 libwebp_x64.dll(包含 v6.1)之外,不需要外部 dll。包装器可以在 32 位、64 位或任何位上工作(自动切换到适当的库)。
该代码有完整注释,并包含使用包装器的简单示例。
WebP-wrapper
Wrapper for libwebp in C#. The most complete wapper in pure managed C#.
Exposes Simple Decoding API, Simple Encoding API, Advanced Encoding API (with compresion statistics), Get library version and WebPGetFeatures (info of any WebP file). In the future I´ll update for expose Advanced Decoding API.
The wrapper is in safe managed code in one class. No need for external dll except libwebp_x86.dll and libwebp_x64.dll (included v6.1). The wrapper work in 32, 64 bit or ANY (auto swith to the apropiate library).
The code is full comented and include simple example for using the wrapper.
查看 http://webp.codeplex.com/。有一个库可以让您轻松编码为 WebP 格式。查看此问题以获取更多信息:
将位图转换为 WebP 图像?
该库允许您保存为 WebP 格式,如下所示:
Take a look at http://webp.codeplex.com/. There is a library that allows you to easily encode into WebP format. Check out this question for more information:
Convert Bitmap to WebP Image?
The library allows you to save into WebP format like so:
github上有一个项目
请参阅项目页面:https://github.com/JosePineiro/WebP-wrapper
there is a project in github
see project page: https://github.com/JosePineiro/WebP-wrapper
有 https://github.com/mc-kay/libwebp-sharp 包装项目。但似乎没有实施。
There is https://github.com/mc-kay/libwebp-sharp wrapper project. But it doesn't seem to be implemented.