short wMonth = getShort(data, offset+ICCProfile.short_size); // Number of the month (1-12)
short wDay = getShort(data, offset+2*ICCProfile.short_size); // Number of the day
short wHours = getShort(data, offset+3*ICCProfile.short_size); // Number of hours (0-23)
short wMinutes = getShort(data, offset+4*ICCProfile.short_size); // Number of minutes (0-59)
short wSeconds = getShort(data, offset+5*ICCProfile.short_size); // Number of seconds (0-59)
return new ICCDateTime (wYear, wMonth, wDay, wHours, wMinutes, wSeconds); }