我已经能够在我的 php 项目中创建条形码,现在我想打印我的条形码,所以我使用 javascript,但是在打印部分图像时没有显示。链接到我的条形码图像是这样的
http://localhost/Labortory_Management_System/assets/barcode/test_1D.php?text=3921214754
如何打印事物图像?
附言
我使用这个 javascript 来打印图像
<script type="text/javascript">
function PrintElem(elem)
{
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'my div', 'height=400,width=600');
mywindow.document.write('<html><head><title>my div</title>');
/*optional stylesheet*/ //mywindow.document.write('<link rel="stylesheet" href="main.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}
</script>