You are here

function pChart::Stroke in Visitors 7.0

Same name and namespace in other branches
  1. 8 pchart/pChart.inc \pChart::Stroke()

File

pchart/pChart.inc, line 2458

Class

pChart

Code

function Stroke() {
  if ($this->ErrorReporting) {
    $this
      ->printErrors("GD");
  }
  header('Content-type: image/png');
  imagepng($this->Picture);
}