forked from ChatGPTNextWeb/ChatGPT-Next-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ChatGPTNextWeb/ChatGPT-Next…
- Loading branch information
Showing
12 changed files
with
110 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import heic2any from "heic2any"; | ||
|
||
export function compressImage(file: File, maxSize: number): Promise<string> { | ||
return new Promise((resolve, reject) => { | ||
const reader = new FileReader(); | ||
reader.onload = (readerEvent: any) => { | ||
const image = new Image(); | ||
image.onload = () => { | ||
let canvas = document.createElement("canvas"); | ||
let ctx = canvas.getContext("2d"); | ||
let width = image.width; | ||
let height = image.height; | ||
let quality = 0.9; | ||
let dataUrl; | ||
|
||
do { | ||
canvas.width = width; | ||
canvas.height = height; | ||
ctx?.clearRect(0, 0, canvas.width, canvas.height); | ||
ctx?.drawImage(image, 0, 0, width, height); | ||
dataUrl = canvas.toDataURL("image/jpeg", quality); | ||
|
||
if (dataUrl.length < maxSize) break; | ||
|
||
if (quality > 0.5) { | ||
// Prioritize quality reduction | ||
quality -= 0.1; | ||
} else { | ||
// Then reduce the size | ||
width *= 0.9; | ||
height *= 0.9; | ||
} | ||
} while (dataUrl.length > maxSize); | ||
|
||
resolve(dataUrl); | ||
}; | ||
image.onerror = reject; | ||
image.src = readerEvent.target.result; | ||
}; | ||
reader.onerror = reject; | ||
|
||
if (file.type.includes("heic")) { | ||
heic2any({ blob: file, toType: "image/jpeg" }) | ||
.then((blob) => { | ||
reader.readAsDataURL(blob as Blob); | ||
}) | ||
.catch((e) => { | ||
reject(e); | ||
}); | ||
} | ||
|
||
reader.readAsDataURL(file); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters