Jack Cole Well-Known Member Licensed User Longtime User May 7, 2017 #1 In B4A, it is possible with the Jpeg library to load a portion of an image. For example: B4X: Inp = File.OpenInput(File.DirAssets, Image) bmp=jpg.LoadJpegArea(In,0,0,slicewidth,sliceheight) Is there a way to do this in B4i? Best regards, Jack
In B4A, it is possible with the Jpeg library to load a portion of an image. For example: B4X: Inp = File.OpenInput(File.DirAssets, Image) bmp=jpg.LoadJpegArea(In,0,0,slicewidth,sliceheight) Is there a way to do this in B4i? Best regards, Jack
Erel B4X founder Staff member Licensed User Longtime User May 8, 2017 #2 You will need to load the full image and then crop it. Upvote 0