blurutility.h 237 B

12345678910111213
  1. #ifndef BLURUTILITY_H
  2. #define BLURUTILITY_H
  3. #include <QColor>
  4. #include <QImage>
  5. class BlurUtility
  6. {
  7. public:
  8. static bool CreateInnerShadow(QImage &image, const QColor &color = Qt::black, int radius = 8);
  9. };
  10. #endif // BLURUTILITY_H