All Projects → sindresorhus → Gulp Webp

sindresorhus / Gulp Webp

Licence: mit
Convert images to WebP

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Webp

Imaginary
Fast, simple, scalable, Docker-ready HTTP microservice for high-level image processing
Stars: ✭ 4,107 (+2096.26%)
Mutual labels:  webp, image-processing
Govips
A lightning fast image processing and resizing library for Go
Stars: ✭ 442 (+136.36%)
Mutual labels:  webp, image-processing
Sharp
High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library.
Stars: ✭ 21,131 (+11200%)
Mutual labels:  webp, image-processing
Libvips
A fast image processing library with low memory needs.
Stars: ✭ 6,094 (+3158.82%)
Mutual labels:  webp, image-processing
Mort
Storage and image processing server written in Go
Stars: ✭ 420 (+124.6%)
Mutual labels:  webp, image-processing
Flyimg
Dockerized PHP7 application runs as a Microservice to resize and crop images on the fly. Get optimised images with MozJPEG, WebP or PNG using ImageMagick. Includes face detection, cropping, face blurring, image rotation and many other options. Abstract storage based on FlySystem in order to store images on any provider (local, AWS S3...).
Stars: ✭ 762 (+307.49%)
Mutual labels:  webp, image-processing
Cctag
Detection of CCTag markers made up of concentric circles.
Stars: ✭ 172 (-8.02%)
Mutual labels:  image-processing
Imgsmlr
Similar images search for PostgreSQL
Stars: ✭ 181 (-3.21%)
Mutual labels:  image-processing
Nuxt Imagemin
Nuxt module to minify your images. Works with: png, jpeg, gif, and svg
Stars: ✭ 170 (-9.09%)
Mutual labels:  image-processing
Filestack Js
Official Javascript SDK for the Filestack API and content ingestion system.
Stars: ✭ 169 (-9.63%)
Mutual labels:  image-processing
Android Cutout
Android image background removing library
Stars: ✭ 183 (-2.14%)
Mutual labels:  image-processing
Opencv Python Tutorial
📖 OpenCV-Python image processing tutorial for beginners
Stars: ✭ 2,425 (+1196.79%)
Mutual labels:  image-processing
Gulp Compass
Compass plugin for gulp
Stars: ✭ 177 (-5.35%)
Mutual labels:  gulp-plugin
Gulp Traceur
Traceur is a JavaScript.next to JavaScript-of-today compiler
Stars: ✭ 172 (-8.02%)
Mutual labels:  gulp-plugin
Ossim
Core OSSIM (Open Source Software Image Map) package including C++ code for OSSIM library, command-line applications, tests, and build system
Stars: ✭ 182 (-2.67%)
Mutual labels:  image-processing
Webp Hero
browser polyfill for the webp image format
Stars: ✭ 171 (-8.56%)
Mutual labels:  webp
Ybimagebrowser
iOS image browser / iOS 图片浏览器 (支持视频)
Stars: ✭ 2,230 (+1092.51%)
Mutual labels:  image-processing
Imagepipeline
Folio Image Pipeline is an image loading and caching framework for iOS clients
Stars: ✭ 170 (-9.09%)
Mutual labels:  webp
Tachyon
Faster than light image resizing service that runs on AWS. Super simple to set up, highly available and very performant.
Stars: ✭ 177 (-5.35%)
Mutual labels:  image-processing
Dlib
Allocators, I/O streams, math, geometry, image and audio processing for D
Stars: ✭ 182 (-2.67%)
Mutual labels:  image-processing

gulp-webp

Convert images to WebP

Supports PNG, JPEG, TIFF, WebP.

Install

$ npm install --save-dev gulp-webp

Usage

const gulp = require('gulp');
const webp = require('gulp-webp');

exports.default = () => (
	gulp.src('src/image.jpg')
		.pipe(webp())
		.pipe(gulp.dest('dist'))
);

API

webp(options?)

See the imagemin-webp options.

Note that unsupported files are ignored.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].