PumaCyan Member Licensed User Oct 13, 2022 #1 how to change the image file size from the originally large server to small size? so that when loading multiple images the process becomes faster I use SMM and Panel to display the image My Code: MediaManager.SetMediaWithExtra(PanelImage, https://.......,"", CreateMap(MediaManager.REQUEST_RESIZE_MODE : "FILL_NO_DISTORTIONS")) Attachments Screenshot_20221013-075914.png 169.7 KB · Views: 337
how to change the image file size from the originally large server to small size? so that when loading multiple images the process becomes faster I use SMM and Panel to display the image My Code: MediaManager.SetMediaWithExtra(PanelImage, https://.......,"", CreateMap(MediaManager.REQUEST_RESIZE_MODE : "FILL_NO_DISTORTIONS"))
TILogistic Expert Licensed User Longtime User Oct 13, 2022 #2 Use: B4X: MediaManager.Initialize MediaManager.MaxImageSize = 350 'Image 350x350 Upvote 0
TILogistic Expert Licensed User Longtime User Oct 13, 2022 #3 tips: if you are using PreoptimizedCLV. This will help visualize the images. example; B4X: PCLV.ExtraItems = 10 ' or more and TimeOut B4X: MediaManager.SleepDurationBeforeDownload = 0 MediaManager.DefaultRequestTimeout = 60000 Last edited: Oct 13, 2022 Upvote 0
tips: if you are using PreoptimizedCLV. This will help visualize the images. example; B4X: PCLV.ExtraItems = 10 ' or more and TimeOut B4X: MediaManager.SleepDurationBeforeDownload = 0 MediaManager.DefaultRequestTimeout = 60000