0

我有一个带有类型图像的 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());
    
   }

4

1 回答 1

1

这就是答案。

res.writeHead(200, {'Content-Type': 'image/jpeg'});
//var image = rs;
var image  = new Buffer(rs.recordset[0].Image);
res.end(image);

于 2017-08-03T16:07:11.187 回答