nodejs读取网络图片
时间: 2023-05-22 11:06:52 浏览: 369
nodejs读取图片返回给浏览器显示
您好,以下是使用 Node.js 读取网络图片的示例代码:
```javascript
const https = require('https');
const fs = require('fs');
const imageUrl = 'https://example.com/image.png';
https.get(imageUrl, (response) => {
response.pipe(fs.createWriteStream('image.png'));
});
```
这段代码使用 `https` 模块发送请求获取远程图片,并使用 `fs` 模块将图片保存到本地。使用时只需将 `imageUrl` 替换为实际需要读取的图片链接即可。
希望能帮到你!
阅读全文