KMImageToPDFMethod.swift 357 B

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