我在Java中使用此代码来转换图像中的字节数组。
final byte[] imageData = IOUtil.toByteArray(request.raw().getInputStream());
final FileOutputStream outputStream = new FileOutputStream("./images/" +
imageId.toString() + ".png");
outputStream.write(imageData);
outputStream.close();
但是在PHP中我不起作用。
$file = file_get_contents("php://input");
$photoId = $_GET['photoId'];
file_put_contents("photos/" . $photoId . ".png", $file);
你能帮我吗?