转码工具页面功能

This commit is contained in:
taocong
2026-05-25 10:18:19 +08:00
commit 3db5fe7f13
107 changed files with 8591 additions and 0 deletions
@@ -0,0 +1,23 @@
#ifndef ELAEXPONENTIALBLUR_H
#define ELAEXPONENTIALBLUR_H
#include <QObject>
#include "ElaProperty.h"
#include "ElaSingleton.h"
class ElaExponentialBlurPrivate;
class ELA_EXPORT ElaExponentialBlur : public QObject
{
Q_OBJECT
Q_SINGLETON_CREATE_H(ElaExponentialBlur)
Q_Q_CREATE(ElaExponentialBlur)
private:
explicit ElaExponentialBlur(QObject* parent = nullptr);
~ElaExponentialBlur();
public:
static QPixmap doExponentialBlur(QImage img, const quint16& blurRadius);
};
#endif // ELAEXPONENTIALBLUR_H