c++ - 关于在 boost.python 中将 Python 二进制文件转换为 C++ 二进制文件的错误

标签 c++ python boost-python

我必须通过 boost::python 将一些二进制文件从 Python 转换为 C++。二进制文件可能来自图像或文本文件。但是将图像文件的二进制文件转换为 C++ 时会出现一些错误。以下是示例。

C++

#include <boost/python.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <fstream>
#include <iostream>

using namespace boost::python;
void greet(char *name,char *ss)
{
    std::ofstream fout(name,std::ios::binary);
    std::cout<< "This length is:" << strlen(ss) <<std::endl;
    fout.write(ss.strlen);
    fout.close();
    return;
}

BOOST_PYTHON_MODULE(ctopy)
{
    def("greet",greet);
}

python :

import ctopy
#It is right.
f=open("t1.txt","rb")
ctopy.greet("t2.txt",f.read())
f.close()

#Do a error.There isn't data in the file "p2.jpg".
f2=open("p1.jpg","rb")
ctopy.greet("p2.jpg",f2.read()) #error.the file "p2.jpg" will be a empty file.
f2.close()

如何将图像的二进制转换为c++?

最佳答案

binary file 的编码通常取决于编程语言以外的因素,例如文件类型、操作系统等。例如,关于 POSIX ,一个文本文件包含组织成零行或多行的字符,并且它在 C++ 和 Python 中的表示方式相同。两种语言只需要对给定格式使用正确的编码。在这种情况下,将 Python 二进制流转换为 C++ 二进制流没有特殊过程,因为它在两种语言中都是原始字节流。

原始代码中的方法有两个问题:

  • strlen() 应用于确定以 null 结尾的字符串的长度。如果二进制文件包含值为 \0 的字节,则 strlen() 将不会返回数据的整个大小。
  • 数据大小丢失,因为使用 char* 而不是 std::string。考虑使用 std::string,因为它通过 size() 提供大小并允许在字符串本身中包含空字符。另一种解决方案是在数据旁边明确提供数据的大小。

这是一个完整的 Boost.Python 示例:

#include <boost/python.hpp>
#include <fstream>
#include <iostream>

void write_file(const std::string& name, const std::string& data)
{
  std::cout << "This length is: " << data.size() << std::endl;
  std::ofstream fout(name.c_str(), std::ios::binary);
  fout.write(data.data(), data.size());
  fout.close();
}

BOOST_PYTHON_MODULE(example)
{
  using namespace boost::python;
  def("write", &write_file);
}

以及示例 Python 代码 (test.py):

import example

with open("t1.txt", "rb") as f:
    example.write("t2.txt", f.read())

with open("p1.png", "rb") as f:
    example.write("p2.png", f.read())

还有用法,我下载的地方this图像并创建一个简单的文本文件,然后使用上面的代码创建它们的拷贝:

[twsansbury]$ wget http://www.boost.org/style-v2/css_0/get-boost.png -O p1.png >> /dev/null 2>&1
[twsansbury]$ echo "this is a test" > t1.txt
[twsansbury]$ ./test.py 
This length is: 15
This length is: 27054
[twsansbury]$ md5sum t1.txt t2.txt
e19c1283c925b3206685ff522acfe3e6  t1.txt
e19c1283c925b3206685ff522acfe3e6  t2.txt
[twsansbury]$ md5sum p1.png p2.png
fe6240bff9b29a90308ef0e2ba959173  p1.png
fe6240bff9b29a90308ef0e2ba959173  p2.png

md5校验和一致,说明文件内容相同。

关于c++ - 关于在 boost.python 中将 Python 二进制文件转换为 C++ 二进制文件的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14814073/

相关文章:

Python/Pandas 分箱数据 Timedelta

c++ - 使用评估为 None 类型的弱指针

c++ - boost python 返回与 make_constructor 相同的实例

c++ - 将内存中的 sqlite 数据库转换为 blob/char 数组

c++ - UCS-2LE 文本文件解析

python - 代码只正确运行了一半,并且在 f_num=num+num_rev 点处,这里输出只有 num_rev 而不是 f_num

python - RDKit 的函数 MolFromInchi 不起作用

c++ - 将 boost 随机数生成器合并为类变量

c++ - 分组网格上的食人魔碰撞检测?

python - 如何序列化类对象特定字段的数组(getStream)