Skip to content

Commit

Permalink
fixed FullImagePath
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas committed Jun 17, 2019
1 parent 1ea4ab8 commit 403e463
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static JSONObject jsonHelper(Anyline4Activity activity, ScanResult<?> sca

File imageFileFull = TempFileUtil.createTempFileCheckCache(activity, UUID.randomUUID().toString(), ".jpg");
scanResult.getFullImage().save(imageFileFull, 90);
jsonObject.put("fullImagePath", imageFile.getAbsolutePath());
jsonObject.put("fullImagePath", imageFileFull.getAbsolutePath());

if (scanResult.getOutline() != null) {
jsonObject.put("outline", activity.jsonForOutline(scanResult.getOutline()));
Expand Down

0 comments on commit 403e463

Please sign in to comment.