Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Class Members | File Members

invert.h File Reference

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Go to the source code of this file.

Functions

QImage * invertEffect (QString filename, StatusWidget *status)


Function Documentation

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 }


Generated on Sat Apr 2 05:44:23 2005 for AlbumShaper by  doxygen 1.3.9.1