forked from calcom/cal.com
-
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.
resize image before storing (calcom#831)
* resize image fn * wip * simplify transform * comment * fix * rm log * allow pass-through for non-base-64 Co-authored-by: Alex van Andel <[email protected]>
- Loading branch information
Showing
5 changed files
with
511 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import jimp from "jimp"; | ||
|
||
export async function resizeBase64Image( | ||
base64OrUrl: string, | ||
opts?: { | ||
maxSize?: number; | ||
} | ||
) { | ||
if (!base64OrUrl.startsWith("data:")) { | ||
// might be a `https://` or something | ||
return base64OrUrl; | ||
} | ||
const mimeMatch = base64OrUrl.match(/^data:(\w+\/\w+);/); | ||
const mimetype = mimeMatch?.[1]; | ||
if (!mimetype) { | ||
throw new Error(`Could not distinguish mimetype`); | ||
} | ||
const buffer = Buffer.from(base64OrUrl.replace(/^data:image\/\w+;base64,/, ""), "base64"); | ||
|
||
const { | ||
// 96px is the height of the image on https://cal.com/peer | ||
maxSize = 96 * 4, | ||
} = opts ?? {}; | ||
const image = await jimp.read(buffer); | ||
if (image.getHeight() !== image.getHeight()) { | ||
// this could be handled later | ||
throw new Error("Image is not a square"); | ||
} | ||
const currentSize = Math.max(image.getWidth(), image.getHeight()); | ||
if (currentSize > maxSize) { | ||
image.resize(jimp.AUTO, maxSize); | ||
} | ||
const newBuffer = await image.getBufferAsync(mimetype); | ||
|
||
return `data:${mimetype};base64,${newBuffer.toString("base64")}`; | ||
} |
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
Oops, something went wrong.