/framework/vendor/zend/Zend/Pdf/Destination/Fit.php

http://zoop.googlecode.com/ · PHP · 75 lines · 22 code · 8 blank · 45 comment · 4 complexity · a846dc9dba0dfc96b04335f5a6c6d44c MD5 · raw file

  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. * @subpackage Destination
  18. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id: Fit.php 20096 2010-01-06 02:05:09Z bkarwin $
  21. */
  22. /** Internally used classes */
  23. require_once 'Zend/Pdf/Element/Array.php';
  24. require_once 'Zend/Pdf/Element/Name.php';
  25. require_once 'Zend/Pdf/Element/Numeric.php';
  26. /** Zend_Pdf_Destination_Explicit */
  27. require_once 'Zend/Pdf/Destination/Explicit.php';
  28. /**
  29. * Zend_Pdf_Destination_Fit explicit detination
  30. *
  31. * Destination array: [page /Fit]
  32. *
  33. * Display the page designated by page, with its contents magnified just enough
  34. * to fit the entire page within the window both horizontally and vertically. If
  35. * the required horizontal and vertical magnification factors are different, use
  36. * the smaller of the two, centering the page within the window in the other
  37. * dimension.
  38. *
  39. * @package Zend_Pdf
  40. * @subpackage Destination
  41. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  42. * @license http://framework.zend.com/license/new-bsd New BSD License
  43. */
  44. class Zend_Pdf_Destination_Fit extends Zend_Pdf_Destination_Explicit
  45. {
  46. /**
  47. * Create destination object
  48. *
  49. * @param Zend_Pdf_Page|integer $page Page object or page number
  50. * @return Zend_Pdf_Destination_Fit
  51. * @throws Zend_Pdf_Exception
  52. */
  53. public static function create($page)
  54. {
  55. $destinationArray = new Zend_Pdf_Element_Array();
  56. if ($page instanceof Zend_Pdf_Page) {
  57. $destinationArray->items[] = $page->getPageDictionary();
  58. } else if (is_integer($page)) {
  59. $destinationArray->items[] = new Zend_Pdf_Element_Numeric($page);
  60. } else {
  61. require_once 'Zend/Pdf/Exception.php';
  62. throw new Zend_Pdf_Exception('Page entry must be a Zend_Pdf_Page object or a page number.');
  63. }
  64. $destinationArray->items[] = new Zend_Pdf_Element_Name('Fit');
  65. return new Zend_Pdf_Destination_Fit($destinationArray);
  66. }
  67. }