我通过调用有角度的httpClient.get()获得具有url地址的图像对象。我停留在这里,即将图像对象转换为文件对象
答案 0 :(得分:1)
将json图像对象转换为blob对象
image_data = this.http.get<any>(url, { responseType: 'blob' as 'json' });
将blob对象转换为文件对象
this.file_object = new File([image_data], 'filename', { type: 'image/jpeg', lastModified:Date.now()});