1234567891011121314 |
- //
- // KMImageToPDFMethod.swift
- // PDF Master
- //
- // Created by kdanmobile on 2023/10/26.
- //
- import Foundation
- class KMImageToPDFMethod: NSObject {
- static func supportedImageTypes() -> [String] {
- return ["jpg", "cur", "bmp", "jpeg", "gif", "png", "tiff", "tif", "ico", "icns", "tga", "psd", "eps", "hdr", "jp2", "jpc", "pict", "sgi"]
- }
- }
|