Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

nodejs sharp resize to max width or height

const img = fs.readFileSync('./tmp/image.jpg')

// Will resize to max 680px height or max 650px width
await sharp(img).resize({
  width: 650,
  height: 680,
  fit: 'inside',
}).toFormat('jpg').toFile('./tmp/final.jpg')
 
PREVIOUS NEXT
Tagged: #nodejs #sharp #resize #max #width #height
ADD COMMENT
Topic
Name
6+7 =