Android Question jpg size after download via imagedowner

a2stepper

Member
Licensed User
Longtime User
How might i find out the height and width of a jpg after downloading a jpg file via net
i'm downloading different sizes and would like to fix the imageview to that size.
thanks paul
 

a2stepper

Member
Licensed User
Longtime User
yes, works Great! thanks.

If link = Job.JobName Then
Dim iv As ImageView = tasks.GetKeyAt(i)
iv.Height = bmp.Height
iv.Width = bmp.Width
iv.SetBackgroundImage(bmp)
End If
 
Upvote 0
Top