mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-08 12:43:52 +00:00
22 lines
491 B
C++
22 lines
491 B
C++
/*
|
|
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
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QtCore/QByteArray>
|
|
#include <QtCore/QSize>
|
|
#include <QtGui/QImage>
|
|
|
|
namespace Ui {
|
|
|
|
[[nodiscard]] int SvgPreviewBytesLimit();
|
|
[[nodiscard]] QImage RenderSvgPreview(
|
|
const QByteArray &bytes,
|
|
QSize maxSize);
|
|
|
|
} // namespace Ui
|