imgurl2zip
v0.0.7
Published
Imgurl2zip可以將輸入的圖片網址下載下來並輸出成zip檔。
Downloads
8
Readme
Imgurl2zip可以將輸入的圖片網址下載下來並輸出成zip檔。
使用範例:
import { Component, OnInit } from '@angular/core';
import { Img2zip } from 'imgurl2zip';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
constructor(private img2zip: Img2zip) { }
ngOnInit(): void {
this.process();
}
async process() {
const zipName = 'name';
const urlArr = ['https://picsum.photos/200/300', 'https://picsum.photos/200']
await this.img2zip.getZip(zipName, urlArr);
}
}
參數
folderName:輸出的zip檔案名稱,格式為字串 string
urls:欲下載的圖片網址,格式為字串陣列 string[]