ionic serve --port 8081 --livereload-port 35730 --dev-logger-port 53704
You can compress image by using this method. function compressImage ( imageUrl ) { let image = new Image (); image . onload = () => { let canvas = document . createElement ( ' canvas ' ); let maxSize = 1504 ; // Define Size of Image let width = image . width ; let height = image . height ; if (width > height && width > maxSize) { height *= maxSize / width; width = maxS...
Comments
Post a Comment