<?php
class Image {
	static function create($type) {
		switch ($type) {
			case "gif": return new ImageGif;
			default: throw new Exception("Nepodporovaný typ obrázku");
		}
	}
}
class ImageGif extends Image {
	// metody specifické pro obrázky typu GIF
}