像描述說的,我正在Android拍照。它被壓縮並添加到byte[]
,然後base64encoded
。它與JSON發送到我的web服務,它被「假定」被解碼並保存在SQL錶行中。我可以將編碼的字符串保存在一個單獨的行中,所以我知道它到達那裏。從Android發送Base64圖像與JSON到PHP Web服務,解碼,保存到SQL
任何人都可以看看這個,並告訴我我做錯了嗎? *對於冗長的代碼抱歉。如果被提供幫助,我不想錯過任何東西!
ANDROID SIDE
@Override
protected String doInBackground(String... args) {
// TODO Auto-generated method stub
// Check for success tag
int success;
stream = new ByteArrayOutputStream();
picture.compress(Bitmap.CompressFormat.JPEG, 50, stream);
image = stream.toByteArray();
String ba1 = Base64.encodeToString(image, Base64.DEFAULT);
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(MainScreen.this);
String post_username = sp.getString("username", "anon");
try {
ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("username", post_username));
params.add(new BasicNameValuePair("picture", ba1));
JSONObject json = jsonParser.makeHttpRequest(POST_COMMENT_URL,
"POST", params);
success = json.getInt(TAG_SUCCESS);
if (success == 1) {
Log.d("Picture Added!", json.toString());
//finish();
return json.getString(TAG_MESSAGE);
} else {
Log.d("Upload Failure!", json.getString(TAG_MESSAGE));
return json.getString(TAG_MESSAGE);
}
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute(String file_url) {
// dismiss the dialog once product deleted
pDialog.dismiss();
if (file_url != null) {
Toast.makeText(MainScreen.this, file_url, Toast.LENGTH_LONG)
.show();
}
}
}
}
PHP端
<?php
require("config.inc.php");
if (!empty($_POST)) {
$user = $_POST['username'];
$data = $_POST['picture'];
$data = base64_decode($data);
$im = imagecreatefromstring($data);
header('Content-Type: image/jpeg', true);
ob_start();
imagejpeg($im);
$imagevariable = ob_get_contents();
ob_end_clean();
$query = "INSERT INTO pictures (username, photo, rawdata) VALUES (:user, :photo, :raw) ";
$query_params = array(
':user' => $user,
':photo' => $imagevariable,
':raw' => $_POST['picture']
);
try {
$stmt = $db->prepare($query);
$result = $stmt->execute($query_params);
}
catch (PDOException $ex) {
$response["success"] = 0;
$response["message"] = "Database Error. Couldn't add post!";
die(json_encode($response));
}
$response["success"] = 1;
$response["message"] = "Picture Successfully Added!";
echo json_encode($response);
} else {
}
?>
什麼類型的值是'rawdata'在MySQL中設置的? Blob還是別的? – Pitchinnate
我正在使用rawdata來確認它是從應用程序一直到數據庫。 rawdata只是一個文本行並存儲了base64數據。解碼並存儲圖像後,我不需要它。這只是爲了測試。 – JeffK
如果有人能夠通過它,我也會很高興使用多方。我想過如何解碼這個base64會更容易。 – JeffK