12 2013 档案

摘要:int TransformImageBuffer(unsigned char* pImageBuffer, int width, int height,unsigned char* targetImageBuffer){ //center flip int nRet = 0; int length = width * height; for(int i = 0; i < length / 2; i++) { targetImageBuffer[i] = pImageBuffer[length -i -1]; targetImag... 阅读全文
posted @ 2013-12-19 09:38 仰望星辰 阅读(645) 评论(0) 推荐(0)
摘要:在silverlight中由于需要添加中键事件,所以通过hook来捕获,但是在IE9上无法运行,该问题是由于IE9设置问题,如下图修改配置, 取消选择即可: 阅读全文
posted @ 2013-12-12 18:04 仰望星辰 阅读(240) 评论(0) 推荐(0)