我有一個SVG文件是這樣的:一飲而盡imagemin打破SVG面具
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient gradientUnits="objectBoundingBox" id="gradient" x2="0" y2="1">
<stop stop-offset="0" stop-color="transparent" />
<stop stop-color="rgba(255, 255, 255, 0.25)" offset="1"/>
</linearGradient>
<mask id="mask" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox" x="0" y="0" width="100%" height="100%">
<rect width="1" height="1" fill="url(#gradient)"/>
</mask>
</defs>
</svg>
我使用一飲而盡,imagemin壓縮我所有的圖像,包括SVGs。具體任務如下所示:
gulp.task('images', function() {
return gulp.src('/src/img/**/*.*')
.pipe(imagemin().on('error', gutil.log))
.pipe(gulp.dest('/dist/img'));
});
適用於我的大多數圖像。然而,對於SVG文件以上時,輸出爲:
<svg xmlns="http://www.w3.org/2000/svg"><defs><linearGradient gradientUnits="objectBoundingBox" id="a" x2="0" y2="1"><stop stop-color="transparent"/><stop stop-color="rgba(255, 255, 255, 0.25)" offset="1"/></linearGradient></defs></svg>
通知的mask
已被除去(這是必不可少的)和ID改變。有沒有辦法阻止這種情況的發生,甚至是通過這個插件禁用SVG壓縮?我看過文檔,看不到方法。
@RobertLongson不,不要認爲這有什麼用處恐怕 – Coop
那麼這樣呢? http://stackoverflow.com/questions/38023039/using-gulp-to-create-an-svg-sprite-without-compression/38036872#38036872 –