更新MySQL php中的图像路径

时间:2016-01-17 11:17:21

标签: php android image

有人可以帮帮我吗?如何更新图像路径?

我已成功将图像路径和文本存储到MySQL中,并将图像存储在文件夹中。

这是我用来上传图片路径和文字的php代码。

enter image description here

 <?php
        if( $_SERVER['REQUEST_METHOD']=='POST' ){
            if( !empty( $_POST['listItems'] ) ){
                $listItems = json_decode( $_POST['listItems'], true ); 
                $mysqli = new mysqli("127.0.0.1:3307", "root", "", "androiddb");
                if( $mysqli->connect_errno ) echo "Failed to connect to MySQL";
                $sql="INSERT INTO `staff_benefit` 
                     ( `type`, `amount`, `description`, `image`, `ts_id` ) 
                      VALUES ( ?, ?, ?, ?, ? )";
                if($stmt=$mysqli->prepare($sql )){
                    $url="http://192.168.1.7:80/Android/CRUD/PhotoUpload/";
                    foreach( $listItems as $item ){ 
                        $id = uniqid();
                        $image_name = $id.".png";
                        $save_path = 'PhotoUpload/'.$image_name;
                        $image_url = $url.$image_name;
                        $bytes=file_put_contents($save_path, base64_decode($item['image']));
                        if( !$bytes ){
                            echo 'Error saving image';  
                        }else{
                            $stmt->bind_param('sssss', 
                            $item['type'], 
                            $item['amount'], 
                            $item['description'], 
                            $image_url, 
                            $item['ts_id'] );
                            if( !$res=$stmt->execute()){ 
                                echo 'Query failed with code: '.$stmt->errno;
                            }
                        }
                    } 
                }
                $mysqli->close();
            }
        }
    ?>

但是当我尝试更新Android中的行时,图片路径将从http://更改为/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQ..,如下图所示。

enter image description here

这是我的更新php

  <?php 
    if($_SERVER['REQUEST_METHOD']=='POST'){
        //Getting values 

        $id = $_POST['id'];
        $type = $_POST['type'];
        $amount = $_POST['amount'];
        $description = $_POST['description'];

        //importing database connection script 
        require_once('dbConnect.php');

        if(isset($_POST['image']))
        {
            $image=$_POST['image'];
            $id = uniqid();
            $url="http://192.168.1.7:80/Android/CRUD/PhotoUpload/";
            $image_name = $id.".png";
            $save_path = 'PhotoUpload/'.$image_name;
            $image_url = $url.$image_name;
            $bytes =file_put_contents($save_path, base64_decode($_POST['image']));
              $sql = "UPDATE staff_benefit SET type = '$type', amount = '$amount', description='$description', image='$image' 
                WHERE id = '$id'";
        }
        else{

             $sql = "UPDATE staff_benefit SET type = '$type', amount = '$amount', description='$description'
                  WHERE id = '$id'";

        }

        //Updating database table 
        if(mysqli_query($con,$sql)){
            echo ' Updated Successfully';
        }else{

            echo mysqli_error($con);
            exit;
        }

        //closing connection 
        mysqli_close($con);
    }
?>

更新代码

     public void update( final String claimType,  final String Amount, final String Description, final Uri imageUri)
        {
               class updateImageAndText extends AsyncTask<Void,Void,String>{
                  // ProgressDialog loading;
                   @Override
                   protected void onPreExecute() {
                       super.onPreExecute();
                      // loading = ProgressDialog.show(Edit_Staff.this,"Updating...","Wait...",false,false);
                   }

                   @Override
                   protected void onPostExecute(String s) {
                       super.onPostExecute(s);
                      // loading.dismiss();
                       Toast.makeText(getApplicationContext(), s, Toast.LENGTH_LONG).show();
                       try {
                           Intent returnIntent = new Intent();
                           returnIntent.putExtra("ClaimType", claimType);
                           returnIntent.putExtra("Amount", Amount);
                           returnIntent.putExtra("Description", Description);
                           returnIntent.putExtra("photo", imageUri.toString());
                           setResult(Activity.RESULT_OK, returnIntent);
                           finish();
                       }catch(Exception e)
                       {

                       }
                   }

                   @Override
                   protected String doInBackground(Void... params) {
                       HashMap<String,String> hashMap = new HashMap<>();
                       hashMap.put(Configs.KEY_ID, String.valueOf(ID));
                       Log.e("ID", ID + "");
                       hashMap.put(Configs.KEY_TYPE, claimType);
                       hashMap.put(Configs.KEY_AMOUNT, Amount);
                       hashMap.put(Configs.KEY_DESCRIPTION, Description);
                       if(imageUri != null){
                           Log.d("log", "photo " + imageUri);
                           hashMap.put(Configs.KEY_IMAGE,getStringImage(imageUri));
                       }else{
                           Log.d("log", "photo is null " );
                       }
                       RequestHandler rh = new RequestHandler();
                       String s = rh.sendPostRequest(Configs.URL_UPDATEDE_IMAGE_TEXT,hashMap);
                       return s;
                   }
               }

            updateImageAndText ue = new updateImageAndText();
            ue.execute();
        }


  public String getStringImage(Uri imgUri) {

        try {
            Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), imgUri);
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
            byte[] imageBytes = baos.toByteArray();
            String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);
            return encodedImage;
        } catch (Exception e) {
        }

        return "";
    }

如何更新图像路径?非常感谢 !

错误

enter image description here

1 个答案:

答案 0 :(得分:1)

如果是图片上传,您需要正确保存图像并创建图像路径,就像在上一个脚本中一样,

$id = uniqid();
        $url="http://192.168.1.7:80/Android/CRUD/PhotoUpload/";
        $image_name = $id.".png";
        $save_path = 'PhotoUpload/'.$image_name;
        $image_url = $url.$image_name;
        $bytes =file_put_contents($save_path, base64_decode($_POST['image']));