Skip to content
Open
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
2 changes: 1 addition & 1 deletion utility/io.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ class IOHelper {
const crop_h = selectionInfo.height
const base64_url_result = await Jimp.read(arrayBuffer)
.then(async (img) => {
let cropped_img = await img.crop(crop_x, crop_y, crop_w, crop_h)
let cropped_img = await img.crop(crop_x, crop_y, crop_w + 1, crop_h + 1)

let resized_img
if (b_resize) {
Expand Down