I need to rotate an object inside a canvas in Delphi.
Example rotate by 90 degrees. Text I get is easy, but I have to be able to do it for any type drawn object.
As for an image drawn on the canvas or a geometric figure drawn by canvas .
Example:
Image1.canvas.font.orientation := 900; //equivale rotacionar em 90 gráus.
Only I wanted for any object drawn on canvas, not just texts. I only get text with the example above.