2
任何人都知道是否有可能使用C#將Bitmap
轉換爲WebP
圖像?將位圖轉換爲WebP圖像?
一直在谷歌周圍,但無法找到C#的任何東西。我發現這個: mc-kay/libwebp-sharp · GitHub但它似乎沒有將位圖轉換爲WebP
格式。
任何想法?
任何人都知道是否有可能使用C#將Bitmap
轉換爲WebP
圖像?將位圖轉換爲WebP圖像?
一直在谷歌周圍,但無法找到C#的任何東西。我發現這個: mc-kay/libwebp-sharp · GitHub但它似乎沒有將位圖轉換爲WebP
格式。
任何想法?
荷載下的WebP圖像
using (Bitmap image = WebPFormat.LoadFromStream(new FileStream("image.webp", FileMode.Open, FileAccess.Read)))
{
image.Save("image.png", ImageFormat.Png);
}
保存的WebP圖像
using (Image image = Image.FromFile("image.jpg"))
{
Bitmap bitmap = new Bitmap(image);
WebPFormat.SaveToFile("image.webp", bitmap);
}
欲瞭解更多信息看看這裏webp
感謝。你知道我可以加快速度嗎?目前將它們轉換爲WebP格式非常慢。或者有什麼方法可以直接捕獲WebP格式的屏幕而不必轉換它?再次感謝。 –