예제 #1
0
파일: Renderer.php 프로젝트: GarikRC/arcane
	public function font ($key, $optionsSpec = null) {
		$key = 'font.' . $key;
		$settings = $this->getSettings();
		if (!@$settings[$key]) error('Font not found: ' . $key);
		$font = new Font($settings[$key]);
		if ($optionsSpec) $font->setOptions($optionsSpec);
		return $font;
	}