前端与iOS图片与base64转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端与iOS图片与base64转换相关的知识,希望对你有一定的参考价值。

参考技术A ios----->前端

UIImage*originImage=[UIImage imageNamed:@"originImage.png"];

NSData*data=UIImageJPEGRepresentation(originImage,1.0f);

NSString*encodedImageStr=[data base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];

然后 再拼上前缀 data:image/png;base64,

这样就拼接出来了一个前端用来展示的 base64的字符串

前端------->iOS 

与上面的流程相反,先从前端获取前端生成的base64字符串

截去data:image/png;base64,前缀

NSData*decodedImageData=[[NSData alloc]initWithBase64EncodedString:encodedImageStr options:NSDataBase64DecodingIgnoreUnknownCharacters];

UIImage*decodedImage=[UIImage imageWithData:decodedImageData];

这样就得到iOS想要的image对象。

图片与Base64的转换

图片转为Base64

// 图片转化成base64字符串
public static String GetImageStr() {// 将图片文件转化为字节数组字符串,并对其进行Base64编码处理
    String imgFile = "C:/image1/2.png";// 待处理的图片
    InputStream in = null;
    byte[] data = null;
    // 读取图片字节数组
    try {
        in = new FileInputStream(imgFile);
        data = new byte[in.available()];
        in.read(data);
        in.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
    // 对字节数组Base64编码
    BASE64Encoder encoder = new BASE64Encoder();
    return encoder.encode(data);// 返回Base64编码过的字节数组字符串
}

Base64转为图片

public static boolean GenerateImage(String imgStr,String imgFilePath) { // 对字节数组字符串进行Base64解码并生成图片
    if (imgStr == null) // 图像数据为空
        return false;
    BASE64Decoder decoder = new BASE64Decoder();
    try {
        // Base64解码
        String baseValue = imgStr.replaceAll(" ", "+");//前台在用Ajax传base64值的时候会把base64中的+换成空格,所以需要替换回来。
        String s = baseValue.replaceAll("data(.*?);base64,","");
        byte[] b = decoder.decodeBuffer(s);
        imgStr = imgStr.replace("base64,", "");
        for (int i = 0; i < b.length; ++i) {
            if (b[i] < 0) {// 调整异常数据
                b[i] += 256;
            }
        }
        // 生成jpeg图片
        OutputStream out = new FileOutputStream(imgFilePath);
        out.write(b);
        out.flush();
        out.close();
        return true;
    } catch (Exception e) {
        return false;
    }
}

 这里在转码时,使用正则表达式自动甄别图片是什么类型的。

以上是关于前端与iOS图片与base64转换的主要内容,如果未能解决你的问题,请参考以下文章

前端将图片转换为base64位,使用ajax传递到后台,但是图片经过base64转换成字符串后非常长,无法使用ajax

前端将图片转换为base64位无法使用ajax传递怎么解决?

前端base64编码与解码

前端图片上传的两种逻辑分析

[java] 图片与base64之间的互相转换

base64转换成图片