首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

exiv2库,支持c++11

后端 2.32MB 2 需要积分: 1
立即下载

资源介绍:

exiv2库。 可以将GPS经度纬度高度信息,写入到图片。 博客中有对应的例子。
/*! @file tzfile.h @brief This file is from the tz distribution at ftp://elsie.nci.nih.gov/pub/ @version $Rev: 392 $ */ #ifndef TZFILE_H #define TZFILE_H /* ** This file is in the public domain, so clarified as of ** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov). */ /* ** This header is for use ONLY with the time conversion code. ** There is no guarantee that it will remain unchanged, ** or that it will remain at all. ** Do NOT copy it to any system include directory. ** Thank you! */ /* ** ID */ #ifndef lint #ifndef NOID static char tzfilehid[] = "@(#)tzfile.h 7.14"; #endif /* !defined NOID */ #endif /* !defined lint */ /* ** Information about time zone files. */ #ifndef TZDIR #define TZDIR "/usr/local/etc/zoneinfo" /* Time zone object file directory */ #endif /* !defined TZDIR */ #ifndef TZDEFAULT #define TZDEFAULT "localtime" #endif /* !defined TZDEFAULT */ #ifndef TZDEFRULES #define TZDEFRULES "posixrules" #endif /* !defined TZDEFRULES */ /* ** Each file begins with. . . */ #define TZ_MAGIC "TZif" struct tzhead { char tzh_magic[4]; /* TZ_MAGIC */ char tzh_reserved[16]; /* reserved for future use */ char tzh_ttisgmtcnt[4]; /* coded number of trans. time flags */ char tzh_ttisstdcnt[4]; /* coded number of trans. time flags */ char tzh_leapcnt[4]; /* coded number of leap seconds */ char tzh_timecnt[4]; /* coded number of transition times */ char tzh_typecnt[4]; /* coded number of local time types */ char tzh_charcnt[4]; /* coded number of abbr. chars */ }; /* ** . . .followed by. . . ** ** tzh_timecnt (char [4])s coded transition times a la time(2) ** tzh_timecnt (unsigned char)s types of local time starting at above ** tzh_typecnt repetitions of ** one (char [4]) coded UTC offset in seconds ** one (unsigned char) used to set tm_isdst ** one (unsigned char) that's an abbreviation list index ** tzh_charcnt (char)s '\0'-terminated zone abbreviations ** tzh_leapcnt repetitions of ** one (char [4]) coded leap second transition times ** one (char [4]) total correction after above ** tzh_ttisstdcnt (char)s indexed by type; if TRUE, transition ** time is standard time, if FALSE, ** transition time is wall clock time ** if absent, transition times are ** assumed to be wall clock time ** tzh_ttisgmtcnt (char)s indexed by type; if TRUE, transition ** time is UTC, if FALSE, ** transition time is local time ** if absent, transition times are ** assumed to be local time */ /* ** In the current implementation, "tzset()" refuses to deal with files that ** exceed any of the limits below. */ #ifndef TZ_MAX_TIMES /* ** The TZ_MAX_TIMES value below is enough to handle a bit more than a ** year's worth of solar time (corrected daily to the nearest second) or ** 138 years of Pacific Presidential Election time ** (where there are three time zone transitions every fourth year). */ #define TZ_MAX_TIMES 370 #endif /* !defined TZ_MAX_TIMES */ #ifndef TZ_MAX_TYPES #ifndef NOSOLAR #define TZ_MAX_TYPES 256 /* Limited by what (unsigned char)'s can hold */ #endif /* !defined NOSOLAR */ #ifdef NOSOLAR /* ** Must be at least 14 for Europe/Riga as of Jan 12 1995, ** as noted by Earl Chew . */ #define TZ_MAX_TYPES 20 /* Maximum number of local time types */ #endif /* !defined NOSOLAR */ #endif /* !defined TZ_MAX_TYPES */ #ifndef TZ_MAX_CHARS #define TZ_MAX_CHARS 50 /* Maximum number of abbreviation characters */ /* (limited by what unsigned chars can hold) */ #endif /* !defined TZ_MAX_CHARS */ #ifndef TZ_MAX_LEAPS #define TZ_MAX_LEAPS 50 /* Maximum number of leap second corrections */ #endif /* !defined TZ_MAX_LEAPS */ #define SECSPERMIN 60 #define MINSPERHOUR 60 #define HOURSPERDAY 24 #define DAYSPERWEEK 7 #define DAYSPERNYEAR 365 #define DAYSPERLYEAR 366 #define SECSPERHOUR (SECSPERMIN * MINSPERHOUR) #define SECSPERDAY ((long) SECSPERHOUR * HOURSPERDAY) #define MONSPERYEAR 12 #define TM_SUNDAY 0 #define TM_MONDAY 1 #define TM_TUESDAY 2 #define TM_WEDNESDAY 3 #define TM_THURSDAY 4 #define TM_FRIDAY 5 #define TM_SATURDAY 6 #define TM_JANUARY 0 #define TM_FEBRUARY 1 #define TM_MARCH 2 #define TM_APRIL 3 #define TM_MAY 4 #define TM_JUNE 5 #define TM_JULY 6 #define TM_AUGUST 7 #define TM_SEPTEMBER 8 #define TM_OCTOBER 9 #define TM_NOVEMBER 10 #define TM_DECEMBER 11 #define TM_YEAR_BASE 1900 #define EPOCH_YEAR 1970 #define EPOCH_WDAY TM_THURSDAY /* ** Accurate only for the past couple of centuries; ** that will probably do. */ #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) #ifndef USG /* ** Use of the underscored variants may cause problems if you move your code to ** certain System-V-based systems; for maximum portability, use the ** underscore-free variants. The underscored variants are provided for ** backward compatibility only; they may disappear from future versions of ** this file. */ #define SECS_PER_MIN SECSPERMIN #define MINS_PER_HOUR MINSPERHOUR #define HOURS_PER_DAY HOURSPERDAY #define DAYS_PER_WEEK DAYSPERWEEK #define DAYS_PER_NYEAR DAYSPERNYEAR #define DAYS_PER_LYEAR DAYSPERLYEAR #define SECS_PER_HOUR SECSPERHOUR #define SECS_PER_DAY SECSPERDAY #define MONS_PER_YEAR MONSPERYEAR #endif /* !defined USG */ #endif /* !defined TZFILE_H */

