Android Question Image properties

RUNO

Active Member
Licensed User
Longtime User
I want to get properties of the image before uploading it, such as height, width and size

Does anyone help me ?
 

teddybear

Well-Known Member
Licensed User
I want to get properties of the image before uploading it, such as height, width and size

Does anyone help me ?
B4X:
    Dim bmp As Bitmap
    bmp.Initialize(File.Dir..., "ImgYouWantUpload")
    Log(bmp.Height)
    Log(bmp.Width)
 
Upvote 0
Top