I had a source code of a drawing software from somewhere which was written in Delphi 7. The code is pretty code and big. Everything drawing with that software is solid, no transparency. I try to read most of the code and I found that the main component used for drawing is TCanvas. Is there any easy way to setup the TCanvas so that transparency is allowed? Thanks.
Share
Transparency is not a Problem fo the canvas, it’s a problem of the painting. There is no way to make a wincontrol real transparent except a layered window, if this is your question, but you can paint with transparence on every canvas. E.g.
If you want do easy paint with transparency you could use GDI+, can be got from http://www.progdigy.com/?page_id=7
This would be an example how to draw a transparent selection without aditional librarays