mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-14 12:20:32 +02:00
Some image change
This commit is contained in:
18
IntelliPhoto/Painting/Image/IntelliRasterImage.h
Normal file
18
IntelliPhoto/Painting/Image/IntelliRasterImage.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef INTELLIRASTER_H
|
||||
#define INTELLIRASTER_H
|
||||
|
||||
#include"Image/IntelliImage.h"
|
||||
|
||||
class IntelliRasterimage : public IntelliImage{
|
||||
public:
|
||||
IntelliRasterimage(int weight, int height);
|
||||
virtual ~IntelliRasterimage() override;
|
||||
|
||||
//returns the filtered output
|
||||
virtual QImage getDisplayable(const QSize& displaySize) override;
|
||||
|
||||
//sets the data for the visible image
|
||||
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user