我在 python 3.3 上使用 Tkinter 和 python.boost。
我想创建一个在中心显示图像的简单 gui。图像使用双精度值存储在 C++ 类中。为了使用 tkinter 显示图像,我必须创建一个PhotoImage对象。
我读过可以使用Image.fromstring(mode, size, data, decoder, parameters)方法创建一个 PhotoImage 对象。我的想法是:如果我创建一个将缓冲区转换为 std::string 的函数,我将能够创建一个 PhotoImage 对象。
我的 C++ 类是:
class DoubleImage
{
double* m_dBuffer; // Values from 0 to 1
public:
DoubleImage(const char* fileName, const int width, const int height);
/* Class Functions */
std::string toString( void ) {
double *pSrc = m_dBuffer;
int size = getWidth() * getHeight() * getChannels();
char* buffer = new char[size];
char* pbuffer = buffer;
for ( int i = 0; i < size; ++i, ++pSrc, ++pbuffer ) {
*pbuffer = ((char) (*pSrc * 255.0));
}
std::string ret(buffer);
delete[] buffer;
return ret;
}
};
而python boost代码是:
using namespace boost::python;
BOOST_PYTHON_MODULE(ImageModule)
{
class_<DoubleImage>("DoubleImage", init<const char*, const int, const int>())
.add_property("width", &DoubleImage::getWidth)
.add_property("height", &DoubleImage::getHeight)
.add_property("channels", &DoubleImage::getChannels)
// Some functions ...
.def("toString", &DoubleImage::toString)
;
}
但是当我在 python 中运行 toString 时,会出现以下错误:
>>> from ImageModule import *
>>> img = DoubleImage('001.png', 300, 200)
>>> buffer = img.toString()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x86 in position 155: invalid start byte
>>>
我有两个问题,首先我错过了什么?第二,一旦我解决了这个错误,我必须使用哪些参数来创建 PhotoImage 对象?