function pChart::Stroke in Visitors 8
Same name and namespace in other branches
- 7.0 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);
}