hello everyone. i followed this tutorial https://youtu.be/TnlgvN0RBiM but the image saved is a blank image. may i know why?

hello everyone. i followed this tutorial https://youtu.be/TnlgvN0RBiM but the image saved is a blank image. may i know why?
this is my full source code: https://goo.gl/QRPzo5

it would be great if any of you can help. thanks!
https://youtu.be/TnlgvN0RBiM

Comments

  1. I would start by checking the use of a TBitmapCodecManager when saving the file.

    ReplyDelete
  2. In your ImageControl1Click this works in Tokyo:
    b:=TBitmap.Create(1920, 1080);
    b:= RoundRect1.MakeScreenshot;
    ImageControl1.Bitmap.Assign(b);
    b.SaveToFile('Test'+IntToStr(Random(1000))+'.png');
    b.Free;

    ReplyDelete
  3. do you need for window or Android or both?

    ReplyDelete
  4. shlomo abuisak i need for both android and windows. it works perfectly fine on windows but when running on android the signature capture is not saved

    ReplyDelete

Post a Comment