Hi Ray
I'm printing (Linux CUBS printer) on paper and use this test code snip, that works fine.
// Raylib 5
int x = 0;
int y = 100;
int fontsize = 16;
char *getfont = "arial.ttf"; // tried different fonts without success.
Font font;
font = LoadFontEx(getfont, fontsize, 0, 250);
const char *t = "mimMIN";
ImageDrawTextEx(&image, font, t, (Vector2){ x, y }, fontsize, 1, BLACK);
const char *filename = "output.png";
ExportImage(image, filename);
But I have issues with the sharpness of the letters, they become a bit blurred or unclear. I had similar issue month ago, when I printed from Windows using Raylib 4.5, but not using the same font from Notepad. I never got that problem solved.
Do you have a suggestion for what I can improve, if the problem at all is related to Raylib?
Thanks in advance.
Hobby programmer