IImage::Draw的问题

qianrj   2009-3-2 15:51 楼主
调用IImage :: Draw时, 如果传递了第3个参数, 老是出错, 怎么回事?
HRESULT Draw(
  HDC                  hdc,
  const RECT*          dstRect,
  OPTIONAL const RECT* srcRect
);


返回 E_INVALIDARG 错误, 我仔细检查了srcRect, 确定srcRect参数没有错误的, 如果设置srcRect为NULL, 则是成功的

回复评论 (6)

估计还是参数srcRect 有问题
点赞  2009-3-2 15:54
引用: 引用 1 楼 ultrapro 的回复:
估计还是参数srcRect 有问题


不会吧?

绘制的客户区域是:0 , 0, 200, 40

RECT dstRect(176, 0, 200, 40)(即从客户区176的地方开始贴图)
RECT srcRect(24, 0, 49, 99)(截取图片右半边, 图片是49*99)

这样的参数应该没有问题吧

如果是这样:
RECT srcRect(0, 0, 49, 99), 也成功, 没有问题, 但不是我想要的
点赞  2009-3-2 16:04
UP
点赞  2009-3-3 13:48
楼主看看这个http://hi.baidu.com/nosoft008/blog/item/cd6d3131ded576ac5fdf0e66.html
点赞  2009-3-3 17:33
srcRect
[in] An optional pointer to a RECT that specifies, in 0.01mm units, the portion of the image to be drawn in dstRect.

To display the entire image, set this value to NULL.


in 0.01mm units ???
点赞  2009-3-3 17:51
点赞  2009-8-14 11:03
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复