使用jspdf,添加了一定大小的矩形。输出时,它大于输入为rect参数的大小
我一直在使用英寸,磅和毫米作为度量单位。都有同样的问题
var doc = new jsPDF({
orientation: 'landscape',
unit: 'mm',
//Note: parameters for format are
//"height", "width" of landscape in pts (not mm)
//equivalent to 76mm x 54mm
format: [153, 216]
})
doc.setDrawColor(0, 0, 255);
doc.setLineWidth(1);
//Note: parameters are in mm
doc.rect(0, 0, 76, 54);
doc.save("label.pdf")
return;
我希望看到76mm x 54mm的矩形。当我打印(不缩放)时,矩形大约是100 x 74毫米