android裁剪图片后上传至服务器
创始人
2024-10-06 14:47:11
0

Android是目前市场上流行的移动操作系统之一,很多应用都需要上传图片至服务器,但有时需要裁剪图片以满足不同的需求。本篇文章将介绍如何从Android设备中裁剪图片并上传至服务器。

一、裁剪图片

在Android中,我们可以使用系统自带的裁剪功能,也可以使用第三方库来实现裁剪。这里介绍一下常用的第三方库Picasso和Glide:

Picasso裁剪图片:

Picasso.with(context).load(imageUrl).resize(width, height).centerCrop().into(imageView);// 设置imageView高度和宽度

Glide裁剪图片:

Glide.with(context)
   .load(imageUrl)
   .override(width, height)
   .transform(new CenterCrop())
   .into(imageView);

二、上传图片

1.使用HttpURLConnection上传图片:

private void uploadImage(String imagePath) {
  String end = "\r\n";
  String twoHyphens = "--";
  String boundary = "******";
  try {
    URL url = new URL("your server url");
    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
    connection.setDoInput(true);
    connection.setDoOutput(true);
    connection.setUseCaches(false);
    connection.setRequestMethod("POST");
    connection.setRequestProperty("Connection", "keep-alive");
    connection.setRequestProperty("Charset", "UTF-8");
    connection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
    DataOutputStream dos = new DataOutputStream(connection.getOutputStream());
    dos.writeBytes(twoHyphens + boundary + end);
    dos.writeBytes("Content-Disposition: form-data; name=\"uploadedfile\"; filename=\""
        + imagePath.substring(imagePath.lastIndexOf("/") + 1)
        + "\""
        + end);
    dos.writeBytes(end);
    FileInputStream fis = new FileInputStream(imagePath);
    byte[] buffer = new byte[8192];
    int count = 0;
    while ((count = fis.read(buffer)) != -1) {
      dos.write(buffer, 0, count);
    }
    fis.close();
    dos.writeBytes(end);
    dos.writeBytes(twoHyphens + boundary + twoHyphens + end);
    dos.flush();
    InputStream is = connection.getInputStream();
    InputStreamReader isr = new InputStreamReader(is, "utf-8");
    BufferedReader reader = new BufferedReader(isr);
    StringBuilder builder = new StringBuilder();
    String line;
    while ((line = reader.readLine()) != null) {
      builder.append(line);
    }
    Log.i(TAG, "upload response: " + builder.toString());
    dos.close();
    is.close

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...