web-dev-qa-db-ja.com

Typescriptで画像をbase64文字列に変換する

Angular 5から、base64文字列をAPIに投稿しようとしています。

まず、画像からbase64に変換する必要があります。インターネットとMDNで確認した後、方法を開発しました

  OnIDChange(event) {
    var file = event.target.files[0];
    var reader = new FileReader();
    reader.onloadend = this.handleReaderLoaded.bind(this, "Id");
    reader.readAsBinaryString(file);
  }

そして

    handleReaderLoaded(readerEvt:any, indicator: string) {
     var binaryString = readerEvt.target.result;
     if (indicator == "Id") {
       this.Model.IDPhoto = btoa(binaryString);
     }
  }

このbase64をモデルプロパティに保存してAPIに投稿する必要があります

しかし、コンソールでは、「未定義のプロパティ「結果」を読み取れません」というエラーが発生します

var binaryString = readerEvt.target.result;

これの代わりに別のより適切な方法がある場合、どのようにイメージをbase64に変換できますか(npmパッケージまたは他の何か、それから私にも知らせてください)

前もって感謝します 。

MDNからの参照 MDNリンク

4
Tanwer

readAsDataUrl()を使用する必要があります:

function getBase64(event) {
   let me = this;
   let file = event.target.files[0];
   let reader = new FileReader();
   reader.readAsDataURL(file);
   reader.onload = function () {
     //me.modelvalue = reader.result;
     console.log(reader.result);
   };
   reader.onerror = function (error) {
     console.log('Error: ', error);
   };
}
18

base64として画像を読み取ります:

  selectFile(event){
      var files = event.target.files;
      var file = files[0];

    if (files && file) {
        var reader = new FileReader();

        reader.onload =this.handleFile.bind(this);

        reader.readAsBinaryString(file);
    }
  }



  handleFile(event) {
     var binaryString = event.target.result;
            this.base64textString= btoa(binaryString);
            console.log(btoa(binaryString));
    }


***********************************************************************************

OR

NPMパッケージの代替使用:

https://www.npmjs.com/package/alife-file-to-base64

install:npm install alife-file-to-base64 --save

Dependecyをプロジェクトに追加する

AlifeFileToBase64Moduleをプロジェクトにインポートし、インポートセクションにモジュールを含めます

import { AlifeFileToBase64Module } from 'alife-file-to-base64';

@NgModule({
  declarations: [
  ],
  imports: [
    AlifeFileToBase64Module
  ],
  providers: [],
  bootstrap: [AppComponent]
})

プロジェクトの任意の場所で使用する構文:

<input type="file" alife-file-to-base64 (onFileChanged)="onFileChanges($event)" [(fileModel)]="files" />
  • onFileChanged:ファイルがユーザーによって選択されるときに呼び出されます。ファイル名、ファイルサイズ、タイプ、base64が含まれます。
  • fileModel:コンポーネント変数の値を設定するには
0
Dinesh Ghule

これは、プロフィール写真をアップロードするために私が行ったものでもあり、512KB未満のサイズもチェックした後、次の関数でその画像をAPIに投稿しました

fileReader()とreadAsDataURL()を使用してファイルをbase64に変換しました

/* On Change Profile image*/    
    onProfileChange(event:any) {
        if(event.target.files && event.target.files[0]) {
            if(event.target.files[0].type && event.target.files[0].type.split('/')[0] == ["image"] && event.target.files[0].size <= 512000){
                this.file = event.target.files[0];
                var reader = new FileReader();
                reader.onload = (event:any) => {
                    this.Image = event.target.result;
                }
                reader.readAsDataURL(event.target.files[0]);
                this.isBrowser = false;
            } else {
                this.isBrowser = true;
                this._toastr.error("Max image upload size is 500KB only");
            }
        }
    }
    /*end Of On Change profile Image*/


    /*Image api*/
    AddImage(event: any){
        let data=new FormData();
        if(this.file){
            data.append('image',this.file);
            this._db.Post('api/users/image',data).subscribe(b=>{
                if(b.IsResult){
                    this._toastr.success(b.ResultMsg);
                    this.getProfileDetail();
                    this.isBrowser=true;
                }
            });
        }else{
            this._toastr.error("Something went wrong");
        }
    }   
0
Suhas Mandumale