我正在嘗試在html
頁面中顯示print
圖像。說一些100個圖像,每個頁面一個。 我在html內容中添加了圖像,並將其添加到iframe
標記中並嘗試打印。圖像在底部切割,其餘部分移動到下一頁。我如何克服這一點?在瀏覽器中打印圖像
我附上了一個簡單的代碼片段來打印一個簡單的圖像。請嘗試運行的代碼片段,並建議我一個解決方案來打印圖像中的單個頁面
<!DOCTYPE html>
<html moznomarginboxes mozdisallowselectionprint>
<head>
</head>
<body>
<button id="btn1" type="button" onclick="myFunction()">Print</button>
<br/>
<img src="http://i.stack.imgur.com/bFvfE.jpg" style="border:1px solid" />
</body>
<script>
function myFunction() {
//window.print();
var iframe = document.createElement('iframe');
iframe.name = "printFrame";
iframe.style.position = "absolute";
iframe.style.top = "-100000000px";
document.body.appendChild(iframe);
var frameDoc = iframe.contentWindow ? iframe.contentWindow : iframe.contentDocument.document ? iframe.contentDocument.document : iframe.contentDocument;
frameDoc.document.open();
frameDoc.document.write('<html moznomarginboxes mozdisallowselectionprint><head><style>@media print {div { page-break-inside: avoid;} @page{margin:0;} body{margin:0;}}</style></head><body><center>');
frameDoc.document.write('<div><img src="http://i.stack.imgur.com/bFvfE.jpg" style="border:1px solid;margin:0px;display:block"/></div><br/>');
frameDoc.document.write('</center></body></html>');
frameDoc.document.close();
setTimeout(function() {
window.frames["printFrame"].focus();
window.frames["printFrame"].print();
document.body.removeChild(iframe);
}, 500);
}
</script>
</html>
你能幫我修改我的代碼片段嗎 –