nodeJS基础08:读取图片
Posted 花雨伞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodeJS基础08:读取图片相关的知识,希望对你有一定的参考价值。
1.读取图片
//server.js var http = require("http"); var readImage = require("./readImage"); http.createServer(function(res, res){ // res.writeHead(200, {"Content-Type":"text/html; charset=uf-8"}); res.writeHead(200, {"Content-Type":"image/jpeg"}); if (res.url!=="/favicon.ico") { //res.write(‘hello,world‘);//不能向客户端输出任何字节,否则会影响图片的输出 readImage.readImage(‘./test.png‘, res); //如果文件路径存在则添加数据,如果不存在则新建文件并且添加数据 console.log("继续执行"); //res.end(‘end‘); 在 readImage.readImage方法中已经写过了 } }).listen(8000); console.log(‘Server running at http://127.0.0.1:8000/‘);
// readImage.js var fs= require(‘fs‘); module.exports={ readImage:function(path,res){ fs.readFile(path,‘binary‘,function(err, file) { if (err) { console.log(err); return; }else{ console.log("输出文件"); res.writeHead(200, {‘Content-Type‘:‘image/jpeg‘}); res.write(file,‘binary‘); res.end(); } }); } };
注意:在读取图片的过程不能向页面写入任何东西。
现在我们能够向浏览器输出文字,或者图片。下一节我们将学习如何向浏览器同时输出文字和图片。
以上是关于nodeJS基础08:读取图片的主要内容,如果未能解决你的问题,请参考以下文章