jsPDF addImage无法正常运行

时间:2018-07-11 15:29:14

标签: javascript pdf callback jspdf todataurl

我正在使用jsPDF通过循环一些HTML代码来查找所需的值来创建PDF。我可以很好地获取这些值,但是当我尝试插入header_img时,它不起作用。我在Google上找到了许多解决方案,但是现在正在使用的解决方案是唯一不会出错的解决方案。

这是用于获取通过循环提供的url,将其转换为DataURL,然后将图像插入PDF的代码。它没有给我任何错误,但是PDF中的所有内容都是黑色边框,没有图像。有什么想法吗?

function getDataUri(url, cb) {
	var image = new Image();
	image.setAttribute('crossOrigin', 'anonymous'); //getting images from external domain

	image.onload = function () {
		console.log(url);
		var canvas = document.createElement('canvas');
		canvas.width = this.naturalWidth;
		canvas.height = this.naturalHeight; 

		//next three lines for white background in case png has a transparent background
		var ctx = canvas.getContext('2d');
		ctx.fillStyle = '#fff';  /// set white fill style
		ctx.fillRect(0, 0, canvas.width, canvas.height);

		canvas.getContext('2d').drawImage(this, 0, 0);

		cb(canvas.toDataURL('image/jpeg'));
	};

	image.src = url;
}

var pdf = new jsPDF('p', 'in', 'letter');
	

var left_margin = .5;
var top_margin =.5;
var height = 2.313;
var width = 3.25;
var header_img_height = 1;

//Draw border
pdf.setLineWidth(1/92);
pdf.setDrawColor(0, 0, 0);
pdf.rect(left_margin, top_margin, width, height);
	
//example image
var header_img = 'http://www.quotehd.com/imagequotes/authors24/jeff-olsen-quote-two-clicks-and-its-broke.jpg';
	
let logo = null;

//callback to get DataURL
getDataUri(header_img, function(dataUri) {
	logo = dataUri;
	console.log("logo=" + logo);
	
  //Add image to PDF
	pdf.addImage(logo, 'JPEG', left_margin, top_margin, header_img_height, width);
});

pdf.output('save', 'test.pdf');
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.4.1/jspdf.debug.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

2 个答案:

答案 0 :(得分:0)

您可以将图片编码为base64,可以使用this tool或其他类似图片并将其替换为代码。

答案 1 :(得分:0)

我最终通过编写一个将图像转换为Base64的PHP脚本解决了这个问题。

$img_src = urldecode($_GET['url']);
$img_str = base64_encode(file_get_contents($img_src));
echo 'data:' . getimagesize($img_src)['mime'] . ';base64,' . $img_str;

然后使用jQuery,我将URL传递给PHP脚本并获得了Base64数据作为回报:

function getBase64(url) {

    var out = '';
    $.ajax({
        url: 'get-dataurl.php?url=' + encodeURI(url),
        async: false,
        dataTye: 'text',
        success: function(data) {
            out = data;
        }
  });
    return out;
}

某些情况下并不理想,但它确实可行。