|
| 1 | +import Foundation |
| 2 | +import TurboJPEG |
| 3 | + |
| 4 | +#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS) |
| 5 | + import Darwin |
| 6 | +#elseif os(Android) || os(Linux) |
| 7 | + import Glibc |
| 8 | +#elseif os(Windows) |
| 9 | + import ucrt |
| 10 | +#else |
| 11 | + #error("C library not known for the target OS") |
| 12 | +#endif |
| 13 | + |
| 14 | +public enum pixelFormat: Int { |
| 15 | + case RGB888 = 0 // TJPF_RGB |
| 16 | + case BGR888 = 1 // TJPF_BGR |
| 17 | + case RGBA8888 = 2 // TJPF_RGBA |
| 18 | + case BGRA8888 = 3 // TJPF_BGRA |
| 19 | + case ARGB8888 = 4 // TJPF_ARGB |
| 20 | + case ABGR8888 = 5 // TJPF_ABGR |
| 21 | + case RGBA8880 = 6 // TJPF_RGBX |
| 22 | + case BGRA8880 = 7 // TJPF_BGRX |
| 23 | + case ARGB0888 = 8 // TJPF_XRGB |
| 24 | + case ABGR0888 = 9 // TJPF_XBGR |
| 25 | + case YUV400 = 10 // TJPF_GREY |
| 26 | + |
| 27 | + var channelCount: Int { |
| 28 | + switch self { |
| 29 | + case .RGB888: |
| 30 | + return 3 |
| 31 | + case .BGR888: |
| 32 | + return 3 |
| 33 | + case .RGBA8888: |
| 34 | + return 4 |
| 35 | + case .BGRA8888: |
| 36 | + return 4 |
| 37 | + case .ARGB8888: |
| 38 | + return 4 |
| 39 | + case .ABGR8888: |
| 40 | + return 4 |
| 41 | + case .RGBA8880: |
| 42 | + return 3 |
| 43 | + case .BGRA8880: |
| 44 | + return 3 |
| 45 | + case .ARGB0888: |
| 46 | + return 3 |
| 47 | + case .ABGR0888: |
| 48 | + return 3 |
| 49 | + case .YUV400: |
| 50 | + return 1 |
| 51 | + } |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +public class ImageData { |
| 56 | + let height: CInt |
| 57 | + let width: CInt |
| 58 | + let buffer: UnsafeMutablePointer<UInt8> |
| 59 | + let formatProperties: pixelFormat |
| 60 | + |
| 61 | + init(height: Int32, width: Int32, imageFormat: pixelFormat) { |
| 62 | + self.height = height |
| 63 | + self.width = width |
| 64 | + formatProperties = imageFormat |
| 65 | + buffer = tjAlloc(Int32(imageFormat.channelCount) * width * height) |
| 66 | + } |
| 67 | + |
| 68 | + deinit { |
| 69 | + tjFree(self.buffer) |
| 70 | + } |
| 71 | +} |
| 72 | + |
| 73 | +func loadJPEG(atPath path: String, imageFormat: pixelFormat) throws -> ImageData { |
| 74 | + var width: CInt = 0 |
| 75 | + var height: CInt = 0 |
| 76 | + |
| 77 | + guard FileManager.default.fileExists(atPath: path) else { |
| 78 | + throw ("File does not exist at \(path).") |
| 79 | + } |
| 80 | + |
| 81 | + let data: Data = FileManager.default.contents(atPath: path)! |
| 82 | + let jpegSize: UInt = UInt(data.count) |
| 83 | + |
| 84 | + return data.withUnsafeBytes { |
| 85 | + let finPointer: UnsafeMutablePointer<UInt8> = UnsafeMutablePointer<UInt8>(mutating: $0.baseAddress!.assumingMemoryBound(to: UInt8.self)) |
| 86 | + |
| 87 | + let decompressor = tjInitDecompress() |
| 88 | + defer { tjDestroy(decompressor) } |
| 89 | + |
| 90 | + /* Initializes `width` and `height` variables */ |
| 91 | + tjDecompressHeader(decompressor, finPointer, jpegSize, &width, &height) |
| 92 | + |
| 93 | + let imageData = ImageData(height: height, width: width, imageFormat: imageFormat) |
| 94 | + |
| 95 | + /* Decompresses the JPEG Image from `data` into `buffer` buffer |
| 96 | + - Decompresses `finPointer` which has image data |
| 97 | + - uses `jpegSize` as size of image in bytes |
| 98 | + - Image gets decompressed into `buffer` buffer |
| 99 | + - `width` = width of Image |
| 100 | + - pitch = 0 |
| 101 | + - `height` = height of image |
| 102 | + - pixelFormat = imageFormat.rawValue which denotes Pixel Format to which image is being decompressed. |
| 103 | + - flags = 0 |
| 104 | + */ |
| 105 | + tjDecompress2(decompressor, finPointer, UInt(jpegSize), imageData.buffer, imageData.width, 0, imageData.height, Int32(imageFormat.rawValue), 0) |
| 106 | + |
| 107 | + return imageData |
| 108 | + } |
| 109 | +} |
| 110 | + |
| 111 | +func saveJPEG(atPath path: String, image: ImageData) throws { |
| 112 | + do { |
| 113 | + try FileManager.default.removeItem(atPath: path) |
| 114 | + } catch { |
| 115 | + // File not present |
| 116 | + } |
| 117 | + |
| 118 | + var jpegBuf: UnsafeMutablePointer<UInt8>? |
| 119 | + defer { tjFree(jpegBuf) } |
| 120 | + |
| 121 | + let outQual: CInt = 95 |
| 122 | + var jpegSize: UInt = 0 |
| 123 | + |
| 124 | + let compressor = tjInitCompress() |
| 125 | + defer { tjDestroy(compressor) } |
| 126 | + |
| 127 | + /* Compress the Image Data from `image.data` into `jpegBuf` |
| 128 | + - Compresses image.data |
| 129 | + - `width` = width of Image |
| 130 | + - pitch = 0 |
| 131 | + - `height` = height of image |
| 132 | + - `pixelFormat` = image.formatProperties.rawValue which denotes Pixel Format to which image is being compressed. |
| 133 | + - Image gets compressed into `jpegBuf` buffer |
| 134 | + - initializes `jpegSize` as size of image in bytes |
| 135 | + - `outSubsamp` = 0 |
| 136 | + - `outQual` = the image quality of the generated JPEG image (1 = worst, 100 = best), 95 taken as default |
| 137 | + - `flags` = 0 |
| 138 | + */ |
| 139 | + tjCompress2(compressor, image.buffer, image.width, 0, image.height, Int32(image.formatProperties.rawValue), &jpegBuf, &jpegSize, 0, outQual, 0) |
| 140 | + |
| 141 | + let bufferPointer = UnsafeMutableBufferPointer(start: jpegBuf, count: Int(jpegSize)) |
| 142 | + let jpegData = Data(buffer: bufferPointer) |
| 143 | + |
| 144 | + guard FileManager.default.createFile(atPath: path, contents: jpegData) else { |
| 145 | + throw ("Error during image saving") |
| 146 | + } |
| 147 | +} |
| 148 | + |
| 149 | +extension String: LocalizedError { |
| 150 | + public var errorDescription: String? { return self } |
| 151 | +} |
0 commit comments