下载资源后端资源详情
exiv2.zip
大小:2.32MB
价格:10积分
下载量:0
评分:
5.0
上传者:wisdomroc
更新日期:2024-10-21

exiv2库,支持c++11

资源文件列表(大概)

文件名
大小
debug-64/
-
debug-64/exiv2d.dll
4.34MB
debug-64/exiv2d.lib
429.97KB
debug-64/libexpat.dll
1.32MB
debug-64/libexpat.lib
16.53KB
debug-64/zlib1d.dll
199KB
debug-64/zlib1d.lib
12.67KB
include/
-
include/exiv2/
-
include/exiv2/actions.hpp
13.74KB
include/exiv2/basicio.hpp
28.49KB
include/exiv2/bmpimage.hpp
4.69KB
include/exiv2/convert.hpp
5.48KB
include/exiv2/cr2image.hpp
5.57KB
include/exiv2/crwimage.hpp
6.51KB
include/exiv2/datasets.hpp
14.97KB
include/exiv2/easyaccess.hpp
3.77KB
include/exiv2/epsimage.hpp
4.92KB
include/exiv2/error.hpp
12.01KB
include/exiv2/exif.hpp
24.49KB
include/exiv2/exiv2.hpp
2.09KB
include/exiv2/exiv2app.hpp
10.56KB
include/exiv2/futils.hpp
2.64KB
include/exiv2/getopt_win32.h
2.8KB
include/exiv2/gifimage.hpp
4.77KB
include/exiv2/i18n.h
1.62KB
include/exiv2/image.hpp
26.61KB
include/exiv2/iptc.hpp
11.72KB
include/exiv2/jp2image.hpp
4.89KB
include/exiv2/jpgimage.hpp
17.83KB
include/exiv2/metacopy.hpp
3.01KB
include/exiv2/metadatum.hpp
12.25KB
include/exiv2/mrwimage.hpp
5.18KB
include/exiv2/orfimage.hpp
5.58KB
include/exiv2/pgfimage.hpp
5.16KB
include/exiv2/pngimage.hpp
4.88KB
include/exiv2/preview.hpp
6.49KB
include/exiv2/private.h
4.24KB
include/exiv2/properties.hpp
11.67KB
include/exiv2/psdimage.hpp
5.65KB
include/exiv2/rafimage.hpp
5.02KB
include/exiv2/rw2image.hpp
5.5KB
include/exiv2/tags.hpp
8.86KB
include/exiv2/tgaimage.hpp
4.92KB
include/exiv2/tiffimage.hpp
8.63KB
include/exiv2/timegm.h
2.83KB
include/exiv2/types.hpp
21.1KB
include/exiv2/tzfile.h
5.16KB
include/exiv2/utils.hpp
6.04KB
include/exiv2/value.hpp
59.67KB
include/exiv2/version.hpp
6.33KB
include/exiv2/xmp.hpp
15.68KB
include/exiv2/xmpsidecar.hpp
4.26KB
include/exv_msvc.h
3.11KB
release-64/
-
release-64/exiv2.dll
1.46MB
release-64/exiv2.lib
429.02KB
release-64/libexpat.dll
506.5KB
release-64/libexpat.lib
16.53KB
release-64/zlib1.dll
79KB
release-64/zlib1.lib
12.6KB

资源内容介绍

