Hi,
You can try with GxTFT.
Download the library as zip-file, then add it using Library Manager "Add .ZIP Library...".
Start with the example "GxTFT_myTFTs_graphicstest.ino"
Select the pre-configured display header file by uncomment, comment the previous selection:
#include "myTFTs/my_2.0_TFT_INHAOS_LCD_2000_9225.h"
Save the example as starting point to add your code then.
GxTFT is not "Newbie friendly", but it can give you a starting point.
The ILI9225 specific code is taken from TFT_22_ILI9225. print() is available.
Jean-Marc
Oops, I forgot that the INHAOS_LCD_2000_9225 is special, as it uses a latched 8bit interface to the 16bit panel.
So you may need to use a different GxIO class, dependent on your display.
Please provide a link to your display if you need help. Be patient, as I am absent some time today.
As you use TFT_22_ILI9225, you most likely use SPI:
original myTFTs/my_2.0_TFT_INHAOS_LCD_2000_9225.h
// e.g. https://www.aliexpress.com/item/LCD-Development-Kit-9225-with-Mega-2560-2-0-TFT-LCD-Display-TFT-LCD-PCB-Adapter/32587170491.html
// this display uses 8 bit data bus but has a latch for 16 bit panel
#include "../GxIO/GxIO_MEGA_P8_MEGASHIELD_LS/GxIO_MEGA_P8_MEGASHIELD_LS.h"
#include "../GxCTRL/GxCTRL_ILI9225/GxCTRL_ILI9225.h" // 176x220
GxIO_Class io; // #define GxIO_Class is in the selected header file
GxCTRL_Class controller(io); // #define GxCTRL_Class is in the selected header file
TFT_Class tft(io, controller, 176, 220); // portrait 176x220
//TFT_Class tft(io, controller, 220, 1760); // landscape 176x220
version for SPI: (need to define RS/CD and RST)
#include "../GxIO/GxIO_SPI/GxIO_SPI.h"
#include "../GxCTRL/GxCTRL_ILI9225/GxCTRL_ILI9225.h" // 176x220
GxIO_Class io(SPI, SS, RS, RST);
GxCTRL_Class controller(io); // #define GxCTRL_Class is in the selected header file
TFT_Class tft(io, controller, 176, 220); // portrait 176x220
//TFT_Class tft(io, controller, 220, 1760); // landscape 176x220
TFT_22_ILI9225 has a drawPixel() method. So it would be easy to make it inherit from Adafruit_GFX.
Then you get all the Adafruit_GFX methods, including print().
I have created a clone and added Adafruit_GFX. Compiles ok, but untested.