我有多个带有tinyMCE textareas的表单,可以将内容保存到数据库中,以便使用数据库中的内容生成PDF。用户可以将文本或图像输入到文本区域。
每当用户将图像与TinyMCE对齐时,它都不会在PDF中显示。它没有给我任何错误,它根本没有显示。如果我返回到表单并右对齐图像,它会再次显示,但系统用户需要完全控制界面。
有谁知道造成这种情况的原因是什么?
注意:
这是DOMPDF正在使用的视图示例,该图像包含在产品说明中。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{Lang::choice('page_elements/general.proposal', 2)}}</title>
<style type="text/css">
</style>
</head>
<body>
<div class="product_section">
<div class="text-block">{{($proposalProduct->description)}}</div>
</div>
</body>
</html>
这是产品描述(由TinyMCE格式化)返回的示例。
<p>This is a sample product, using images and tinyMCE.</p>
<p><img style="-webkit-user-select: none; margin-left: auto; margin-right: auto;" src="http://mywebsite.com/products/images/product1.png" alt="" /></p>
感谢您的帮助。