2
0

Image.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_Service
  17. * @subpackage Amazon
  18. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * @category Zend
  24. * @package Zend_Service
  25. * @subpackage Amazon
  26. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  27. * @license http://framework.zend.com/license/new-bsd New BSD License
  28. */
  29. class Zend_Service_Amazon_Image
  30. {
  31. /**
  32. * Image URL
  33. *
  34. * @var Zend_Uri
  35. */
  36. public $Url;
  37. /**
  38. * Image height in pixels
  39. *
  40. * @var int
  41. */
  42. public $Height;
  43. /**
  44. * Image width in pixels
  45. *
  46. * @var int
  47. */
  48. public $Width;
  49. /**
  50. * Assigns values to properties relevant to Image
  51. *
  52. * @param DOMElement $dom
  53. * @return void
  54. */
  55. public function __construct(DOMElement $dom)
  56. {
  57. $xpath = new DOMXPath($dom->ownerDocument);
  58. $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2011-08-01');
  59. $this->Url = Zend_Uri::factory($xpath->query('./az:URL/text()', $dom)->item(0)->data);
  60. $this->Height = (int) $xpath->query('./az:Height/text()', $dom)->item(0)->data;
  61. $this->Width = (int) $xpath->query('./az:Width/text()', $dom)->item(0)->data;
  62. }
  63. }