PageRenderTime 28ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/framework/vendor/zend/Zend/Pdf/Element/Numeric.php

http://zoop.googlecode.com/
PHP | 95 lines | 29 code | 12 blank | 54 comment | 3 complexity | 1d41c4f4027d2e6601dfe1fb550164e3 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Pdf
  17. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id: Numeric.php 20096 2010-01-06 02:05:09Z bkarwin $
  20. */
  21. /** Zend_Pdf_Element */
  22. require_once 'Zend/Pdf/Element.php';
  23. /**
  24. * PDF file 'numeric' element implementation
  25. *
  26. * @category Zend
  27. * @package Zend_Pdf
  28. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  29. * @license http://framework.zend.com/license/new-bsd New BSD License
  30. */
  31. class Zend_Pdf_Element_Numeric extends Zend_Pdf_Element
  32. {
  33. /**
  34. * Object value
  35. *
  36. * @var numeric
  37. */
  38. public $value;
  39. /**
  40. * Object constructor
  41. *
  42. * @param numeric $val
  43. * @throws Zend_Pdf_Exception
  44. */
  45. public function __construct($val)
  46. {
  47. if ( !is_numeric($val) ) {
  48. require_once 'Zend/Pdf/Exception.php';
  49. throw new Zend_Pdf_Exception('Argument must be numeric');
  50. }
  51. $this->value = $val;
  52. }
  53. /**
  54. * Return type of the element.
  55. *
  56. * @return integer
  57. */
  58. public function getType()
  59. {
  60. return Zend_Pdf_Element::TYPE_NUMERIC;
  61. }
  62. /**
  63. * Return object as string
  64. *
  65. * @param Zend_Pdf_Factory $factory
  66. * @return string
  67. */
  68. public function toString($factory = null)
  69. {
  70. if (is_integer($this->value)) {
  71. return (string)$this->value;
  72. }
  73. /**
  74. * PDF doesn't support exponental format.
  75. * Fixed point format must be used instead
  76. */
  77. $prec = 0; $v = $this->value;
  78. while (abs( floor($v) - $v ) > 1e-10) {
  79. $prec++; $v *= 10;
  80. }
  81. return sprintf("%.{$prec}F", $this->value);
  82. }
  83. }