资源文件列表:

exiv2.zip 大约有61个文件
  1. debug-64/
  2. debug-64/exiv2d.dll 4.34MB
  3. debug-64/exiv2d.lib 429.97KB
  4. debug-64/libexpat.dll 1.32MB
  5. debug-64/libexpat.lib 16.53KB
  6. debug-64/zlib1d.dll 199KB
  7. debug-64/zlib1d.lib 12.67KB
  8. include/
  9. include/exiv2/
  10. include/exiv2/actions.hpp 13.74KB
  11. include/exiv2/basicio.hpp 28.49KB
  12. include/exiv2/bmpimage.hpp 4.69KB
  13. include/exiv2/convert.hpp 5.48KB
  14. include/exiv2/cr2image.hpp 5.57KB
  15. include/exiv2/crwimage.hpp 6.51KB
  16. include/exiv2/datasets.hpp 14.97KB
  17. include/exiv2/easyaccess.hpp 3.77KB
  18. include/exiv2/epsimage.hpp 4.92KB
  19. include/exiv2/error.hpp 12.01KB
  20. include/exiv2/exif.hpp 24.49KB
  21. include/exiv2/exiv2.hpp 2.09KB
  22. include/exiv2/exiv2app.hpp 10.56KB
  23. include/exiv2/futils.hpp 2.64KB
  24. include/exiv2/getopt_win32.h 2.8KB
  25. include/exiv2/gifimage.hpp 4.77KB
  26. include/exiv2/i18n.h 1.62KB
  27. include/exiv2/image.hpp 26.61KB
  28. include/exiv2/iptc.hpp 11.72KB
  29. include/exiv2/jp2image.hpp 4.89KB
  30. include/exiv2/jpgimage.hpp 17.83KB
  31. include/exiv2/metacopy.hpp 3.01KB
  32. include/exiv2/metadatum.hpp 12.25KB
  33. include/exiv2/mrwimage.hpp 5.18KB
  34. include/exiv2/orfimage.hpp 5.58KB
  35. include/exiv2/pgfimage.hpp 5.16KB
  36. include/exiv2/pngimage.hpp 4.88KB
  37. include/exiv2/preview.hpp 6.49KB
  38. include/exiv2/private.h 4.24KB
  39. include/exiv2/properties.hpp 11.67KB
  40. include/exiv2/psdimage.hpp 5.65KB
  41. include/exiv2/rafimage.hpp 5.02KB
  42. include/exiv2/rw2image.hpp 5.5KB
  43. include/exiv2/tags.hpp 8.86KB
  44. include/exiv2/tgaimage.hpp 4.92KB
  45. include/exiv2/tiffimage.hpp 8.63KB
  46. include/exiv2/timegm.h 2.83KB
  47. include/exiv2/types.hpp 21.1KB
  48. include/exiv2/tzfile.h 5.16KB
  49. include/exiv2/utils.hpp 6.04KB
  50. include/exiv2/value.hpp 59.67KB
  51. include/exiv2/version.hpp 6.33KB
  52. include/exiv2/xmp.hpp 15.68KB
  53. include/exiv2/xmpsidecar.hpp 4.26KB
  54. include/exv_msvc.h 3.11KB
  55. release-64/
  56. release-64/exiv2.dll 1.46MB
  57. release-64/exiv2.lib 429.02KB
  58. release-64/libexpat.dll 506.5KB
  59. release-64/libexpat.lib 16.53KB
  60. release-64/zlib1.dll 79KB
  61. release-64/zlib1.lib 12.6KB
