Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 512 Bytes

save_location.md

File metadata and controls

22 lines (17 loc) · 512 Bytes

Set Save Location

By default, ImagePicker will try to save the image generated from camera to Environment.DIRECTORY_PICTURES with directory name "Camera".

You can change the directory name by using:

val config = ImagePickerConfig {
    savePath = ImagePickerSavePath(dirName)
}

Or you can change the full path of the save location by using:

val config = ImagePickerConfig {
    savePath = ImagePickerSavePath(
        path = fullPath, 
        isRelative = false,
    )
}