1: <?php
2:
3: namespace webfilesframework\core\datasystem\file\format\media\image\handler;
4:
5:
6:
7: /**
8: * description
9: *
10: * @author Sebastian Monzel < mail@sebastianmonzel.de >
11: * @since 0.1.7
12: */
13: class MImageMagickHandler extends MAbstractImageLibraryHandler
14: {
15:
16: public function loadJpg($p_sImage)
17: {
18: throw new \Exception("method not implemented yet");
19: }
20:
21: public function loadPng($p_sImage)
22: {
23: throw new \Exception("method not implemented yet");
24: }
25:
26: }