iOS Question zoom in/out image

f0raster0

Well-Known Member
Licensed User
Longtime User
I would like to show an Image in ImageView or similar,

What do I have to do to be able to zoom in/out the Image with 2 fingers?

Thank you all,
 

jazzzzzzz

Active Member
Licensed User
Longtime User
The simplest way is with WebView:
B4X:
WebView1.LoadUrl(File.Combine(File.DirAssets, "IMG_0001.PNG".ToLowerCase)) 'ToLowerCase is only required if the image is loaded from the assets folder.

Make sure that the ScaleToFit option is checked.

How can we show a bitmap in WebView??
 
Upvote 0
Top