Home > Back-end >  How to get the image. The picture. The pointer to the bitmap?
How to get the image. The picture. The pointer to the bitmap?

Time:09-16

Can't directly call a function, when the incoming @ image. The picture. The bitmap is wrong, is there a good way to get a pointer directly

CodePudding user response:

What a pointer? For object references:
Var
P: pointer;
//...
P:=Image1. Picture. Bitmap;
Get the bitmap data Pointers:
P:=Image1. Picture. Bitmap. ScanLine [Image1. Picture. Bitmap. Height - 1].

CodePudding user response:

Call a function when the incoming should be a bitmap data, it is the type, the incoming to suit its type,

CodePudding user response:


I guess he wants should be Tbitmap2array of byte;
  • Related