function pChart::Stroke in Visitors 7.0
Same name and namespace in other branches
- 8 pchart/pChart.inc \pChart::Stroke()
File
- pchart/
pChart.inc, line 2458
Class
Code
function Stroke() {
if ($this->ErrorReporting) {
$this
->printErrors("GD");
}
header('Content-type: image/png');
imagepng($this->Picture);
}