Can't get images from gallery through Fuse.CameraRoll on iOS

When I try get image on iOS, I get in console:
2018-03-25 21:20:32.073830+0700 TestApp[8297:4231128] [discovery] errors encountered while discovering extensions: Error Domain=PlugInKit Code=13 “query cancelled” UserInfo={NSLocalizedDescription=query cancelled}
2018-03-25 21:20:32.219451+0700 TestApp[8297:4224964] Mar 25, 2018 9:20:32 pm : ProfileEditPage: image selected: {“path”:"/private/var/mobile/Containers/Data/Application/EC0CFA7F-B03B-4F57-83CA-8170A41B9FB5/tmp/images/IMG_2214.JPG",“name”:“IMG_2214.JPG”,“width”:1536,“height”:2048,“info”:{}}
2018-03-25 21:20:32.275647+0700 TestApp[8297:4224964] Mar 25, 2018 9:20:32 pm : ProfileEditPage: newImage: {“path”:"/private/var/mobile/Containers/Data/Application/EC0CFA7F-B03B-4F57-83CA-8170A41B9FB5/tmp/images",“name”:“images”,“width”:0,“height”:0,“info”:{}}
2018-03-25 21:20:32.281708+0700 TestApp[8297:4224707] Error: InternalError: ImageSource error: ‘Loading image from file failed. /private/var/mobile/containers/data/application/ec0cfa7f-b03b-4f57-83ca-8170a41b9fb5/tmp/images’: /private/var/mobile/containers/data/application/ec0cfa7f-b03b-4f57-83ca-8170a41b9fb5/tmp/images in Fuse.Resources.FileImageSourceImpl</usr/local/share/uno/Packages/Fuse.Elements/1.8.0/Resources/ImageSource.uno:112>

I use Fuse 1.8 on MacOS

On Android it works.

I am sorry for stupid question.
The reason was in performInPlace: false, when I deleted it, all became works.
var options = {
mode: ImageTools.KEEP_ASPECT,
desiredWidth: 480,
desiredHeight: 640,
performInPlace: false
};

function onClickPhotoFromGallery() {
CameraRoll.getImage()
.then(function(image) {
log("image selected: " + JSON.stringify(image));
ImageTools.resize(image, options)
.then(function(newImage) {
log("newImage: " + JSON.stringify(newImage));
photoPath.value = newImage.path;
isDialogShowing.value = false;
dataChanged.value = “Visible”;
});
}, function(error) {
log(“error occured”);
isDialogShowing.value = false;
});
}