Мне нужно прочитать tga с помощью pyqt, и пока, похоже, это работает нормально, за исключением случаев, когда tga имеет 2 байта на пиксель, а не 3 или 4. Мой код взят отсюда http://pastebin.com/b5Vz61dZ.
В частности, этот раздел:
def getPixel( file, bytesPerPixel):
'Given the file object f, and number of bytes per pixel, read in the next pixel and return a qRgba uint'
pixel = []
for i in range(bytesPerPixel):
pixel.append(ord(file.read(1)))
if bytesPerPixel==4:
pixel = [pixel[2], pixel[1], pixel[0], pixel[3]]
color = qRgba(*pixel)
elif bytesPerPixel == 3:
pixel = [pixel[2], pixel[1], pixel[0]]
color = qRgb(*pixel)
elif bytesPerPixel == 2:
# if greyscale
color = QColor.fromHsv( 0, pixel[0] , pixel[1])
color = color.value()
return color
и эта часть:
elif bytesPerPixel == 2:
# if greyscale
color = QColor.fromHsv( 0, pixel[0] , pixel[1])
color = color.value()
как мне ввести значения pixel [0] и pixel [1], чтобы получить значения в правильном формате и цветовом пространстве?
Любые мысли, идеи или помощь, пожалуйста!