Lines Matching defs:info

71      * Returns all gathered info as multidim array
86 * Returns basic image info
93 $info = array();
99 $info['Name'] = $this->_info['file']['Name'];
101 $info['Url'] = $this->_info['file']['Url'];
102 $info['NiceSize'] = "???KB";
104 $info['Size'] = $this->_info['file']['Size'];
105 $info['NiceSize'] = $this->_info['file']['NiceSize'];
109 $info['Format'] = $this->_info['sof']['Format'] . " JPEG";
111 $info['Format'] = $this->_info['sof']['Format'] . " JPEG";
115 $info['ColorMode'] = ($this->_info['sof']['ColorChannels'] > 1) ? "Color" : "B&W";
118 $info['Width'] = $this->getWidth();
119 $info['Height'] = $this->getHeight();
120 $info['DimStr'] = $this->getDimStr();
124 $info['DateTime'] = $dates['EarliestTime'];
125 $info['DateTimeStr'] = $dates['EarliestTimeStr'];
127 $info['HasThumbnail'] = $this->hasThumbnail();
129 return $info;
144 $info = false;
148 $info = $this->getIPTCField(substr($field,5));
150 $info = $this->getExifField(substr($field,5));
152 $info = $this->getXmpField(substr($field,4));
154 $info = $this->getFileField(substr($field,5));
156 $info = $this->getDateField(substr($field,5));
158 $info = $this->getCamera();
162 $info = $this->getTitle();
164 $info = $this->getShutterSpeed();
166 $info = $this->getExifField($field);
168 if($info != false) break;
171 if($info === false) $info = '';
172 if(is_array($info)){
173 if(isset($info['val'])){
174 $info = $info['val'];
177 foreach($info as $part){
188 $info = join(', ',$arr);
191 return trim($info);
256 * Return a file info field
276 * Return the camera info (Maker and Model)
1312 * Gets basic info from the file - should work with non-JPEGs