0
私は実際にhtml2canvasを全長にするのに苦労しています。html2canvasは全長ではありません - テキストは切り捨てられます
結果画像は、常に途中で途切れます。テキストの内容に関係なく、テキスト全体を表示することはできません。
とにかくこれを修正/デバッグしますか?隠された属性:
私のコード
$('body').append('<div id ="htmlTextBoxHolder">'+text+'</div>');
$('#htmlTextBoxHolder').css({
'width': '1200px',
'background-color':'#ffffff',
'color': '#000000',
'font-size': '60px'
});
html2canvas($("#htmlTextBoxHolder"), {
onrendered: function(canvas) {
var img = canvas.toDataURL();
window.open(img);
$('#posterHolder').empty();
},
width: $('#htmlTextBoxHolder').width(),
height: $('#htmlTextBoxHolder').height()
});