Hey all! I’m working on a game for Ringo and I need to convert some bitmaps. However, it appears that the Image Converter 565 tool referenced here is only for Windows. Is the source code available for Image Converter 565, or is there another converter solution that anyone is aware of that can run on Linux?
For what it’s worth, I also tried to compile the other LCD image converter tool that is mentioned (https://github.com/riuson/lcd-image-converter).
qmake
runs fine, however during the make
process my compiler is throwing an error:
classes/imageeditor/toolfill.cpp:194:41: error: invalid use of incomplete type ‘const class QPainterPath’
194 | if (!this->mParameters->selectedPath().isEmpty()) {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
In file included from /usr/include/qt/QtGui/qtransform.h:43,
from /usr/include/qt/QtGui/qimage.h:48,
from /usr/include/qt/QtGui/QImage:1,
from classes/imageeditor/toolfill.h:24,
from classes/imageeditor/toolfill.cpp:20:
/usr/include/qt/QtGui/qmatrix.h:54:7: note: forward declaration of ‘class QPainterPath’
54 | class QPainterPath;