Adafruit-GFX-Library icon indicating copy to clipboard operation
Adafruit-GFX-Library copied to clipboard

Adafruit GFX graphics core Arduino library, this is the 'core' class that all our other graphics libraries derive from

Results 126 Adafruit-GFX-Library issues
Sort by recently updated
recently updated
newest added

This forum poster was trying to get a [Feather RP2040 CAN](https://www.adafruit.com/product/5724) working with a [TFT FeatherWing](https://www.adafruit.com/product/3651): https://forums.adafruit.com/viewtopic.php?t=217465 Dealing with ensuring the various CS pins were being handled properly worked to...

Adafruit TFT FeatherWing - 3.5" 480x320 and Adafruit ESP32 Feather V2 - 8MB Flash + 2 MB PSRAM When using GFXcanvas16 canvas(480, 320) and drawRGBBitmap(0,0,canvas.getBuffer(),480,320) it causes core panic. canvas(240,...

Is there a way to get this to work on an R4?

Hello, I would like to understand how the fonts are compressed. Reading the code I see that there is a pointer in GFXglyph that points to the beginning of the...

Use `pkg-config` to automatically detect freetype path. Fix #88 #447

c:\Users\alex\Documents\Arduino\libraries\Adafruit_ILI9488/Adafruit_ILI9488.h:22:10: fatal error: ../Adafruit_GFX_32/Adafruit_GFX_32.h: No such file or directory #include "../Adafruit_GFX_32/Adafruit_GFX_32.h" ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. exit status 1 Compilation error: exit status 1 Please help

(Unused characters in the first to last range are set to ' ') Use -I.. to find gfxfont.h Add -L/usr/local/lib to improve chances of finding freetype library use static buffers...

These methods implement the ability to draw and fill rectangles rotated by a given angle in degrees.

This needs a bit of rethinking, to account for external displays etc, but working initially combined with https://github.com/adafruit/Adafruit-ST7735-Library/pull/220

This will cause issues, when compiling on big-endian architecture. Should use `pgm_read_word(…)` instead of `pgm_read_byte(…)` and functions like `drawChar(…)` should handle argument `c` and related variables as `uint16_t` and not...