brendan-duncan / image

Dart Image Library for opening, manipulating, and saving various different image file formats.
MIT License
1.14k stars 255 forks source link

Convert JPG TO BMP BmpCompression issue #659

Open yiky84119 opened 2 weeks ago

yiky84119 commented 2 weeks ago

default compression is like this:

    final compression =
        bpp > 8 ? BmpCompression.bitfields : BmpCompression.none;

when bpp is bigger than 16 ( bit is 8 ) and channel is 3, the BMP format is RGB888. should the compression format for BmpCompression be 0?