bitmap icon indicating copy to clipboard operation
bitmap copied to clipboard

BitMap class

Results 7 bitmap issues
Sort by recently updated
recently updated
newest added

When try to create a new bitmap with size "500" it return a bitmap with 504 position. This is really annoying.

Add method to support "0" related operation and make bitmap more symmetrical.

Currently the bitmap have to be initialized as all zero. It would be nice to add argument in constructor to preset all bits to 1. And it would be awesome...

Calling str(len(hexstring) / 4) in the second argument of format() causes an error as "Precision not allowed in integer format specifier" (VS error message). Float division returns a float value...

In python3, interger divison will return a float.This will cause format error. ``` Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright",...

Maybe you guys can offer an API to get the origin binaryData of bitMap, which could avoid the Waste of storage space and seems easy to implement. If you agree,...