Files
intelliphoto/IntelliPhoto/Painting/Image/IntelliRasterImage.h
Jan Schuffenhauer ef65bcd983 Muckes zeug
2019-12-05 17:30:41 +01:00

22 lines
537 B
C++

#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,int alpha) override;
virtual QImage getDisplayable(int alpha=255) override;
//sets the data for the visible image
virtual void setPolygon(const std::vector<QPoint>& polygonData) override;
};
#endif