0

タイプのイメージを含む SQL Server データベースがありますvarbinary。を変換してvarbinary、画像を Web ページに返す必要があります。助けていただければ幸いです。

これを見つけてとても助かりましたが、逆に必要です。 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