0

dio パッケージで画像を jpg 形式でサーバーに送信したいのですが、どうすればよいですか?

画像方法を選択:

  void _chooseImageCamera() async {
file = await ImagePicker.pickImage(source: ImageSource.camera,imageQuality: 50);
setState(() {
  file = file;
  print(file);
});

画像アップロード方法:

  void _upload() async {
if (file == null) return;
String fileName = file.path.split('/').last;
Map<String, dynamic> formData = {
  "image": await MultipartFile.fromFile(file.path,filename: fileName),
};
await serverRequest().getRequest("/Information", formData).then((onValue) {
  print(json.decode(onValue));
});

誰でも私を助けてくれますか?

ありがとう

4

2 に答える 2