[TASK] Enhanced status report.

[TASK] BoxImageClass now has some getters for height and width.
This commit is contained in:
Jan Philipp Timme
2011-01-03 14:48:31 +00:00
parent fea4ee040c
commit 61ea2b936e
2 changed files with 33 additions and 2 deletions
+16
View File
@@ -145,4 +145,20 @@ class BoxImage {
return imagepng($this->image, $filename, $compression);
}
/**
* Gets height.
* @return int
*/
public function getHeight() {
return $this->height;
}
/**
* Gets width.
* @return int
*/
public function getWidth() {
return $this->width;
}
}