mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-14 12:20:32 +02:00
Merge branch 'dev-tools-seb' into dev-docs
This commit is contained in:
@@ -78,6 +78,6 @@ void IntelliImage::drawPlain(const QColor& color){
|
||||
imageData.fill(color);
|
||||
}
|
||||
|
||||
QColor IntelliImage::getPixelColor(int x, int y){
|
||||
return imageData.pixelColor(x,y);
|
||||
QColor IntelliImage::getPixelColor(QPoint& point){
|
||||
return imageData.pixelColor(point);
|
||||
}
|
||||
|
||||
@@ -121,11 +121,10 @@ public:
|
||||
|
||||
/*!
|
||||
* \brief A function that returns the pixelcolor at a certain point
|
||||
* \param x - The x-coordinate of the point.
|
||||
* \param y - The y-coordintae of the point.
|
||||
* \param point - The point from whcih to get the coordinates.
|
||||
* \return The color of the Pixel as QColor.
|
||||
*/
|
||||
virtual QColor getPixelColor(int x, int y);
|
||||
virtual QColor getPixelColor(QPoint& point);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user