Skip to content

Commit ef9b2a0

Browse files
committed
version 0.9.0
1 parent 5c2bf94 commit ef9b2a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+16105
-3
lines changed

Demo/Demo.gif

1.17 MB
Loading

Framework/Info.plist

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>0.9.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSPrincipalClass</key>
24+
<string></string>
25+
</dict>
26+
</plist>

Framework/YYWebImage-Static.xcodeproj/project.pbxproj

Lines changed: 521 additions & 0 deletions
Large diffs are not rendered by default.

Framework/YYWebImage-Static.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Framework/YYWebImage.xcodeproj/project.pbxproj

Lines changed: 498 additions & 0 deletions
Large diffs are not rendered by default.

Framework/YYWebImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0700"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "D975395F1BD2970400C6F4B8"
18+
BuildableName = "YYWebImage.framework"
19+
BlueprintName = "YYWebImage"
20+
ReferencedContainer = "container:YYWebImage.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
34+
</TestAction>
35+
<LaunchAction
36+
buildConfiguration = "Debug"
37+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
38+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
39+
launchStyle = "0"
40+
useCustomWorkingDirectory = "NO"
41+
ignoresPersistentStateOnLaunch = "NO"
42+
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
44+
allowLocationSimulation = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "D975395F1BD2970400C6F4B8"
49+
BuildableName = "YYWebImage.framework"
50+
BlueprintName = "YYWebImage"
51+
ReferencedContainer = "container:YYWebImage.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
54+
<AdditionalOptions>
55+
</AdditionalOptions>
56+
</LaunchAction>
57+
<ProfileAction
58+
buildConfiguration = "Release"
59+
shouldUseLaunchSchemeArgsEnv = "YES"
60+
savedToolIdentifier = ""
61+
useCustomWorkingDirectory = "NO"
62+
debugDocumentVersioning = "YES">
63+
<MacroExpansion>
64+
<BuildableReference
65+
BuildableIdentifier = "primary"
66+
BlueprintIdentifier = "D975395F1BD2970400C6F4B8"
67+
BuildableName = "YYWebImage.framework"
68+
BlueprintName = "YYWebImage"
69+
ReferencedContainer = "container:YYWebImage.xcodeproj">
70+
</BuildableReference>
71+
</MacroExpansion>
72+
</ProfileAction>
73+
<AnalyzeAction
74+
buildConfiguration = "Debug">
75+
</AnalyzeAction>
76+
<ArchiveAction
77+
buildConfiguration = "Release"
78+
revealArchiveInOrganizer = "YES">
79+
</ArchiveAction>
80+
</Scheme>

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Yaoyuan Guo
3+
Copyright (c) 2015 ibireme <ibireme@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

