mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-06-06 05:49:03 +08:00
8 lines
154 B
Dart
8 lines
154 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:image/image.dart';
|
|
|
|
Future<Uint8List> jpgToPng(Uint8List data) async {
|
|
return encodePng(decodeJpg(data)!);
|
|
}
|