Sharp를 사용하여 NodeJS에서 이미지 편집
패키지 설치
npm 나는 날카로운
서버.js
const express = require('express')
const app = express()
const multer = require('multer');
const path= require('path');
const sharp = require('sharp');
const UserModel=require('./user.model');
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, '/uploads')
},
filename: function (req, file, cb) {
const uniqueSuffix = Date.now() + '-' + Math.round(Math.random() * 1E9)
cb(null, file.fieldname + '-' + uniqueSuffix)
}
})
const upload = multer(
{ storage: storage ,
fileFilter: function (req, file, callback) {
var ext = path.extname(file.originalname);
if(ext !== '.png' && ext !== '.jpg' && ext !== '.gif' && ext !== '.jpeg') {
return callback(new Error('Only images are allowed'))
}
callback(null, true)
},
limits:{
fileSize: 1024 * 1024
}
})
app.post('/profile', upload.single('profile'),async function (req, res, next) {
// req.file contains the file fields
try {
await sharp("./uploads/"+req.file.filename)
.resize({
width: 150,
height: 97
})
.toFile("./resize-uploads/"+req.file.filename);
let user=await UserModel({name:req.body.name,avatar:req.file.filename}).save();
res.send(user);
} catch (error) {
console.log(error);
}
})
여기에서 먼저 원본 디렉토리 이미지에 파일을 업로드한 다음 이미지 크기를 조정하고 크기 조정 이미지를 다른 디렉토리에 저장합니다.
또한 샤프 패키지에 많은 기능을 추가하여 사용할 수 있습니다.
//filter image to grayscale
await sharp("./uploads/"+req.file.filename)
.extract({ width: 400, height: 320, left: 120, top: 70 })
.grayscale()
.toFile("./resize-uploads/"+req.file.filename);
//rotate image
await sharp("./uploads/"+req.file.filename)
.rotate(40, { background: { r: 0, g: 0, b: 0, alpha: 0 } })
.toFile("./resize-uploads/"+req.file.filename);
//blur image
await sharp("./uploads/"+req.file.filename)
.rotate(40, { background: { r: 0, g: 0, b: 0, alpha: 0 } })
.blur(4)
.toFile("./resize-uploads/"+req.file.filename);
index.html
<form action="/profile" enctype="multipart/form-data" method="post">
<div class="form-group">
<input type="file" class="form-control-file" name="profile" accept="/image">
<input type="text" class="form-control" placeholder="Enter Name" name="name">
<input type="submit" value="Get me the stats!" class="btn btn-default">
</div>
</form>
많은 필터를 추가하기 위해 sharp 패키지를 탐색하는 데 충분합니다. 모두 감사합니다.
Reference
이 문제에 관하여(Sharp를 사용하여 NodeJS에서 이미지 편집), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/deepakjaiswal/edit-image-in-nodejs-using-sharp-3fe7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)