QT图形变换技巧

  1. /** 
  2.   水平翻转 
  3.   */  
  4. void ImageViewer::horFilp()  
  5. {  
  6.     image = image.mirrored(truefalse);  
  7.     imageLabel->setPixmap(QPixmap::fromImage(image));  
  8. }  
  9. /** 
  10.   垂直翻转 
  11.   */  
  12. void ImageViewer::verFilp()  
  13. {  
  14.     image = image.mirrored(falsetrue);  
  15.     imageLabel->setPixmap(QPixmap::fromImage(image));  
  16. }  
  17. /** 
  18.   顺时针旋转 
  19.   */  
  20. void ImageViewer::clockwise()  
  21. {  
  22.     QMatrix matrix;  
  23.     matrix.rotate(90.0);  
  24.     image = image.transformed(matrix,Qt::FastTransformation);  
  25.     imageLabel->setPixmap(QPixmap::fromImage(image));  
  26. }  
  27. /** 
  28.   逆时针旋转 
  29.   */  
  30. void ImageViewer::anticlockwise()  
  31. {  
  32.     QMatrix matrix;  
  33.     matrix.rotate(-90.0);  
  34.     image = image.transformed(matrix,Qt::FastTransformation);  
  35.     imageLabel->setPixmap(QPixmap::fromImage(image));  
  36. }  

更多 0

你可能感兴趣的:(qt)