Android Question Intent with existed file

ykucuk

Well-Known Member
Licensed User
Longtime User
Hello,

How can i open intent with file existed for the crop.

note: i don't want user pick image from the library.


B4X:
Sub Galeria(Directory As String, PictureName As String)

Dim i As Intent

onoff = True

i.Initialize(i.ACTION_PICK, "") ' I need to change this line with existed file  e.g. FileDirRootExternal,123456.jpg
 

i.SetType("image/*")

    i.PutExtra("output", ParseUri("file://" & File.Combine(Directory, PictureName))) 'output folder you set OpenCam(File.DirRootExternal, "1.jpg")

i.PutExtra("crop", "true") 'crop ON

i.PutExtra("aspectX", 200) 'crop aspects

i.PutExtra("aspectY", 200) 'crop aspects

i.PutExtra("outputX", 50%x) 'crop size

i.PutExtra("outputY", 50%x) 'crop size

StartActivity(i)



End Sub
 
Top