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

Could we please get a class to use that doesn't subclass Print. ``` class Adafruit_GFXWithoutPrint { // all the graphics stuff } class Adafruit_GFX: public Print, public Adafruit_GFXWithoutPrint { //...

This change modifies `fontconvert` to add support for a new (optional) "remap" parameter. If given, that parameter replaces the glyphs for certain characters with glyphs of a different character. It's...

Can I put in a request to include the degree character 0xB0 (176 dec) glyph when fontconvert converts a TTF file. Also, is it possible to fix the main algorithm,...

Arduino IDE 1.8.19 Windows ESP32 (MH ET LIVE ESP32minikit) Hello, in an asynchronous file server (**ESPAsyncWebServer + AsyncTCP**) the combination of **Adafruit GFX and Adafruit ST7735** libraries interfere with the...

This PR adds the ability to define a window for text. Subsequent calls to print(), write() etc will cause the text to be printed within the window. Lines which are...

Hello AdafruitGFX members! Not so long ago I wrote my own library for rendering bitmap fonts, created by the fontconvert utility from this project. I also modified this utility. This...

This PR adds example images of all included fonts to help people select the right font. No functional code of the library was touched. The PNG images total up to...

Hello. In pull request there is an Adafruit_GFX_Button changed both in Adafruit_GFX.cpp and Adafruit_GFX.h to add the new functionality. The class is fully compatible with previous version. All original varieables...

fontconvert utility: added option to specify font hinting. Some fonts look better when generated with FreeType load flags: `FT_LOAD_TARGET_MONO | FT_LOAD_FORCE_AUTOHINT`. Fonts "FreeSans" & "FreeSerif" looks better with only one...