本文整理汇总了Python中PySide.QtGui.QImage.bytesPerLine方法的典型用法代码示例。如果您正苦于以下问题:Python QImage.bytesPerLine方法的具体用法?Python QImage.bytesPerLine怎么用?Python QImage.bytesPerLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PySide.QtGui.QImage
的用法示例。
在下文中一共展示了QImage.bytesPerLine方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: image_from_hbitmap
# 需要导入模块: from PySide.QtGui import QImage [as 别名]
# 或者: from PySide.QtGui.QImage import bytesPerLine [as 别名]
def image_from_hbitmap(hdc, bitmap, width, height):
bitmap_info = BITMAPINFO()
memset(byref(bitmap_info), 0, sizeof(bitmap_info))
bitmap_info.bmiHeader.biSize = sizeof(bitmap_info.bmiHeader)
bitmap_info.bmiHeader.biWidth = width
bitmap_info.bmiHeader.biHeight = -height
bitmap_info.bmiHeader.biPlanes = 1
bitmap_info.bmiHeader.biBitCount = 32
bitmap_info.bmiHeader.biCompression = BI_RGB
bitmap_info.bmiHeader.biSizeImage = width * height * 4
image = QImage(width, height, QImage.Format_ARGB32_Premultiplied)
if image.isNull(): return image
data = (c_ubyte * bitmap_info.bmiHeader.biSizeImage)()
if not GetDIBits(hdc, bitmap, 0, height, data, byref(bitmap_info),
DIB_RGB_COLORS):
raise WindowsError('call to GetDIBits failed')
bytes_per_line = image.bytesPerLine()
for y in xrange(0, height):
offset = y * bytes_per_line
line = image.scanLine(y)
for x in xrange(0, bytes_per_line):
line[x] = chr(data[offset + x])
return image