From 05d423cfaedf50ce20526afc16f3377ff05485a5 Mon Sep 17 00:00:00 2001 From: mieszko4 Date: Sat, 19 Jan 2019 11:56:06 +0100 Subject: [PATCH] Simplify `includeBase64` If `image.data` is already base64 encoded string, why do we need this wrapper? The proposed change worked for me on ios and android. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b5cd53a1..74c4ceb59 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ ImagePicker.clean().then(() => { | height | number | Height of result image when used with `cropping` option | | multiple | bool (default false) | Enable or disable multiple image selection | | writeTempFile (ios only) | bool (default true) | When set to false, does not write temporary files for the selected images. This is useful to improve performance when you are retrieving file contents with the `includeBase64` option and don't need to read files from disk. | -| includeBase64 | bool (default false) | When set to true, the image file content will be available as a base64-encoded string in the `data` property. Hint: To use this string as an image source, use it like: ```` | +| includeBase64 | bool (default false) | When set to true, the image file content will be available as a base64-encoded string in the `data` property. Hint: To use this string as an image source, use it like: ```` | | includeExif | bool (default false) | Include image exif data in the response | | avoidEmptySpaceAroundImage | bool (default true) | When set to true, the image will always fill the mask space. | | cropperActiveWidgetColor (android only) | string (default `"#424242"`) | When cropping image, determines ActiveWidget color. |