Files
test1/components/image-editor/consts.ts
2026-03-20 07:33:46 +00:00

7 lines
235 B
TypeScript

export const MB = 1024 * 1024
export const MAX_IMAGE_SIZE_BYTES = 20 * MB
export const NEED_COMPRESS_MIN_SIZE = 3 * MB
export const NEED_COMPRESS_MAX_SIZE = 10 * MB
export const MATTING_MIN_DIM = 32
export const MATTING_MAX_DIM = 4000