Merge branch 'krille/send-image-size' into 'master'
Make thumbnailsize configurable See merge request famedly/famedlysdk!271
This commit is contained in:
commit
ed86466a19
|
@ -478,6 +478,7 @@ class Room {
|
|||
Event inReplyTo,
|
||||
Map<String, dynamic> info,
|
||||
bool waitUntilSent = false,
|
||||
int thumbnailSize = Client.defaultThumbnailSize,
|
||||
}) async {
|
||||
Image fileImage;
|
||||
Image thumbnailImage;
|
||||
|
@ -506,7 +507,7 @@ class Room {
|
|||
thumbnailPathParts.last = 'thumbnail_' + thumbnailPathParts.last + '.jpg';
|
||||
final thumbnailPath = thumbnailPathParts.join('/');
|
||||
thumbnail = MatrixFile(bytes: file.bytes, path: thumbnailPath);
|
||||
await thumbnail.resize(width: Client.defaultThumbnailSize);
|
||||
await thumbnail.resize(width: thumbnailSize);
|
||||
fileImage = decodeImage(file.bytes.toList());
|
||||
thumbnailImage = decodeImage(thumbnail.bytes.toList());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue