Home | History | Annotate | Download | only in jhead

Lines Matching refs:ImageInfo

139     ImageInfo.GpsInfoPresent = TRUE;
140 strcpy(ImageInfo.GpsLat, "? ?");
141 strcpy(ImageInfo.GpsLong, "? ?");
142 ImageInfo.GpsAlt[0] = 0;
196 ImageInfo.GpsLat[0] = ValuePtr[0];
197 ImageInfo.GpsLatRef[0] = ValuePtr[0];
198 ImageInfo.GpsLatRef[1] = '\0';
202 ImageInfo.GpsLong[0] = ValuePtr[0];
203 ImageInfo.GpsLongRef[0] = ValuePtr[0];
204 ImageInfo.GpsLongRef[1] = '\0';
232 strncpy(ImageInfo.GpsLat+2, TempString, 29);
234 strncpy(ImageInfo.GpsLong+2, TempString, 29);
242 strncpy(ImageInfo.GpsLatRaw, TempString, 31);
244 strncpy(ImageInfo.GpsLongRaw, TempString, 31);
249 ImageInfo.GpsAlt[0] = (char)(ValuePtr[0] ? '-' : ' ');
250 ImageInfo.GpsAltRef = (char)ValuePtr[0];
254 sprintf(ImageInfo.GpsAlt + 1, "%.2fm",
256 ImageInfo.GpsAltRaw.num = Get32u(ValuePtr);
257 ImageInfo.GpsAltRaw.denom = Get32u(4+(char *)ValuePtr);
261 snprintf(ImageInfo.GpsTimeStamp,
262 sizeof(ImageInfo.GpsTimeStamp), "%d:%d:%d",
270 strncpy(ImageInfo.GpsDateStamp, (char*)ValuePtr, sizeof(ImageInfo.GpsDateStamp));
279 memcpy(ImageInfo.GpsProcessingMethod,
281 ImageInfo.GpsProcessingMethod[length] = 0;