home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November / PCWK1103B.iso / PCWK-txt / Warsztat_Cpp_Builder / fotoretusz.h < prev    next >
C/C++ Source or Header  |  2003-10-01  |  624b  |  15 lines

  1. // Fotoretusz
  2. // podstawowe filtry i efekty graficzne
  3.  
  4. #include <vcl\graphics.hpp>
  5.  
  6. int DostosujJasnosc( Graphics::TBitmap *bmp, int val );
  7. int DostosujKontrast( Graphics::TBitmap *bmp, int val );
  8. int PrzygotujMiniature( Graphics::TBitmap *oryginal, Graphics::TBitmap *miniatura,int szerokosc, int wysokosc);
  9. int DostosujNasycenie (Graphics::TBitmap *bmp, int val );
  10. int DostosujBalans( Graphics::TBitmap *bmp, int xr, int xg, int xb );
  11. int Negatyw( Graphics::TBitmap *bmp);
  12. int OdcienieSzarosci( Graphics::TBitmap *bmp);
  13. int Filtr3x3( Graphics::TBitmap *bmp, Graphics::TBitmap *outbmp, double filtr[3][3] );
  14.  
  15.