├── .github └── workflows │ └── build.yml ├── .gitignore ├── FastImage.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── FastImage.xcscheme │ └── FastImageTests.xcscheme ├── FastImage ├── DataExtensions.swift ├── FastImage.h ├── FastImage.swift ├── Info.plist └── Size Decoders │ ├── BMPSizeDecoder.swift │ ├── CURSizeDecoder.swift │ ├── Exif.swift │ ├── GIFSizeDecoder.swift │ ├── ICOSizeDecoder.swift │ ├── ImageSizeDecoder.swift │ ├── JPGSizeDecoder.swift │ ├── PNGSizeDecoder.swift │ ├── PSDSizeDecoder.swift │ └── TIFFSizeDecoder.swift ├── FastImageTests ├── DataTests.swift ├── FastImageTests.swift └── Info.plist ├── LICENSE └── README.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/.gitignore -------------------------------------------------------------------------------- /FastImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FastImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FastImage.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FastImage.xcodeproj/xcshareddata/xcschemes/FastImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage.xcodeproj/xcshareddata/xcschemes/FastImage.xcscheme -------------------------------------------------------------------------------- /FastImage.xcodeproj/xcshareddata/xcschemes/FastImageTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage.xcodeproj/xcshareddata/xcschemes/FastImageTests.xcscheme -------------------------------------------------------------------------------- /FastImage/DataExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/DataExtensions.swift -------------------------------------------------------------------------------- /FastImage/FastImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/FastImage.h -------------------------------------------------------------------------------- /FastImage/FastImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/FastImage.swift -------------------------------------------------------------------------------- /FastImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Info.plist -------------------------------------------------------------------------------- /FastImage/Size Decoders/BMPSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/BMPSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/CURSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/CURSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/Exif.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/Exif.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/GIFSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/GIFSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/ICOSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/ICOSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/ImageSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/ImageSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/JPGSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/JPGSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/PNGSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/PNGSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/PSDSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/PSDSizeDecoder.swift -------------------------------------------------------------------------------- /FastImage/Size Decoders/TIFFSizeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImage/Size Decoders/TIFFSizeDecoder.swift -------------------------------------------------------------------------------- /FastImageTests/DataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImageTests/DataTests.swift -------------------------------------------------------------------------------- /FastImageTests/FastImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImageTests/FastImageTests.swift -------------------------------------------------------------------------------- /FastImageTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/FastImageTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylehickinson/FastImage/HEAD/README.md --------------------------------------------------------------------------------