Feature request GFX Library

For other supported Arduino products from Adafruit: Shields, accessories, etc.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
blnkjns
 
Posts: 963
Joined: Fri Oct 02, 2020 3:33 am

Feature request GFX Library

Post by blnkjns »

Dear Adafruit,
Would it be possible to give the Adafruit GFX library an extra option for copying RGB bitmaps?
Now you need to do this if you want to do it with transparancy:

Code: Select all

tft.drawRGBBitmap(spriteX,spriteY,spriteBM,spriteMask,8,8);
Would be great if you can also do this to have for example all black pixels transparant:

Code: Select all

uint16_t maskedColor=0x0000;
tft.drawRGBBitmap(spriteX,spriteY,spriteBM,maskedColor,8,8);

Locked
Please be positive and constructive with your questions and comments.

Return to “Other Arduino products from Adafruit”