gpt4 book ai didi

image - 如何在 Rust 中保存 PNG 图像?

转载 作者:行者123 更新时间:2023-11-29 07:47:06 24 4
gpt4 key购买 nike

给定一个 u8 字节的矢量(每个像素 4 个字节 - RGBA),如何将其保存到 PNG 文件中?

最佳答案

你可以 use the image crate in the Piston repository将原始缓冲区保存到磁盘。

页面底部的示例向您展示了如何执行此操作..:

extern crate image;

fn main() {

let buffer: &[u8] = ...; // Generate the image data

// Save the buffer as "image.png"
image::save_buffer(&Path::new("image.png"), buffer, 800, 600, image::RGBA(8))
}

关于image - 如何在 Rust 中保存 PNG 图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38886081/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com