在 deploy 程式碼到 production server 前,透過 gulp-imagemin 工具將全部圖片優化,上傳到 Amazon S3,Windows 底下正常運作,到了 Ubuntu 環境之下噴出底下錯誤訊息
Error: Lossy operations are not currently supported 後來在 grunt-contrib-imagemin@issues/180 有提人出此問題,解決方案就是升級 OptiPNG,因為 Ubuntu 的 apt 套件只有支援到 0.6.4 版本,請到 OptiPNG 官網下載最新 tar 檔,編譯重新安裝
$ wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz $ tar -zxvf optipng-0.7.5.tar.gz $ cd optipng-0.7.5.tar $ ./configure && make && make install
附上 gulp-imagemin 設定方式
gulp.task('images', function() { return gulp.src('app/images/**/*.{jpg,jpeg,png,gif}') .pipe(imagemin({ progressive: true, interlaced: true })) .pipe(gulp.dest('dist/images')) .pipe(size()); });
See also
- Debian/Ubuntu 的 update-rc.d 使用教學
- OpenSSH 安全性漏洞 CVE-2016-0777 and CVE-2016-0778
- Debian 7.x Install PHP 5.5 或 5.6 版本
- 解決在 Ubuntu 系統下 Chrome 瀏覽器亂碼
- 自動修復 JavaScript Linting-errors 好工具 Fixmyjs
- Automating your workflow with Gulp.js
- 在 Ubuntu 建置 OpenWrt 編譯環境
- 用 Google PageSpeed Insights 計算 Desktop 或 Mobile 網站分數
- Gulp.js 工具包
- 修復 Ubuntu 開機 boot loader