gpt4 book ai didi

php - 使用json从PHP-MySql服务器获取图像到Android

转载 作者:行者123 更新时间:2023-11-29 04:40:47 24 4
gpt4 key购买 nike

我正在开发一个从 php 服务器下载图像并在 ImageView 中显示图像的应用程序..但是当我从 php 页面接收图像时

if (!empty($result)) {
if (mysql_num_rows($result) > 0) {

$result = mysql_fetch_array($result);

$user = array();
$user["image"] = base64_encode($result["image"]);
$response["success"] = 1;
$response["image_table"] = array();

array_push($response["image_table"], $user);
echo json_encode($response);
} else {
$response["success"] = 0;
$response["message"] = "No Image found";
echo json_encode($response);
}

它给了我这样的 json 响应

03-30 04:43:44.013: D/Image:(2770): {"success":1,"image_table":   [{"image":"\/9j\/4VeRRXhpZgAASUkqAAgAAAAMAAABBAABAAAA..........
03-30 04:43:44.253: D/skia(2770): --- decoder->decode returned false

我正在将此图像字符串解码为这样的位图....

json= jsonParser.makeHttpRequest(url_img_address, "GET", params);

Log.d("Image: ", json.toString());

try {
int success = json.getInt(TAG_SUCCESS);

if (success == 1) {
address = json.getJSONArray(TAG_IMAGE_TABLE);
for (int i = 0; i < address.length(); i++) {
JSONObject c = address.getJSONObject(i);
image = c.getString(TAG_IMAGE);
byte[] dwimage = Base64.decode(image.getBytes());
System.out.println(dwimage);
bmp = BitmapFactory.decodeByteArray(dwimage, 0, dwimage.length);
}
} else {

}
} catch (JSONException | IOException e) {
e.printStackTrace();
}

我正在将这个 bm 用于将 bmp 设置为 imageview 的另一个类

   ivProperty.setImageBitmap(bmp);

但它没有显示任何内容......我的异步任务 Activity 尚未完成并且它继续运行......我的问题是如何将 bmp 显示到 imageview 以及为什么我的 asyncktask 没有完成......提前谢谢....

最佳答案

您需要使用 base64 解码使用二进制解码,您将得到位图形式的图像..

byte[] decodedString = Base64.decode(encodedImage, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);

关于php - 使用json从PHP-MySql服务器获取图像到Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29342749/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com