100644100755
Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,22 @@
1-
# YYWebImage
2-
Asynchronous image fetch and display framework.
1+
YYWebImage <a href="#中文介绍">中文介绍</a>
2+
==============
3+
[![License MIT](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://raw.githubusercontent.com/ibireme/YYWebImage/master/LICENSE)&nbsp;
4+
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)&nbsp;
5+
[![Cocoapods](http://img.shields.io/cocoapods/v/YYWebImage.svg?style=flat)](http://cocoapods.org/?q= YYWebImage)&nbsp;
6+
[![Cocoapods](http://img.shields.io/cocoapods/p/YYWebImage.svg?style=flat)](http://cocoapods.org/?q= YYWebImage)&nbsp;
7+
[![Support](https://img.shields.io/badge/support-iOS%206%2B%20-blue.svg?style=flat)](https://www.apple.com/nl/ios/)
8+
9+
Asynchronous image loading framework.<br/>
10+
(It's a component of [YYKit](https://github.com/ibireme/YYKit))
11+
12+
13+
Features
14+
==============
15+
- Asynchronous image load from remote or local URL.
16+
- Animated WebP, APNG, GIF support.
17+
- Baseline/progressive/interlaced image decode support.
18+
- Image loading category for UIImageView, UIButton, MKAnnotationView and CALayer.
19+
- High performance memory and disk image cache.
20+
- High performance image loader to avoid main thread blocked.
21+
22+
<img src="https://raw.github.com/ibireme/YYWebImage/Demo/Demo.gif" width="320">
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
/* src/webp/config.h. Generated from config.h.in by configure. */
2+
/* src/webp/config.h.in. Generated from configure.ac by autoheader. */
3+
4+
/* Define if building universal (internal helper macro) */
5+
/* #undef AC_APPLE_UNIVERSAL_BUILD */
6+
7+
/* Set to 1 if __builtin_bswap16 is available */
8+
#define HAVE_BUILTIN_BSWAP16 1
9+
10+
/* Set to 1 if __builtin_bswap32 is available */
11+
#define HAVE_BUILTIN_BSWAP32 1
12+
13+
/* Set to 1 if __builtin_bswap64 is available */
14+
#define HAVE_BUILTIN_BSWAP64 1
15+
16+
/* Define to 1 if you have the <dlfcn.h> header file. */
17+
#define HAVE_DLFCN_H 1
18+
19+
/* Define to 1 if you have the <GLUT/glut.h> header file. */
20+
/* #undef HAVE_GLUT_GLUT_H */
21+
22+
/* Define to 1 if you have the <GL/glut.h> header file. */
23+
/* #undef HAVE_GL_GLUT_H */
24+
25+
/* Define to 1 if you have the <inttypes.h> header file. */
26+
#define HAVE_INTTYPES_H 1
27+
28+
/* Define to 1 if you have the <memory.h> header file. */
29+
#define HAVE_MEMORY_H 1
30+
31+
/* Define to 1 if you have the <OpenGL/glut.h> header file. */
32+
/* #undef HAVE_OPENGL_GLUT_H */
33+
34+
/* Have PTHREAD_PRIO_INHERIT. */
35+
#define HAVE_PTHREAD_PRIO_INHERIT 1
36+
37+
/* Define to 1 if you have the <shlwapi.h> header file. */
38+
/* #undef HAVE_SHLWAPI_H */
39+
40+
/* Define to 1 if you have the <stdint.h> header file. */
41+
#define HAVE_STDINT_H 1
42+
43+
/* Define to 1 if you have the <stdlib.h> header file. */
44+
#define HAVE_STDLIB_H 1
45+
46+
/* Define to 1 if you have the <strings.h> header file. */
47+
#define HAVE_STRINGS_H 1
48+
49+
/* Define to 1 if you have the <string.h> header file. */
50+
#define HAVE_STRING_H 1
51+
52+
/* Define to 1 if you have the <sys/stat.h> header file. */
53+
#define HAVE_SYS_STAT_H 1
54+
55+
/* Define to 1 if you have the <sys/types.h> header file. */
56+
#define HAVE_SYS_TYPES_H 1
57+
58+
/* Define to 1 if you have the <unistd.h> header file. */
59+
#define HAVE_UNISTD_H 1
60+
61+
/* Define to 1 if you have the <wincodec.h> header file. */
62+
/* #undef HAVE_WINCODEC_H */
63+
64+
/* Define to 1 if you have the <windows.h> header file. */
65+
/* #undef HAVE_WINDOWS_H */
66+
67+
/* Define to the sub-directory in which libtool stores uninstalled libraries.
68+
*/
69+
#define LT_OBJDIR ".libs/"
70+
71+
/* Name of package */
72+
#define PACKAGE "libwebp"
73+
74+
/* Define to the address where bug reports for this package should be sent. */
75+
#define PACKAGE_BUGREPORT "http://code.google.com/p/webp/issues"
76+
77+
/* Define to the full name of this package. */
78+
#define PACKAGE_NAME "libwebp"
79+
80+
/* Define to the full name and version of this package. */
81+
#define PACKAGE_STRING "libwebp 0.4.3"
82+
83+
/* Define to the one symbol short name of this package. */
84+
#define PACKAGE_TARNAME "libwebp"
85+
86+
/* Define to the home page for this package. */
87+
#define PACKAGE_URL "http://developers.google.com/speed/webp"
88+
89+
/* Define to the version of this package. */
90+
#define PACKAGE_VERSION "0.4.3"
91+
92+
/* Define to necessary symbol if this constant uses a non-standard name on
93+
your system. */
94+
/* #undef PTHREAD_CREATE_JOINABLE */
95+
96+
/* Define to 1 if you have the ANSI C header files. */
97+
#define STDC_HEADERS 1
98+
99+
/* Version number of package */
100+
#define VERSION "0.4.3"
101+
102+
/* Enable experimental code */
103+
/* #undef WEBP_EXPERIMENTAL_FEATURES */
104+
105+
/* Define to 1 to force aligned memory operations */
106+
/* #undef WEBP_FORCE_ALIGNED */
107+
108+
/* Set to 1 if AVX2 is supported */
109+
/* #undef WEBP_HAVE_AVX2 */
110+
111+
/* Set to 1 if GIF library is installed */
112+
/* #undef WEBP_HAVE_GIF */
113+
114+
/* Set to 1 if OpenGL is supported */
115+
/* #undef WEBP_HAVE_GL */
116+
117+
/* Set to 1 if JPEG library is installed */
118+
/* #undef WEBP_HAVE_JPEG */
119+
120+
/* Set to 1 if PNG library is installed */
121+
/* #undef WEBP_HAVE_PNG */
122+
123+
/* Set to 1 if SSE2 is supported */
124+
/* #undef WEBP_HAVE_SSE2 */
125+
126+
/* Set to 1 if TIFF library is installed */
127+
/* #undef WEBP_HAVE_TIFF */
128+
129+
/* Undefine this to disable thread support. */
130+
#define WEBP_USE_THREAD 1
131+
132+
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
133+
significant byte first (like Motorola and SPARC, unlike Intel). */
134+
#if defined AC_APPLE_UNIVERSAL_BUILD
135+
# if defined __BIG_ENDIAN__
136+
# define WORDS_BIGENDIAN 1
137+
# endif
138+
#else
139+
# ifndef WORDS_BIGENDIAN
140+
/* # undef WORDS_BIGENDIAN */
141+
# endif
142+
#endif

0 commit comments

Comments
 (0)