mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
feat: Faster image resizing
This commit is contained in:
parent
959ceb1353
commit
7013aef286
@ -7,6 +7,7 @@ import 'package:matrix/encryption/utils/key_verification.dart';
|
|||||||
import 'package:matrix/matrix.dart';
|
import 'package:matrix/matrix.dart';
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
|
|
||||||
|
import 'package:fluffychat/utils/custom_image_resizer.dart';
|
||||||
import 'package:fluffychat/utils/platform_infos.dart';
|
import 'package:fluffychat/utils/platform_infos.dart';
|
||||||
import 'famedlysdk_store.dart';
|
import 'famedlysdk_store.dart';
|
||||||
import 'matrix_sdk_extensions.dart/fluffybox_database.dart';
|
import 'matrix_sdk_extensions.dart/fluffybox_database.dart';
|
||||||
@ -99,5 +100,6 @@ abstract class ClientManager {
|
|||||||
AuthenticationTypes.sso
|
AuthenticationTypes.sso
|
||||||
},
|
},
|
||||||
compute: compute,
|
compute: compute,
|
||||||
|
customImageResizer: PlatformInfos.isMobile ? customImageResizer : null,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
63
lib/utils/custom_image_resizer.dart
Normal file
63
lib/utils/custom_image_resizer.dart
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import 'dart:typed_data';
|
||||||
|
import 'dart:ui';
|
||||||
|
|
||||||
|
import 'package:matrix/matrix.dart';
|
||||||
|
import 'package:native_imaging/native_imaging.dart' as native;
|
||||||
|
|
||||||
|
Future<MatrixImageFileResizedResponse?> customImageResizer(
|
||||||
|
MatrixImageFileResizeArguments arguments) async {
|
||||||
|
await native.init();
|
||||||
|
late native.Image nativeImg;
|
||||||
|
|
||||||
|
try {
|
||||||
|
nativeImg = await native.Image.loadEncoded(arguments.bytes); // load on web
|
||||||
|
} on UnsupportedError {
|
||||||
|
try {
|
||||||
|
// for the other platforms
|
||||||
|
final dartCodec = await instantiateImageCodec(arguments.bytes);
|
||||||
|
final dartFrame = await dartCodec.getNextFrame();
|
||||||
|
final rgbaData = await dartFrame.image.toByteData();
|
||||||
|
if (rgbaData == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
final rgba = Uint8List.view(
|
||||||
|
rgbaData.buffer, rgbaData.offsetInBytes, rgbaData.lengthInBytes);
|
||||||
|
|
||||||
|
final width = dartFrame.image.width;
|
||||||
|
final height = dartFrame.image.height;
|
||||||
|
|
||||||
|
dartFrame.image.dispose();
|
||||||
|
dartCodec.dispose();
|
||||||
|
|
||||||
|
nativeImg = native.Image.fromRGBA(width, height, rgba);
|
||||||
|
} catch (e, s) {
|
||||||
|
Logs().e("Could not generate preview", e, s);
|
||||||
|
rethrow;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final width = nativeImg.width;
|
||||||
|
final height = nativeImg.height;
|
||||||
|
|
||||||
|
final max = arguments.maxDimension;
|
||||||
|
if (width > max || height > max) {
|
||||||
|
var w = max, h = max;
|
||||||
|
if (width > height) {
|
||||||
|
h = max * height ~/ width;
|
||||||
|
} else {
|
||||||
|
w = max * width ~/ height;
|
||||||
|
}
|
||||||
|
|
||||||
|
final scaledImg = nativeImg.resample(w, h, native.Transform.lanczos);
|
||||||
|
nativeImg.free();
|
||||||
|
nativeImg = scaledImg;
|
||||||
|
}
|
||||||
|
final jpegBytes = await nativeImg.toJpeg(75);
|
||||||
|
|
||||||
|
return MatrixImageFileResizedResponse(
|
||||||
|
bytes: jpegBytes,
|
||||||
|
width: nativeImg.width,
|
||||||
|
height: nativeImg.height,
|
||||||
|
blurhash: arguments.calcBlurhash ? nativeImg.toBlurhash(3, 3) : null,
|
||||||
|
);
|
||||||
|
}
|
@ -1047,6 +1047,15 @@ packages:
|
|||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.2"
|
version: "1.0.2"
|
||||||
|
native_imaging:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
path: "."
|
||||||
|
ref: HEAD
|
||||||
|
resolved-ref: "8c6a5afe2c965b79b5959bb4b49c4aad020cb980"
|
||||||
|
url: "https://gitlab.com/famedly/company/frontend/libraries/native_imaging.git"
|
||||||
|
source: git
|
||||||
|
version: "0.1.0"
|
||||||
nested:
|
nested:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -60,6 +60,8 @@ dependencies:
|
|||||||
lottie: ^1.2.2
|
lottie: ^1.2.2
|
||||||
matrix: ^0.8.18
|
matrix: ^0.8.18
|
||||||
matrix_link_text: ^1.0.2
|
matrix_link_text: ^1.0.2
|
||||||
|
native_imaging:
|
||||||
|
git: https://gitlab.com/famedly/company/frontend/libraries/native_imaging.git
|
||||||
open_noti_settings: ^0.4.0
|
open_noti_settings: ^0.4.0
|
||||||
package_info_plus: ^1.3.0
|
package_info_plus: ^1.3.0
|
||||||
path_provider: ^2.0.9
|
path_provider: ^2.0.9
|
||||||
|
Loading…
Reference in New Issue
Block a user