Chart.jsを使用しています。 base 64文字列を取得して、チャートを画像に変換しようとしています。チュートリアル( http://www.chartjs.org/docs/ )は、トピックに関する1行全体を取り上げています。
Canvas要素は、コンテンツをベース64文字列として保存し、チャートを画像として保存することもできます。
canvas
要素にはtoDataURL
のメソッドがあり、画像のbase64文字列を返します。ただし、これを行うと、レンダリングされる画像はチャートの寸法を含む透明な長方形になり、チャートの内容は含まれません。
ここにフィドルがあります: http://jsfiddle.net/KSgV7/
フィドルの「画像」は黒い境界線でスタイル設定されているため、大きな透明ブロックのように見えるため、どこにあるべきかを確認できます。
誰かがChart.jsチャートを画像に正常に変換しましたか?
チャートは非同期に見えるため、アニメーションが終了するか、キャンバスが空になるときにコールバックを提供する必要があります。
var options = {
bezierCurve : false,
onAnimationComplete: done /// calls function done() {} at end
};
これが投稿されてからChart.JS APIが変更され、古い例は私にとっては機能していないようです。新しいバージョンで動作する更新されたフィドルがあります
HTML:
<body>
<canvas id="canvas" height="450" width="600"></canvas>
<img id="url" />
</body>
JS:
function done(){
alert("haha");
var url=myLine.toBase64Image();
document.getElementById("url").src=url;
}
var options = {
bezierCurve : false,
animation: {
onComplete: done
}
};
var myLine = new
Chart(document.getElementById("canvas").getContext("2d"),
{
data:lineChartData,
type:"line",
options:options
}
);
まず、Chart.jsキャンバスをbase64文字列に変換します。
var url_base64 = document.getElementById('myChart').toDataURL('image/png');
アンカータグのhref属性として設定します。
link.href = url_base64;
<a id='link' download='filename.png'>Save as Image</a>
代わりにChartjs API関数toBase64Image()
を使用し、アニメーションの完了後に呼び出す必要があります。したがって:
var pieChart, URI;
var options = {
animation : {
onComplete : function(){
URI = pieChart.toBase64Image();
}
}
};
var content = {
type: 'pie', //whatever, not relevant for this example
data: {
datasets: dataset //whatever, not relevant for this example
},
options: options
};
pieChart = new Chart(pieChart, content);
この例を確認して実行できます
var chart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Standing costs', 'Running costs'], // responsible for how many bars are gonna show on the chart
// create 12 datasets, since we have 12 items
// data[0] = labels[0] (data for first bar - 'Standing costs') | data[1] = labels[1] (data for second bar - 'Running costs')
// put 0, if there is no data for the particular bar
datasets: [{
label: 'Washing and cleaning',
data: [0, 8],
backgroundColor: '#22aa99'
}, {
label: 'Traffic tickets',
data: [0, 2],
backgroundColor: '#994499'
}, {
label: 'Tolls',
data: [0, 1],
backgroundColor: '#316395'
}, {
label: 'Parking',
data: [5, 2],
backgroundColor: '#b82e2e'
}, {
label: 'Car tax',
data: [0, 1],
backgroundColor: '#66aa00'
}, {
label: 'Repairs and improvements',
data: [0, 2],
backgroundColor: '#dd4477'
}, {
label: 'Maintenance',
data: [6, 1],
backgroundColor: '#0099c6'
}, {
label: 'Inspection',
data: [0, 2],
backgroundColor: '#990099'
}, {
label: 'Loan interest',
data: [0, 3],
backgroundColor: '#109618'
}, {
label: 'Depreciation of the vehicle',
data: [0, 2],
backgroundColor: '#109618'
}, {
label: 'Fuel',
data: [0, 1],
backgroundColor: '#dc3912'
}, {
label: 'Insurance and Breakdown cover',
data: [4, 0],
backgroundColor: '#3366cc'
}]
},
options: {
responsive: false,
legend: {
position: 'right' // place legend on the right side of chart
},
scales: {
xAxes: [{
stacked: true // this should be set to make the bars stacked
}],
yAxes: [{
stacked: true // this also..
}]
},
animation : {
onComplete : done
}
}
});
function done(){
alert(chart.toBase64Image());
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script>
<canvas id="ctx" width="700"></canvas>
afterRender
を使用してplugins
フックにアクセスできます。
そして here は利用可能なすべてのプラグインAPIです。
Htmlファイル内:
<html>
<canvas id="myChart"></canvas>
<div id="imgWrap"></div>
</html>
Jsファイル内:
var chart = new Chart(ctx, {
...,
plugins: [{
afterRender: function () {
// Do anything you want
renderIntoImage()
},
}],
...,
});
const renderIntoImage = () => {
const canvas = document.getElementById('myChart')
const imgWrap = document.getElementById('imgWrap')
var img = new Image();
img.src = canvas.toDataURL()
imgWrap.appendChild(img)
canvas.style.display = 'none'
}
@EH_warch base64を生成するには、Completeコールバックを使用する必要があります。
onAnimationComplete: function(){
console.log(this.toBase64Image())
}
白い画像が表示される場合、レンダリングが完了する前にtoBase64Imageを呼び出したことを意味します。