Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use of external storage should be optional #99

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ public void cropImage(
Promise promise) {
ReadableMap offset = options.hasKey("offset") ? options.getMap("offset") : null;
ReadableMap size = options.hasKey("size") ? options.getMap("size") : null;
boolean useInternalCache = options.hasKey("useInternalCache") ? options.getBoolean("useInternalCache") : false;
if (offset == null || size == null ||
!offset.hasKey("x") || !offset.hasKey("y") ||
!size.hasKey("width") || !size.hasKey("height")) {
Expand All @@ -189,6 +190,7 @@ public void cropImage(
(int) offset.getDouble("y"),
(int) size.getDouble("width"),
(int) size.getDouble("height"),
useInternalCache,
promise);
if (options.hasKey("displaySize")) {
ReadableMap targetSize = options.getMap("displaySize");
Expand All @@ -206,6 +208,7 @@ private static class CropTask extends GuardedAsyncTask<Void, Void> {
final int mY;
final int mWidth;
final int mHeight;
final boolean mUseInternalCache;
int mTargetWidth = 0;
int mTargetHeight = 0;
final Promise mPromise;
Expand All @@ -217,6 +220,7 @@ private CropTask(
int y,
int width,
int height,
boolean useInternalCache,
Promise promise) {
super(context);
if (x < 0 || y < 0 || width <= 0 || height <= 0) {
Expand All @@ -230,6 +234,7 @@ private CropTask(
mWidth = width;
mHeight = height;
mPromise = promise;
mUseInternalCache = useInternalCache;
}

public void setTargetSize(int width, int height) {
Expand Down Expand Up @@ -275,7 +280,7 @@ protected void doInBackgroundGuarded(Void... params) {
throw new IOException("Could not determine MIME type");
}

File tempFile = createTempFile(mContext, mimeType);
File tempFile = createTempFile(mContext, mimeType, mUseInternalCache);
writeCompressedBitmapToFile(cropped, mimeType, tempFile);

if (mimeType.equals("image/jpeg")) {
Expand Down Expand Up @@ -467,23 +472,28 @@ private static void writeCompressedBitmapToFile(Bitmap cropped, String mimeType,
*
* @param mimeType the MIME type of the file to create (image/*)
*/
private static File createTempFile(Context context, @Nullable String mimeType)
private static File createTempFile(Context context, @Nullable String mimeType, boolean useInternalCache)
throws IOException {
File externalCacheDir = context.getExternalCacheDir();
File internalCacheDir = context.getCacheDir();
File cacheDir;
if (externalCacheDir == null && internalCacheDir == null) {
File cacheDir = null;

if (internalCacheDir == null && (externalCacheDir == null || useInternalCache)) {
throw new IOException("No cache directory available");
}
if (externalCacheDir == null) {

if (useInternalCache || externalCacheDir == null) {
cacheDir = internalCacheDir;
} else if (externalCacheDir != null && internalCacheDir != null) {
cacheDir = (externalCacheDir.getFreeSpace() > internalCacheDir.getFreeSpace() ?
externalCacheDir : internalCacheDir );
}
else if (internalCacheDir == null) {
cacheDir = externalCacheDir;
} else {
cacheDir = externalCacheDir.getFreeSpace() > internalCacheDir.getFreeSpace() ?
externalCacheDir : internalCacheDir;

if (cacheDir == null) {
throw new IOException("No cache directory available");
}


return File.createTempFile(TEMP_FILE_PREFIX, getFileExtensionForType(mimeType), cacheDir);
}

Expand Down
10 changes: 9 additions & 1 deletion lib/ImageEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ type ImageCropData = {
cover: string,
stretch: string,
}>,

/**
* (Optional) if true, will disable the use of external cache.
* */
useInternalCache?: boolean,
};

class ImageEditor {
Expand All @@ -59,7 +64,10 @@ class ImageEditor {
* will point to the image in the cache path. Remember to delete the
* cropped image from the cache path when you are done with it.
*/
static cropImage(uri: string, cropData: ImageCropData): Promise<string> {
static cropImage(
uri: string,
cropData: ImageCropData
): Promise<string> {
return RNCImageEditor.cropImage(uri, cropData);
}
}
Expand Down
9 changes: 7 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ export type ImageCropData = {
* `displaySize` param is not specified, this has no effect.
*/
resizeMode?: $Maybe<"contain" | "cover" | "stretch">,

/**
* (Optional) if true, will disable the use of external cache.
**/
useInternalCache?: boolean,
};

declare class ImageEditor {
Expand All @@ -46,8 +51,8 @@ declare class ImageEditor {
*/
static cropImage: (
uri: string,
cropData: ImageCropData,
cropData: ImageCropData
) => Promise<string>
}

export default ImageEditor
export default ImageEditor