Simple javascript util for Akamai image converter
https://tech.akamai.com/image_converter/
npm i akamai-image-converter
// OR
yarn add akamai-image-converter
import imageConverter from 'akamai-image-converter'
// call convert methods will return optimized url
imageConverter.convert(TEST_IMAGE, format, quality, width, height)
// let say we have url: //tech.akamai.com/image-manager/img/mountain.jpeg
// this method will return url :
// //tech.akamai.com/image-manager/img/mountain.jpeg?resize=${width}px:${height}px&output-quality=${quality}&output-format=${format}
You can define your combination by your self
import imageConverter from 'akamai-image-converter'
// you can call these available function
let result = imageConverter._withOutputFormat(TEST_IMAGE, format)
let result = imageConverter._withQuality(TEST_IMAGE, quality)
let result = imageConverter._withDimension(TEST_IMAGE, width, height)
Copyright ยฉ 2018 by Irfan Maulana