C++Language FeatureLearn C++

How To Use Scanline In Bitmaps In A VCL C++ App?

What is ScanLine? How can I use ScanLine in my C++ app built using the VCL? The ScanLine method provides indexed access to each line of pixels of bitmaps, in VCL apps, i.e Image1->Picture-ScanLine[y] ); where y is an integer that shows the line of bitmap scanned ( maximum is the height-1 of bitmap) #include #include // for the auto_ptr #pragma hdrstop #include…
Read more