下你所需,载你所想!
汇集开发技术源码资料

qt5图像处理

:6.132KB :1 :2022-10-19 16:23:11

部分简介

qt5图像处理如果开发者对于本文件有需要的可以参考。
qt5图像处理
该代码是qt5实现的图像处理案例。
void ImgProcessor::ShowZoomIn()
{
if(img.isNull())
return;
QMatrix martix;
martix.scale(2,2);
img = img.transformed(martix);
showWidget->imageLabel->setPixmap(QPixmap::fromImage(img));
}
void ImgProcessor::ShowZoomOut()
{
if(img.isNull())
return;
QMatrix matrix;
matrix.scale(0.5,0.5);
img = img.transformed(matrix);
showWidget->imageLabel->setPixmap(QPixmap::fromImage(img));
}
.
├── ImageProcessor
│ ├── ImageProcessor.pro
│ ├── imgprocessor.cpp
│ ├── imgprocessor.h
│ ├── main.cpp
│ ├── showwidget.cpp
│ └── showwidget.h
└── ImageProcessor.rar
1 directory, 7 files

qt5图像处理

热门推荐

相关文章