-
QImage 상속시 data loaddev/QT 2014. 8. 18. 16:41
알려진 포멧이 아닐경우 loadFromData 가 실패함.
객체 생성시 크기 미지정시 이미지 데이터를 변경할수 없음.
아래와 같이 하여 null image 를 생성후 데이터를 후에 로드 할 수 있음.
QImage::operator =(QImage(width, height, QImage::Format_xxx));
*(static_cast<QImage*>(this)) = QImage(width, height, QImage::Format_xxx);
이후 scanLine, bits, setPixel 등으로 데이터 조작을 하면 됨.