add ability to convert images, remove ico support

This commit is contained in:
rubikscraft
2022-04-25 13:14:44 +02:00
parent 4c3a00f661
commit f876253b05
12 changed files with 566 additions and 321 deletions

View File

@@ -1,31 +1,24 @@
import { Injectable } from '@nestjs/common';
import * as bmp from '@vingle/bmp-js';
import decodeico from 'decode-ico';
import {
FullMime,
ImageMime,
SupportedMimeCategory
} from 'picsur-shared/dist/dto/mimes.dto';
import { AsyncFailable, Fail } from 'picsur-shared/dist/types';
import { QOIColorSpace, QOIdecode, QOIencode } from 'qoi-img';
import sharp from 'sharp';
interface ProcessResult {
image: Buffer;
mime: string;
}
import { QOIColorSpace, QOIencode } from 'qoi-img';
import { ImageResult } from './imageresult';
import { UniversalSharp } from './universal-sharp';
@Injectable()
export class ImageProcessorService {
public async process(
image: Buffer,
mime: FullMime,
userid: string,
): AsyncFailable<ProcessResult> {
): AsyncFailable<ImageResult> {
if (mime.type === SupportedMimeCategory.Image) {
return await this.processStill(image, mime, {});
return await this.processStill(image, mime);
} else if (mime.type === SupportedMimeCategory.Animation) {
return await this.processAnimation(image, mime, {});
return await this.processAnimation(image, mime);
} else {
return Fail('Unsupported mime type');
}
@@ -34,21 +27,10 @@ export class ImageProcessorService {
private async processStill(
image: Buffer,
mime: FullMime,
options: {},
): AsyncFailable<ProcessResult> {
): AsyncFailable<ImageResult> {
let processedMime = mime.mime;
let sharpImage: sharp.Sharp;
// TODO: ensure mime and sharp are in agreement
if (mime.mime === ImageMime.ICO) {
sharpImage = this.icoSharp(image);
} else if (mime.mime === ImageMime.BMP) {
sharpImage = this.bmpSharp(image);
} else if (mime.mime === ImageMime.QOI) {
sharpImage = this.qoiSharp(image);
} else {
sharpImage = sharp(image);
}
let sharpImage = UniversalSharp(image, mime);
processedMime = ImageMime.QOI;
sharpImage = sharpImage.toColorspace('srgb');
@@ -70,7 +52,7 @@ export class ImageProcessorService {
// Png can be more efficient than QOI, but its just sooooooo slow
const qoiImage = QOIencode(pixels, {
channels: metadata.hasAlpha ? 4 : 3,
colorSpace: QOIColorSpace.SRGB,
colorspace: QOIColorSpace.SRGB,
height: metadata.height,
width: metadata.width,
});
@@ -84,49 +66,11 @@ export class ImageProcessorService {
private async processAnimation(
image: Buffer,
mime: FullMime,
options: {},
): AsyncFailable<ProcessResult> {
): AsyncFailable<ImageResult> {
// Apng and gif are stored as is for now
return {
image: image,
mime: mime.mime,
};
}
private bmpSharp(image: Buffer) {
const bitmap = bmp.decode(image, true);
return sharp(bitmap.data, {
raw: {
width: bitmap.width,
height: bitmap.height,
channels: 4,
},
});
}
private icoSharp(image: Buffer) {
const result = decodeico(image);
// Get biggest image
const best = result.sort((a, b) => b.width - a.width)[0];
return sharp(best.data, {
raw: {
width: best.width,
height: best.height,
channels: 4,
},
});
}
private qoiSharp(image: Buffer) {
const result = QOIdecode(image);
return sharp(result.pixels, {
raw: {
width: result.width,
height: result.height,
channels: result.channels,
},
});
}
}