Module com.gluonhq.attach.pictures
Package com.gluonhq.attach.pictures.impl
Class IOSPicturesService
java.lang.Object
com.gluonhq.attach.pictures.impl.IOSPicturesService
- All Implemented Interfaces:
PicturesService
Note:Since iOS 10 requires
NSCameraUsageDescription
,
NSPhotoLibraryUsageDescription
and
NSPhotoLibraryAddUsageDescription
in pList.-
Property Summary
TypePropertyDescriptionjavafx.beans.property.ReadOnlyObjectProperty<javafx.scene.image.Image>
A read-only property containing the image taken from the camera or gallery or null if it failed, or it was cancelled. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Retrieve an image from the device's gallery of images.void
asyncTakePhoto
(boolean savePhoto) Use the device's camera to take a photo, and retrieve anImage
.Retrieve the file associated to the original picture generated bytakePhoto(true)
or the file related to the picture selected withPicturesService.loadImageFromGallery()
.javafx.beans.property.ReadOnlyObjectProperty<javafx.scene.image.Image>
A read-only property containing the image taken from the camera or gallery or null if it failed, or it was cancelled.Optional<javafx.scene.image.Image>
Retrieve an image from the device's gallery of images, in a blocking way.static void
static void
Optional<javafx.scene.image.Image>
takePhoto
(boolean savePhoto) Use the device's camera to take a photo, in a blocking way, and retrieve anImage
.static void
takePicture
(boolean savePhoto)
-
Property Details
-
image
public javafx.beans.property.ReadOnlyObjectProperty<javafx.scene.image.Image> imageProperty- Specified by:
imageProperty
in interfacePicturesService
- Returns:
- a read-only object property containing an image that can be null
-
-
Constructor Details
-
IOSPicturesService
public IOSPicturesService()
-
-
Method Details
-
takePhoto
Description copied from interface:PicturesService
Use the device's camera to take a photo, in a blocking way, and retrieve anImage
. It can be saved as well in the device's public album.- Specified by:
takePhoto
in interfacePicturesService
- Parameters:
savePhoto
- if true, image is saved to public album- Returns:
- an Optional with the Image or empty if it failed, or it was cancelled
-
asyncTakePhoto
public void asyncTakePhoto(boolean savePhoto) Description copied from interface:PicturesService
Use the device's camera to take a photo, and retrieve anImage
. It can be saved as well in the device's public album.- Specified by:
asyncTakePhoto
in interfacePicturesService
- Parameters:
savePhoto
- if true, image is saved to public album
-
loadImageFromGallery
Description copied from interface:PicturesService
Retrieve an image from the device's gallery of images, in a blocking way.- Specified by:
loadImageFromGallery
in interfacePicturesService
- Returns:
- an Optional with the Image or empty if it failed, or it was cancelled
-
asyncLoadImageFromGallery
public void asyncLoadImageFromGallery()Description copied from interface:PicturesService
Retrieve an image from the device's gallery of images.- Specified by:
asyncLoadImageFromGallery
in interfacePicturesService
-
getImageFile
Description copied from interface:PicturesService
Retrieve the file associated to the original picture generated bytakePhoto(true)
or the file related to the picture selected withPicturesService.loadImageFromGallery()
.- Specified by:
getImageFile
in interfacePicturesService
- Returns:
- an Optional with the File associated with the original image.
-
imageProperty
public javafx.beans.property.ReadOnlyObjectProperty<javafx.scene.image.Image> imageProperty()Description copied from interface:PicturesService
A read-only property containing the image taken from the camera or gallery or null if it failed, or it was cancelled.- Specified by:
imageProperty
in interfacePicturesService
- Returns:
- a read-only object property containing an image that can be null
-
takePicture
public static void takePicture(boolean savePhoto) -
selectPicture
public static void selectPicture() -
setResult
-