Hi!
I have one little question. How i can draw text on transparent PNG (using ImgaingLib)? Possible there is no procedure in this libary. ???
TImagingBitmap comes with the property "Canvas" (TCanvas).
Like every other Canvas, this provides methods such as TextOut, TextRect and so on.
But there's no transparency :(
If you use TCanvas for text output and want transparent text, you must set background mode to transparent. Using WinAPI function would look like this SetBkMode(Canvas.Handle, TRANSPARENT). There's probably some method/property in TCanvas that would do the same.