Closed p0nce closed 1 year ago
Trying to load Dplug image with:
Image rgb; rgb.loadFromMemory(cast(const(ubyte[])) imageDataRGB, LOAD_RGB | LOAD_8BIT | LOAD_ALPHA | LAYOUT_VERT_STRAIGHT | LAYOUT_GAPLESS);
yield wrong image, but
rgb.loadFromMemory(cast(const(ubyte[])) imageDataRGB, 0); rgb.convertTo(PixelType.rgba8, LAYOUT_VERT_STRAIGHT | LAYOUT_GAPLESS);
works.
The image in particular is Distort diffuse image.
Fixed in v2.0.1
Trying to load Dplug image with:
yield wrong image, but
works.
The image in particular is Distort diffuse image.