1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

stbi: fixed panic when trying to load JPG (#13724)

This commit is contained in:
Adam Oates
2022-03-13 07:57:34 +00:00
committed by GitHub
parent 27f9bc9ba0
commit 424ef0b2b8

View File

@@ -93,7 +93,7 @@ pub fn load(path string) ?Image {
data: 0
}
// flag := if ext == 'png' { C.STBI_rgb_alpha } else { 0 }
desired_channels := if ext == 'png' { 4 } else { 0 }
desired_channels := if ext in ['png', 'jpg', 'jpeg'] { 4 } else { 0 }
res.data = C.stbi_load(&char(path.str), &res.width, &res.height, &res.nr_channels,
desired_channels)
if desired_channels == 4 && res.nr_channels == 3 {