Home | History | Annotate | Download | only in jhead

Lines Matching refs:ImageInfo

137     ImageInfo.GpsInfoPresent = TRUE;
138 strcpy(ImageInfo.GpsLat, "? ?");
139 strcpy(ImageInfo.GpsLong, "? ?");
140 ImageInfo.GpsAlt[0] = 0;
194 ImageInfo.GpsLat[0] = ValuePtr[0];
195 ImageInfo.GpsLatRef[0] = ValuePtr[0];
196 ImageInfo.GpsLatRef[1] = '\0';
200 ImageInfo.GpsLong[0] = ValuePtr[0];
201 ImageInfo.GpsLongRef[0] = ValuePtr[0];
202 ImageInfo.GpsLongRef[1] = '\0';
230 strncpy(ImageInfo.GpsLat+2, TempString, 29);
232 strncpy(ImageInfo.GpsLong+2, TempString, 29);
240 strncpy(ImageInfo.GpsLatRaw, TempString, MAX_BUF_SIZE);
242 strncpy(ImageInfo.GpsLongRaw, TempString, MAX_BUF_SIZE);
247 ImageInfo.GpsAlt[0] = (char)(ValuePtr[0] ? '-' : ' ');
248 ImageInfo.GpsAltRef = (char)ValuePtr[0];
252 sprintf(ImageInfo.GpsAlt + 1, "%.2fm",
254 ImageInfo.GpsAltRaw.num = Get32u(ValuePtr);
255 ImageInfo.GpsAltRaw.denom = Get32u(4+(char *)ValuePtr);
259 snprintf(ImageInfo.GpsTimeStamp,
260 sizeof(ImageInfo.GpsTimeStamp), "%d:%d:%d",
268 strncpy(ImageInfo.GpsDateStamp, (char*)ValuePtr, sizeof(ImageInfo.GpsDateStamp));
277 memcpy(ImageInfo.GpsProcessingMethod,
279 ImageInfo.GpsProcessingMethod[length] = 0;