0评论
提交 加载更多评论
其他资源 javaweb项目电影院订票系统truts+spring+hibernate+mysql-java课程设计毕业设计
本资源为一个完整的JavaWeb项目源码——电影院订票系统,采用了经典的Java企业级开发架构 Struts + Spring + Hibernate (SSH),并结合 MySQL 数据库进行开发,功能完善,代码简洁明了,适合作为 Java课程设计 和 Java毕业设计 的参考学习项目。本系统涵盖了从用户注册登录、电影信息展示、在线购票、订单管理等核心功能模块,具有良好的可扩展性和学习价值。通过本项目的学习,您将能够掌握JavaWeb开发的实际应用,了解 SSH架构 在企业级项目中的整合应用,适合有志于深入学习 JavaWeb开发 的同学和开发者。
javaweb项目购物商城系统struts+spring+hibernate+mysql-java课程设计毕业设计
本资源为一个完整的JavaWeb项目源码——购物商城系统,采用了成熟的Java企业级开发架构 Struts + Spring + Hibernate (SSH),并结合 MySQL 数据库开发,系统功能完善,代码规范清晰,适合作为 Java课程设计 和 Java毕业设计 的参考项目。本系统实现了从商品展示、购物车管理、订单处理到用户管理等功能模块,是一个典型的电子商务网站,具有很强的实用性和学习价值。通过本项目的学习,您将掌握 SSH框架 的整合与应用,了解电子商务系统的开发流程,深入学习 JavaWeb项目 开发的核心技术,帮助提升 Java项目实战 能力,是学习和毕业设计的不二之选。
佳顺通用进销存系统佳免费
佳顺通用进销存系统佳免费
22 高层办公楼公区商业施工图CAD图纸ID-1116970474.zip
22 高层办公楼公区商业施工图CAD图纸ID-1116970474.zip
opencv460,32位编译
内容包含:opencv_world460.lib,opencv_world460.dll,opencv-contrib等
网页设计(书稿1-3章).zip
网页设计(书稿1-3章).zip
网页设计(书稿1-3章).zip 网页设计(书稿1-3章).zip 网页设计(书稿1-3章).zip
基于Java的在线购物系统的设计与实现(源代码+系统).zip
基于Java的在线购物系统的设计与实现,文件中包含项目源码及使用说明,资料仅供学习使用。
基于Java的在线购物系统的设计与实现(源代码+系统).zip
基于Java ME无线网络移动端的俄罗斯方块游戏的实现(源代码).zip
基于Java ME无线网络移动端的俄罗斯方块游戏的实现,文件中包含项目源码及使用说明,资料仅供学习使用。
基于Java ME无线网络移动端的俄罗斯方块游戏的实现(源代码).zip