美文网首页
Swift 更换UIImage背景色方案, 图片合并

Swift 更换UIImage背景色方案, 图片合并

作者: YourSummer | 来源:发表于2019-10-24 09:47 被阅读0次
    1. 根据颜色生成UIImage对象
    let backgroundImage = UIImage.image(color: UIColor.red)
    
    1. 合并两张UIImage为一张, 图片不会变形, 只需要传入两张UIImage, 以及各自的合成后的最长边尺寸, 默认背景图最长边是86, 合成在背景图上的图片最长边是50
    let backgroundImage = UIImage.image(color: UIColor.red)
    let topImage = UIImage.image(color: UIColor.gray)
    // 默认大小
    let defaultCompareImage = UIImage.compare(backgroundImage: backgroundImage, image: topImage)
    // 自定义大小
    let customCompareImage = UIImage.compare(backgroundImage: backgroundImage, backgroundMaxSide: 100, image: topImage, imageMaxSide: 40)
    

    相关文章

      网友评论

          本文标题:Swift 更换UIImage背景色方案, 图片合并

          本文链接:https://www.haomeiwen.com/subject/rjhrvctx.html