我使用chart.js
在我的Rails應用程序中生成圖表,並使用Prawn-pdf生成pdf。 我想將使用chart.js
生成的畫布導出爲pdf。導出chart.js畫布到rails-prawn-pdf
chart.js有一個方法toDataUrl()
哪個給出base64
字符串。 我找不到任何接受base64
的pdf格式的方法。 請建議。
謝謝。
function done()
{
var url_base64 =document.getElementById("myChart").toDataURL("image/png");
$.ajax({
type:'post',
url: '/admin/create_graph_to_image',
dataType: 'script',
data: { string_base64: url_base64 } ,
success: function (e) {
console.log(e);
},
error: function (e) {
console.log(e);
}
});
}
我會使用D3.js爲圖表生成基於SVG的元素,並使用Prawn gem生成PDF格式的頁面。 – Dusht
@Dusht是否有任何特定的教程,導致我生成圖形並將它們導出到PDF與D3.js?在此先感謝 – ART