mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 06:26:18 +00:00
Added ability to send modified images.
This commit is contained in:
26
Telegram/SourceFiles/editor/photo_editor_common.cpp
Normal file
26
Telegram/SourceFiles/editor/photo_editor_common.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
This file is part of Telegram Desktop,
|
||||
the official desktop application for the Telegram messaging service.
|
||||
|
||||
For license and copyright information please follow this link:
|
||||
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
*/
|
||||
#include "editor/photo_editor_common.h"
|
||||
|
||||
namespace Editor {
|
||||
|
||||
QImage ImageModified(QImage image, const PhotoModifications &mods) {
|
||||
if (!mods) {
|
||||
return image;
|
||||
}
|
||||
QTransform transform;
|
||||
if (mods.flipped) {
|
||||
transform.scale(-1, 1);
|
||||
}
|
||||
if (mods.angle) {
|
||||
transform.rotate(mods.angle);
|
||||
}
|
||||
return image.transformed(transform);
|
||||
}
|
||||
|
||||
} // namespace Editor
|
Reference in New Issue
Block a user