Lines Matching refs:i

61 			for ($i = 0; $i < $CurrentIFD['fieldcount']; $i++) {
62 …$CurrentIFD['fields'][$i]['raw']['tag'] = $this->TIFFendian2Int($this->fread(2), $info['tiff'…
63 …$CurrentIFD['fields'][$i]['raw']['type'] = $this->TIFFendian2Int($this->fread(2), $info['tiff'…
64 …$CurrentIFD['fields'][$i]['raw']['length'] = $this->TIFFendian2Int($this->fread(4), $info['tiff'…
65 …$CurrentIFD['fields'][$i]['raw']['valoff'] = $this->fread(4); // To save t…
66 …$CurrentIFD['fields'][$i]['raw']['tag_name'] = $this->TIFFcommentName($CurrentIFD['fields'][$i]['r…
68 switch ($CurrentIFD['fields'][$i]['raw']['type']) {
70 if ($CurrentIFD['fields'][$i]['raw']['length'] <= 4) {
71 …$CurrentIFD['fields'][$i]['value'] = $this->TIFFendian2Int(substr($CurrentIFD['fields'][$i]['raw'…
73 …$CurrentIFD['fields'][$i]['offset'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
78 if ($CurrentIFD['fields'][$i]['raw']['length'] <= 4) {
79 $CurrentIFD['fields'][$i]['value'] = substr($CurrentIFD['fields'][$i]['raw']['valoff'], 3);
81 …$CurrentIFD['fields'][$i]['offset'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
86 if ($CurrentIFD['fields'][$i]['raw']['length'] <= 2) {
87 …$CurrentIFD['fields'][$i]['value'] = $this->TIFFendian2Int(substr($CurrentIFD['fields'][$i]['raw'…
89 …$CurrentIFD['fields'][$i]['offset'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
94 if ($CurrentIFD['fields'][$i]['raw']['length'] <= 4) {
95 …$CurrentIFD['fields'][$i]['value'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
97 …$CurrentIFD['fields'][$i]['offset'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
103 …$CurrentIFD['fields'][$i]['offset'] = $this->TIFFendian2Int($CurrentIFD['fields'][$i]['raw']['valo…
116 …warning('unhandled IFD field type '.$CurrentIFD['fields'][$i]['raw']['type'].' for IFD entry '.$i);
181 for ($i = 0; $i < $fieldarray['raw']['length']; $i++) {
182 …an2Int(substr($info['tiff']['ifd'][$IFDid]['fields'][$key]['raw']['data'], $i * $FieldTypeByteLeng…