This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
QImage * | invertEffect (QString filename, StatusWidget *status) |
|
Definition at line 39 of file invert.cpp. References editedImage. Referenced by EditingInterface::applyEffect(). 00040 { 00041 //load image 00042 QImage* editedImage = new QImage( filename ); 00043 00044 //invert pixel colors, but not alpha components 00045 editedImage->invertPixels( false ); 00046 00047 //return pointer to edited image 00048 return editedImage; 00049 }
|