exiv2库。可以将GPS经度纬度高度信息,写入到图片。博客中有对应的例子。
#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 NOIDstatic chartzfilehid[] = "@(#)tzfile.h7.14";#endif #endif /*** Information about time zone files.*/#ifndef TZDIR#define TZDIR"/usr/local/etc/zoneinfo" #endif #ifndef TZDEFAULT#define TZDEFAULT"localtime"#endif #ifndef TZDEFRULES#define TZDEFRULES"posixrules"#endif /*** Each file begins with. . .*/#defineTZ_MAGIC"TZif"struct tzhead { chartzh_magic[4];chartzh_reserved[16];chartzh_ttisgmtcnt[4];chartzh_ttisstdcnt[4];chartzh_leapcnt[4];chartzh_timecnt[4];chartzh_typecnt[4];chartzh_charcnt[4];};/*** . . .followed by. . .****tzh_timecnt (char [4])scoded transition times a la time(2)**tzh_timecnt (unsigned char)stypes 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)sindexed 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)sindexed 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_TIMES370#endif #ifndef TZ_MAX_TYPES#ifndef NOSOLAR#define TZ_MAX_TYPES256 #endif #ifdef NOSOLAR/*** Must be at least 14 for Europe/Riga as of Jan 12 1995,** as noted by Earl Chew <earl@hpato.aus.hp.com>.*/#define TZ_MAX_TYPES20#endif #endif #ifndef TZ_MAX_CHARS#define TZ_MAX_CHARS50#endif #ifndef TZ_MAX_LEAPS#define TZ_MAX_LEAPS50#endif #define SECSPERMIN60#define MINSPERHOUR60#define HOURSPERDAY24#define DAYSPERWEEK7#define DAYSPERNYEAR365#define DAYSPERLYEAR366#define SECSPERHOUR(SECSPERMIN * MINSPERHOUR)#define SECSPERDAY((long) SECSPERHOUR * HOURSPERDAY)#define MONSPERYEAR12#define TM_SUNDAY0#define TM_MONDAY1#define TM_TUESDAY2#define TM_WEDNESDAY3#define TM_THURSDAY4#define TM_FRIDAY5#define TM_SATURDAY6#define TM_JANUARY0#define TM_FEBRUARY1#define TM_MARCH2#define TM_APRIL3#define TM_MAY4#define TM_JUNE5#define TM_JULY6#define TM_AUGUST7#define TM_SEPTEMBER8#define TM_OCTOBER9#define TM_NOVEMBER10#define TM_DECEMBER11#define TM_YEAR_BASE1900#define EPOCH_YEAR1970#define EPOCH_WDAYTM_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_MINSECSPERMIN#define MINS_PER_HOURMINSPERHOUR#define HOURS_PER_DAYHOURSPERDAY#define DAYS_PER_WEEKDAYSPERWEEK#define DAYS_PER_NYEARDAYSPERNYEAR#define DAYS_PER_LYEARDAYSPERLYEAR#define SECS_PER_HOURSECSPERHOUR#define SECS_PER_DAYSECSPERDAY#define MONS_PER_YEARMONSPERYEAR#endif #endif

用户评论 (0)

发表评论

captcha

相关资源

javaweb项目电影院订票系统truts+spring+hibernate+mysql-java课程设计毕业设计

本资源为一个完整的JavaWeb项目源码——电影院订票系统,采用了经典的Java企业级开发架构 Struts + Spring + Hibernate (SSH),并结合 MySQL 数据库进行开发,功能完善,代码简洁明了,适合作为 Java课程设计 和 Java毕业设计 的参考学习项目。本系统涵盖了从用户注册登录、电影信息展示、在线购票、订单管理等核心功能模块,具有良好的可扩展性和学习价值。通过本项目的学习,您将能够掌握JavaWeb开发的实际应用,了解 SSH架构 在企业级项目中的整合应用,适合有志于深入学习 JavaWeb开发 的同学和开发者。

53.62MB26积分

javaweb项目购物商城系统struts+spring+hibernate+mysql-java课程设计毕业设计

本资源为一个完整的JavaWeb项目源码——购物商城系统,采用了成熟的Java企业级开发架构 Struts + Spring + Hibernate (SSH),并结合 MySQL 数据库开发,系统功能完善,代码规范清晰,适合作为 Java课程设计 和 Java毕业设计 的参考项目。本系统实现了从商品展示、购物车管理、订单处理到用户管理等功能模块,是一个典型的电子商务网站,具有很强的实用性和学习价值。通过本项目的学习,您将掌握 SSH框架 的整合与应用,了解电子商务系统的开发流程,深入学习 JavaWeb项目 开发的核心技术,帮助提升 Java项目实战 能力,是学习和毕业设计的不二之选。

35.28MB37积分

佳顺通用进销存系统佳免费

佳顺通用进销存系统佳免费

28.49MB50积分

22 高层办公楼公区商业施工图CAD图纸ID-1116970474.zip

22 高层办公楼公区商业施工图CAD图纸ID-1116970474.zip

81.65MB40积分