展开全部
使用GDI
void CAaaView::OnDraw(CDC* pDC)
{
CAaaDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
Graphics graphics( pDC->m_hDC );
Image image(L"2.bmp");
Point points[] = { Point(0, 0), Point(image.GetWidth(), 0),
Point(0, image.GetHeight())};
Matrix matrix(1,0,0,1,230,10); // 定义一个单位矩阵,坐标原点在(230,10)
matrix.Rotate(30); // 顺时针旋转30 度
matrix.Scale(0.63,0.6); // X 和 Y 方向分别乘以0.63 和0.6 比例因子
matrix.TransformPoints(points, 3); // 用该矩阵转换points
graphics.DrawImage(&image, points, 3);
// TODO: add draw code for native data here
}
void CAaaView::OnDraw(CDC* pDC)
{
CAaaDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
Graphics graphics( pDC->m_hDC );
Image image(L"2.bmp");
Point points[] = { Point(0, 0), Point(image.GetWidth(), 0),
Point(0, image.GetHeight())};
Matrix matrix(1,0,0,1,230,10); // 定义一个单位矩阵,坐标原点在(230,10)
matrix.Rotate(30); // 顺时针旋转30 度
matrix.Scale(0.63,0.6); // X 和 Y 方向分别乘以0.63 和0.6 比例因子
matrix.TransformPoints(points, 3); // 用该矩阵转换points
graphics.DrawImage(&image, points, 3);
// TODO: add draw code for native data here
}
追问
我的意思是程序编好了然后怎么对一张图片使用
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询