icns-rs

Easily create .icns files (Mac Icons) with this Rust library or the included CLI app.
Log | Files | Refs | LICENSE

commit e43058bdcbef3614f6c92c71a68b8d0d578e6d69
parent d2a1b8eb506edb2aa7cb3925755e6095ed59e136
Author: = <=>
Date:   Fri, 23 Aug 2019 19:50:53 +1200

[~] Sync to fractal example.

Diffstat:
Mreadme.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/readme.md b/readme.md @@ -54,7 +54,7 @@ fn main() { } let pixel = imgbuf.get_pixel_mut(x, y); - let data = (*pixel as image::Rgb<u8>).data; + let data = (*pixel as image::Rgb<u8>).0; *pixel = image::Rgb([data[0], i as u8, data[2]]); } }