尝试将图片合并到 OpenTBS 模板失败并显示 "failed to found the picture"(原文如此)
Trying to merge a picture into an OpenTBS template fails with "failed to found the picture" (sic)
我正在使用 OpenTBS 将 PHP 中的数据合并到单词模板中。
所有正常的变量合并都很好,但是我无法成功合并图像文件。
我的 Word 文件中图像的占位符如下所示:
[onshow.logo;ope=changepic]
当运行 PHP 脚本时,我总是得到
TinyButStrong Error OpenTBS Plugin: Parameter ope=changepic used in the field [onshow.logo] has failed to found the picture. The process is ending, unless you set NoErr property to true.
我尝试将我的 php 变量设置为图片的 URL 或图片在服务器上的绝对路径,均失败:
- https://path.to.my.picture/picture.jpg
- /var/drupal/platform/html/sites/default/files/2022-02/picture.jpg
这里有什么明显的遗漏吗?
默认情况下,OpenTBS 希望将 TBS 字段放在图片之后。
您可以使用参数 tagpos
调整此相对位置,因此它可以在之后、之前或内部(在图像 属性 中)。
更多详情吃documentation.
我正在使用 OpenTBS 将 PHP 中的数据合并到单词模板中。
所有正常的变量合并都很好,但是我无法成功合并图像文件。
我的 Word 文件中图像的占位符如下所示:
[onshow.logo;ope=changepic]
当运行 PHP 脚本时,我总是得到
TinyButStrong Error OpenTBS Plugin: Parameter ope=changepic used in the field [onshow.logo] has failed to found the picture. The process is ending, unless you set NoErr property to true.
我尝试将我的 php 变量设置为图片的 URL 或图片在服务器上的绝对路径,均失败:
- https://path.to.my.picture/picture.jpg
- /var/drupal/platform/html/sites/default/files/2022-02/picture.jpg
这里有什么明显的遗漏吗?
默认情况下,OpenTBS 希望将 TBS 字段放在图片之后。
您可以使用参数 tagpos
调整此相对位置,因此它可以在之后、之前或内部(在图像 属性 中)。
更多详情吃documentation.