RUNO Active Member Licensed User Longtime User Jul 2, 2023 #1 I want to get properties of the image before uploading it, such as height, width and size Does anyone help me ?
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 Jul 2, 2023 #2 RUNO said: I want to get properties of the image before uploading it, such as height, width and size Does anyone help me ? Click to expand... B4X: Dim bmp As Bitmap bmp.Initialize(File.Dir..., "ImgYouWantUpload") Log(bmp.Height) Log(bmp.Width) Upvote 0
RUNO said: I want to get properties of the image before uploading it, such as height, width and size Does anyone help me ? Click to expand... B4X: Dim bmp As Bitmap bmp.Initialize(File.Dir..., "ImgYouWantUpload") Log(bmp.Height) Log(bmp.Width)
RUNO Active Member Licensed User Longtime User Jul 3, 2023 #3 teddybear said: B4X: Dim bmp As Bitmap bmp.Initialize(File.Dir..., "ImgYouWantUpload") Log(bmp.Height) Log(bmp.Width) Click to expand... Thank you Upvote 0
teddybear said: B4X: Dim bmp As Bitmap bmp.Initialize(File.Dir..., "ImgYouWantUpload") Log(bmp.Height) Log(bmp.Width) Click to expand... Thank you