我有一个带有类型图像的 SQL Server 数据库varbinary
。我需要将varbinary
图像转换并返回到网页。帮助将不胜感激。
我发现了这个,它非常有帮助,但我需要反过来。 Node.js 如何从 MS Sql 服务器数据类型的 varbinary 转换为图像
就像是 ...
var image = new Buffer(rs.recordset[0].Image).toString('base64');
res.type('image/jpeg; charset=utf-8');
res.status(200).end(image);
<ng-template ngbSlide *ngFor="let image of images">
<img class="center-block" src="data:image/JPEG;base64,{{image}}">
</ng-template>
而我的服务是这样的......
getImage(query){
return this._http.get(this.API_URL + this.baseUrl + query)
.map(res => res.json());
}