mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
auto merge of #1413 : dhedlund/servo/png_color_type, r=pcwalton
This should fix images produced by the -o flag. The gl2::read_pixels call was asking for pixel data in RGB8 but was then telling the PNG encoder that the data was RGBA8. The value was originally set correctly, but was changed when support was added for drawing transparent PNGs. We could instead adjust the gl2::read_pixels call to return RGBA8 so we can write transparent screenshots, but I'm not sure if there's a use case for that.
This commit is contained in:
commit
44404766da
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ pub fn run_compositor(compositor: &CompositorTask) {
|
|||
let img = png::Image {
|
||||
width: width as u32,
|
||||
height: height as u32,
|
||||
color_type: png::RGBA8,
|
||||
color_type: png::RGB8,
|
||||
pixels: pixels,
|
||||
};
|
||||
let res = png::store_png(&img, &path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue