web项目经常在<img src=““>的src内放入图片的url,但如果图片是存储在数据库中,最方便的就是将图片的字节信息直接放入src内(而不是先将字节信息变为图片,在将url放入src)。
这里记录下svg 图片的处理过程:
环境:html+springboot
服务端的controller 处理过程:
@GetMapping(value = "/test")
@ResponseBody
public ResponseEntity<byte[]> test() throws IOException {
//将文件直接转换为字节流
//Path path = Paths.get(System.getProperty("user.dir"),this.legendStoragePath);
//File file = path.resolve("设备/称重机械/带式定量料秤.svg").toFile();
//byte[] bytes = Files.readAllBytes(file.toPath());
//将数据库的string信息直接变为流
String svgString = "我是mysql数据库的svg图片内容,字段类型为text";
byte[] bytes = svgString.getBytes();
HttpHeaders headers = LegendController.createSvgHeader(file.getName(), bytes.length);
return new ResponseEntity<byte[]>(bytes, headers, HttpStatus.CREATED);
}
前端html:
<img src="http://localhost:10003/test">