Site icon Learn C++

Quickly Learn How To Use Canvas Drawing In C++ On Windows

In C++ Builder, it is easy to draw images on Bitmaps by using Canvas property and methods to draw, Canvas can be used on both VCL and FMX applications. Canvas provides an abstract drawing space for objects that must render their own images. TCanvas provides properties, events, and methods that assist in creating an image by:

In C++ Builder FireMonkey projects, Canvas requires BeginScene() and EndScene() Methods to edit that memory area faster. We can use Canvas property of any component. Here below all samples are about Canvas of Bitmaps. Canvas of Bitmaps can be used to draw inside and all drawings should be done between these methods as below;

General usage of Canvas of a Bitmap
Using Bitmap allows you to modify canvas while you can able to show this as a Image Bitmap, you can also Load or Save this bitmap easily. Please read this article about Bitmap Operations in C++ Builder (FireMonkey).

[crayon-66232bb38dda7476981418/]

Colors, Pen and Paper Color in Canvas

[crayon-66232bb38ddb3801266963/]

Drawing Lines into Canvas

[crayon-66232bb38ddb6118951004/]

Getting and Drawing Pixels into Canvas

[crayon-66232bb38ddb9216437437/]

Drawing Rectangles into Canvas

[crayon-66232bb38ddbb392263125/]

Drawing Circles and Ellipses into Canvas

[crayon-66232bb38ddbe911527425/]

Drawing Texts in to Canvas

[crayon-66232bb38ddc0013724611/]

Drawing Bitmap into Canvas of another Bitmap

[crayon-66232bb38ddc2082163751/]

Exit mobile version