mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(server): wide gamut thumbnails (#3658)
This commit is contained in:
parent
4bd77d5899
commit
2069293cc1
27 changed files with 405 additions and 61 deletions
28
web/src/api/open-api/api.ts
generated
28
web/src/api/open-api/api.ts
generated
|
|
@ -1046,6 +1046,20 @@ export interface ClassificationConfig {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
* @enum {string}
|
||||
*/
|
||||
|
||||
export const Colorspace = {
|
||||
Srgb: 'srgb',
|
||||
P3: 'p3'
|
||||
} as const;
|
||||
|
||||
export type Colorspace = typeof Colorspace[keyof typeof Colorspace];
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
|
|
@ -3184,12 +3198,24 @@ export interface SystemConfigTemplateStorageOptionDto {
|
|||
* @interface SystemConfigThumbnailDto
|
||||
*/
|
||||
export interface SystemConfigThumbnailDto {
|
||||
/**
|
||||
*
|
||||
* @type {Colorspace}
|
||||
* @memberof SystemConfigThumbnailDto
|
||||
*/
|
||||
'colorspace': Colorspace;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SystemConfigThumbnailDto
|
||||
*/
|
||||
'jpegSize': number;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
* @memberof SystemConfigThumbnailDto
|
||||
*/
|
||||
'quality': number;
|
||||
/**
|
||||
*
|
||||
* @type {number}
|
||||
|
|
@ -3197,6 +3223,8 @@ export interface SystemConfigThumbnailDto {
|
|||
*/
|
||||
'webpSize': number;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @export
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue