Lines Matching refs:adobe

368         if (!isset($this->_info['adobe'])) {
376 if (isset($this->_info['adobe'][$field])) {
377 return $this->_info['adobe'][$field];
452 if (!isset($this->_info['adobe'])) {
460 if ($this->_info['adobe'] == false) {
461 $this->_info['adobe'] = array();
464 $this->_info['adobe'][$field] = $value;
563 if (!isset($this->_info['adobe'])) {
571 if ($this->_info['adobe'] != false) {
572 unset($this->_info['adobe'][$field]);
852 * @param string $which possible values: 'any', 'exif' or 'adobe'
872 if ($which == 'adobe') {
873 if (!isset($this->_info['adobe'])) {
881 if (isset($this->_info['adobe']) && is_array($this->_info['adobe'])) {
882 if (isset($this->_info['adobe']['ThumbnailData'])) {
896 * @param string $which possible values: 'any', 'exif' or 'adobe'
918 if (($which == 'adobe') || ($data == null)){
919 if (!isset($this->_info['adobe'])) {
927 if (isset($this->_info['adobe']) && is_array($this->_info['adobe'])) {
928 if (isset($this->_info['adobe']['ThumbnailData'])) {
929 $data =& $this->_info['adobe']['ThumbnailData'];
1120 if (!isset($this->_info['adobe'])) {
1231 if ((isset($this->_info['adobe']) && is_array($this->_info['adobe']))
1233 $adobe =& $this->_createMarkerAdobe();
1234 $this->_writeJPEGMarker(0xED, strlen($adobe), $adobe, 0);
1235 unset($adobe);
1575 if ($signature == "http://ns.adobe.com/xap/1.0/\0") {
2416 if ($this->_markers == null || $this->_isMarkerDisabled('adobe')) {
2433 $this->_info['adobe'] = false;
2438 $this->_info['adobe'] = array();
2439 $this->_info['adobe']['raw'] = array();
2473 $this->_info['adobe']['CopyrightFlag'] = $this->_getByte($data, $pos);
2477 $this->_info['adobe']['ImageURL'] = $this->_getFixedString($data, $pos, $length);
2484 $this->_info['adobe']['ThumbnailWidth'] = $this->_getLong($data, $pos);
2486 $this->_info['adobe']['ThumbnailHeight'] = $this->_getLong($data, $pos);
2491 $this->_info['adobe']['ThumbnailData'] = $this->_getFixedString($data, $pos, $length - 28);
2501 $this->_info['adobe']['raw'][$label] = array();
2502 $this->_info['adobe']['raw'][$label]['type'] = $type;
2503 $this->_info['adobe']['raw'][$label]['header'] = $header;
2504 $this->_info['adobe']['raw'][$label]['data'] =& $this->_getFixedString($data, $basePos, $length);
2510 $this->_info['adobe'] = false;
2563 if (!isset($this->_info['adobe'])) {
2564 $this->_info['adobe'] = array();
2566 if (!isset($this->_info['adobe']['raw'])) {
2567 $this->_info['adobe']['raw'] = array();
2569 if (!isset($this->_info['adobe']['raw']['8BIM_0x0404'])) {
2570 $this->_info['adobe']['raw']['8BIM_0x0404'] = array();
2572 $this->_info['adobe']['raw']['8BIM_0x0404']['type'] = 0x0404;
2573 $this->_info['adobe']['raw']['8BIM_0x0404']['header'] = "Caption";
2574 $this->_info['adobe']['raw']['8BIM_0x0404']['data'] =& $this->_writeIPTC();
2577 if (isset($this->_info['adobe']['raw']) && (count($this->_info['adobe']['raw']) > 0)) {
2581 reset($this->_info['adobe']['raw']);
2582 foreach ($this->_info['adobe']['raw'] as $value){