MIME
我想生成由 Html 定义的多媒体文档(所谓的)。
所以我可以将相关文件(例如 htm、图像...)打包到a single mhtml (MIME) file here
(例如:mime_example.doc)中。
但我只得到php implementation here
:一个基本的 MIME 1.0 类助手
(在“基本的 MIME 1.0 类助手”部分)
和the method to generate
mhtml 文件:
header('Content-Type: application/msword');
header('Content-disposition: filename=mydocument.doc')
$doc = New mime10class();
$doc->addFile('mydocument.htm','text/html; charset="utf-8"','Hello, world !');
$doc->addFile('subdir\anotherfile.htm','text/html; charset="utf-8"','Hi there.');
echo $doc->getFile();
但是如何使用 c++ 来实现呢?
(帮助链接:聚合文档的 MIME 封装,例如 HTML (MHTML))