如何将UIImage转换为BMP格式并保存为数据(而不是JPG或PNG)

3
我将在我的iOS应用程序(Swift 3)和一个仅支持BMP格式的应用程序(在MS Windows上)之间同步BMP图像。
从MS Windows应用程序创建的BMP图像以base64字符串形式下载,保存为“Data”,并使用以下几行代码轻松显示:
let imageData = Data(base64Encoded: value)
let image = UIImage(data: imageData)

这是从下载的BMP图像生成UIImage,因为我可以显示图像,所以它完美地工作。
但我还需要从iOS应用程序创建BMP图像(绘制签名),为此,我使用了这个库https://github.com/felipesantolim/SHFSignature,感谢Felipe。
该库生成一个UIImage,我将其保存为Data,并且可以在我的iOS应用程序上显示它。
但是当我将其发送为base64字符串时,问题是MS Windows应用程序无法显示它(格式不受支持,仅支持BMP图像)。
有人能帮助我从UIImage或直接从SHFSignature图像函数生成真正的BMP图像吗?
谢谢
1个回答

4
我需要做同样的事情——将iOS中的UIImage保存到可用的Windows .bmp文件中。我实际上在Adafruit PyPortal IoT设备上使用了它,而不是在Windows机器上,但下面的技巧运行良好。将数据保存到Firebase存储中,并能够在PyPortal中使用它。
我在这里找到了一个有用的扩展: 如何在Swift中将UIImage转换为NSData并转换回UIImage? 我使用了这个扩展: // 注意,您需要导入MobileCoreServices才能识别k值
import MobileCoreServices

extension UIImage {

    func toJpegData (compressionQuality: CGFloat, hasAlpha: Bool = true, orientation: Int = 6) -> Data? {
        guard cgImage != nil else { return nil }
        let options: NSDictionary =     [
            kCGImagePropertyOrientation: orientation,
            kCGImagePropertyHasAlpha: hasAlpha,
            kCGImageDestinationLossyCompressionQuality: compressionQuality
        ]
        return toData(options: options, type: .jpeg)
    }

    func toData (options: NSDictionary, type: ImageType) -> Data? {
        guard cgImage != nil else { return nil }
        return toData(options: options, type: type.value)
    }

    // about properties: https://developer.apple.com/documentation/imageio/1464962-cgimagedestinationaddimage
    func toData (options: NSDictionary, type: CFString) -> Data? {
        guard let cgImage = cgImage else { return nil }
        return autoreleasepool { () -> Data? in
            let data = NSMutableData()
            guard let imageDestination = CGImageDestinationCreateWithData(data as CFMutableData, type, 1, nil) else { return nil }
            CGImageDestinationAddImage(imageDestination, cgImage, options)
            CGImageDestinationFinalize(imageDestination)
            return data as Data
        }
    }

    // https://developer.apple.com/documentation/mobilecoreservices/uttype/uti_image_content_types
    enum ImageType {
        case image // abstract image data
        case jpeg                       // JPEG image
        case jpeg2000                   // JPEG-2000 image
        case tiff                       // TIFF image
        case pict                       // Quickdraw PICT format
        case gif                        // GIF image
        case png                        // PNG image
        case quickTimeImage             // QuickTime image format (OSType 'qtif')
        case appleICNS                  // Apple icon data
        case bmp                        // Windows bitmap
        case ico                        // Windows icon data
        case rawImage                   // base type for raw image data (.raw)
        case scalableVectorGraphics     // SVG image
        case livePhoto                  // Live Photo

        var value: CFString {
            switch self {
            case .image: return kUTTypeImage
            case .jpeg: return kUTTypeJPEG
            case .jpeg2000: return kUTTypeJPEG2000
            case .tiff: return kUTTypeTIFF
            case .pict: return kUTTypePICT
            case .gif: return kUTTypeGIF
            case .png: return kUTTypePNG
            case .quickTimeImage: return kUTTypeQuickTimeImage
            case .appleICNS: return kUTTypeAppleICNS
            case .bmp: return kUTTypeBMP
            case .ico: return kUTTypeICO
            case .rawImage: return kUTTypeRawImage
            case .scalableVectorGraphics: return kUTTypeScalableVectorGraphics
            case .livePhoto: return kUTTypeLivePhoto
            }
        }
    }
}

我在代码中这样调用:

(我正在转换的图像是一个名为backgroundImageUIImage属性,它是包含下面代码的类的一个属性)。

let options: NSDictionary =     [:]
let convertToBmp = self.backgroundImage.toData(options: options, type: .bmp)
guard let bmpData = convertToBmp else {
    print(" ERROR: could not convert image to a bitmap bmpData var.")
    return
}

干杯!


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接