tdesktop/Telegram/SourceFiles/editor/photo_editor_common.cpp

31 lines
690 B
C++
Raw Normal View History

2021-02-08 03:13:40 +00:00
/*
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);
}
auto newImage = image.transformed(transform);
if (mods.crop.isValid()) {
newImage = newImage.copy(mods.crop);
}
return newImage;
2021-02-08 03:13:40 +00:00
}
} // namespace Editor