如何使用php在android中减少上传图像的大小


how to reduce the size of image on uploading in android using php

我正在制作一个android应用程序,使用php将图像上传到mySql数据库中。代码工作正常,但当我上传像1MB这样更大尺寸的图像时,它就不工作了。它可以上传的最大大小约为600 KB。

所以我的问题是,如何在使用php将图像上传到服务器的同时压缩图像的大小。

我的php代码是

<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$photo= $_POST['photo'];
$bookname=$_POST['bookname'];
        $phoneNumber=$_POST['phoneNumber'];
        $price=$_POST['price'];
require_once('loginConnect.php');
$sql ="SELECT id FROM images ORDER BY id ASC";
$res = mysqli_query($con,$sql);
$id = 0;
while($row = mysqli_fetch_array($res)){
        $id = $row['id'];
}

         $path = "uploads/$id.png";
$actualpath = "http://www.bsservicess.com/photoUpload/$path";
$sql = "INSERT INTO images (photo,bookname,phoneNumber,price) VALUES
('$actualpath','$bookname','$phoneNumber','$price')";
if(mysqli_query($con,$sql)){
    file_put_contents($path,base64_decode($photo));
    echo "Successfully Uploaded";
}
mysqli_close($con);
}else{
echo "Error";
}
?>

我的安卓活动代码是

 package com.manali.vivek.userregistration;
import android.app.ProgressDialog;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.v7.app.ActionBarActivity;
import android.util.Base64;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.HashMap;

public class image extends ActionBarActivity implements View.OnClickListener 
{
public static final String UPLOAD_URL =  
"http://www.bsservicess.com/photoUpload/uploadImage.php"; 
public static final String UPLOAD_KEY = "photo";
private int PICK_IMAGE_REQUEST = 1;
private Button buttonChoose;
private Button buttonUpload;
private Button buttonView;
private ImageView imageView;
private Bitmap bitmap;
private Uri filePath;
EditText et1, et2, et3;

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_image);
buttonChoose = (Button) findViewById(R.id.buttonChoose);
buttonUpload = (Button) findViewById(R.id.buttonUpload);
buttonView = (Button) findViewById(R.id.buttonViewImage);
et1 = (EditText) findViewById(R.id.et1);
et2 = (EditText) findViewById(R.id.et2);
et3 = (EditText) findViewById(R.id.et3);
imageView = (ImageView) findViewById(R.id.imageView);
buttonChoose.setOnClickListener(this);
buttonUpload.setOnClickListener(this);
buttonView.setOnClickListener(this);


}
private void showFileChooser() {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), 
PICK_IMAGE_REQUEST);
}

protected void onActivityResult(int requestCode, int resultCode, Intent
 data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK && data
!= null && data.getData() != null) {
    filePath = data.getData();
    try {
        bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(),
    filePath);
        imageView.setImageBitmap(bitmap);
    } catch (IOException e) {
        e.printStackTrace();
    }
} 
}
  public String getStringImage(Bitmap bmp) {
   ByteArrayOutputStream baos = new ByteArrayOutputStream();
    bmp.compress(Bitmap.CompressFormat.PNG, 10, baos);
   byte[] imageBytes = baos.toByteArray();

       String encodedImage = Base64.encodeToString(imageBytes, 
     Base64.DEFAULT);
       return encodedImage;
      }

      private void uploadImage() {

         class UploadImage extends AsyncTask<Bitmap, Void, String> {
        ProgressDialog loading;
       RequestHandler rh = new RequestHandler();
      @Override
      protected void onPreExecute() {
        super.onPreExecute();
        loading = ProgressDialog.show(image.this, "Uploading Image",
     "Please wait...", true, true);
     }
     @Override
     protected void onPostExecute(String s) {
        super.onPostExecute(s);
        loading.dismiss();
        Toast.makeText(getApplicationContext(), s, 
    Toast.LENGTH_LONG).show();
     }
     @Override
     protected String doInBackground(Bitmap... params) {
        Bitmap bitmap = params[0];
        String uploadImage = getStringImage(bitmap);
        String bookname = et1.getText().toString();
        String phoneNumber = et2.getText().toString();
        String price = et3.getText().toString();
        HashMap<String, String> data = new HashMap<>();
        data.put(UPLOAD_KEY, uploadImage);
        data.put(Fetch.BOOK_NAME, bookname);
        data.put(Fetch.PHONE_NUMBER, phoneNumber);
        data.put(Fetch.PRICE, price);

        String result = rh.sendPostRequest(UPLOAD_URL, data);
        return result;
    }
 }
 UploadImage ui = new UploadImage();
 ui.execute(bitmap);
}

@Override
public void onClick(View v) {
if (v == buttonChoose) {
    showFileChooser();
}
if (v == buttonUpload) {
    uploadImage();
}

if (v == buttonView) {
    viewImage();
 }
}

private void viewImage() {
startActivity(new Intent(image.this, Main.class));
}

 ///////toolbar
 }
I have try everything but nothing works so plz help me

当我们压缩文件时,PNG中的文件大小仍然更多。因此最好在文件压缩中使用JPEG。。

正如这个来源所建议的,压缩文件大小来后是这个顺序(升序)

24位压缩JPG、8位GIF、8位PNG、全质量24位JPG和24位PNG。

文件说.compress (format,quality,stream)有三个参数。。

格式:JPEG、PNG、WEBP

质量:0-100。0表示小尺寸压缩,100表示最高质量压缩

stream:OutputStream:用于写入压缩数据的OutputStream。

其中formatquanlity是您要找的。。。正如我所评论的,试试看。

bmp.compress(Bitmap.CompressFormat.JPEG, 5, baos);

寻找JPEG、PNG、GIF之间的进一步差异:

StackOverflow