16 lines
317 B
C
16 lines
317 B
C
|
#ifndef IMAGERESIZE_H
|
||
|
#define IMAGERESIZE_H
|
||
|
|
||
|
#include <QImage>
|
||
|
|
||
|
class ImageResize
|
||
|
{
|
||
|
public:
|
||
|
ImageResize();
|
||
|
QImage fixedResize(QImage image, int width, int height, bool keepRatio, bool doNotEnlarge);
|
||
|
QImage pergentageResize(QImage image, int width, int height);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // IMAGERESIZE_H
|