• 图片处理


    /**
    * 缩小或放大图片
    * @param data 图片的byte数据
    * @param w 需要缩到的宽度
    * @param h 需要缩到高度
    * @return 缩放后的图片的byte数据
    */
    private byte[] ChangeImgSize(byte[] data, int nw, int nh){
    byte[] newdata = null;
    try{
    BufferedImage bis = ImageIO.read(new ByteArrayInputStream(data));
    int w = bis.getWidth();
    int h = bis.getHeight();
    double sx = (double) nw / w;
    double sy = (double) nh / h;
    AffineTransform transform = new AffineTransform();
    transform.setToScale(sx, sy);
    AffineTransformOp ato = new AffineTransformOp(transform, null);
    //原始颜色
    BufferedImage bid = new BufferedImage(nw, nh, BufferedImage.TYPE_3BYTE_BGR);
    ato.filter(bis, bid);

    //转换成byte字节
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ImageIO.write(bid, "jpeg", baos);
    newdata = baos.toByteArray();

    }catch(IOException e){
    e.printStackTrace();
    }
    return newdata;
    }

    void buff2Image(byte[] b,String tagSrc) throws Exception
    {
    try {
    FileOutputStream fout = new FileOutputStream(tagSrc);
    //将字节写入文件
    fout.write(b);
    fout.close();
    } catch (Exception e) {
    // TODO: handle exception
    }
    }

  • 相关阅读:
    地图篇-02.地理编码
    地图篇-01.获取用户位置
    新手教程之使用Xib自定义UITableViewCell
    封装
    NSDate简单介绍
    OC知识点归纳
    Xcode的控制台调试命令
    [开发笔记]UIApplication介绍
    技术分享-开发利器block底层实现
    技术分享-开发利器block
  • 原文地址:https://www.cnblogs.com/zhoading/p/8670056.html
Copyright © 2020-2023  润新知