1: <?php
2: /**
3: * Jpx.php
4: *
5: * @since 2011-05-23
6: * @category Library
7: * @package PdfFilter
8: * @author Nicola Asuni <info@tecnick.com>
9: * @copyright 2011-2015 Nicola Asuni - Tecnick.com LTD
10: * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
11: * @link https://github.com/tecnickcom/tc-lib-pdf-filter
12: *
13: * This file is part of tc-lib-pdf-filter software library.
14: */
15:
16: namespace Com\Tecnick\Pdf\Filter\Type;
17:
18: use \Com\Tecnick\Pdf\Filter\Exception as PPException;
19:
20: /**
21: * Com\Tecnick\Pdf\Filter\Type\Jpx
22: *
23: * Jpx
24: *
25: * @since 2011-05-23
26: * @category Library
27: * @package PdfFilter
28: * @author Nicola Asuni <info@tecnick.com>
29: * @copyright 2011-2015 Nicola Asuni - Tecnick.com LTD
30: * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
31: * @link https://github.com/tecnickcom/tc-lib-pdf-filter
32: */
33: class Jpx
34: {
35: /**
36: * Decode the data
37: *
38: * @param string $data Data to decode.
39: *
40: * @return string Decoded data string.
41: */
42: public function decode($data)
43: {
44: $data = null;
45: throw new PPException('~ this decoding method has not been yet implemented');
46: }
47: }
48: