All Projects → imagemin → imagemin-gifsicle

imagemin / imagemin-gifsicle

Licence: MIT license
Imagemin plugin for Gifsicle

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to imagemin-gifsicle

alfred-imagemin
Alfred workflow - Minify images with Imagemin
Stars: ✭ 29 (-72.38%)
Mutual labels:  gif, imagemin
Gifify
😻 Convert any video file to an optimized animated GIF.
Stars: ✭ 5,792 (+5416.19%)
Mutual labels:  gif, gifsicle
Imagemin
[Unmaintained] Minify images seamlessly
Stars: ✭ 4,948 (+4612.38%)
Mutual labels:  gif, imagemin
Streamoji
Custom emoji rendering library for iOS apps with support for GIF & still images - plug-in extension for UITextView - performance, cache ✅ - Made with 💘 by @GetStream
Stars: ✭ 215 (+104.76%)
Mutual labels:  gif
Pi Timelapse
Time-lapse app for Raspberry Pi computers.
Stars: ✭ 220 (+109.52%)
Mutual labels:  gif
Precomp Cpp
Precomp, C++ version - further compress already compressed files
Stars: ✭ 250 (+138.1%)
Mutual labels:  gif
gephi twitter media downloader
A small script designed to take either a .csv of Tweet ids, or the export from Gephi's TwitterStreamingImporter Plugin and download related Tweet media.
Stars: ✭ 41 (-60.95%)
Mutual labels:  gif
Ffmpegandroid
android端基于FFmpeg实现音频剪切、拼接、转码、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图;音视频合成与分离,配音;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;歌词解析与显示
Stars: ✭ 2,858 (+2621.9%)
Mutual labels:  gif
wasm-codecs
WebAssembly codecs for mozjpeg, oxipng, gifsicle and webp.
Stars: ✭ 48 (-54.29%)
Mutual labels:  gifsicle
Handycontrol
Contains some simple and commonly used WPF controls
Stars: ✭ 3,349 (+3089.52%)
Mutual labels:  gif
Transferee
一个帮助您完成从缩略视图到原视图无缝过渡转变的神奇框架
Stars: ✭ 2,697 (+2468.57%)
Mutual labels:  gif
Gifu
High-performance animated GIF support for iOS in Swift
Stars: ✭ 2,703 (+2474.29%)
Mutual labels:  gif
Gifine
Quickly record and edit gifs and videos of your desktop
Stars: ✭ 225 (+114.29%)
Mutual labels:  gif
Sharex
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from.
Stars: ✭ 18,143 (+17179.05%)
Mutual labels:  gif
Imageprocessor
📷 A fluent wrapper around System.Drawing for the processing of image files.
Stars: ✭ 2,452 (+2235.24%)
Mutual labels:  gif
slip
Select and upload screenshots, gifs, and screencasts to imgur and gfycat with help of slop.
Stars: ✭ 25 (-76.19%)
Mutual labels:  gif
Gulp Image
Optimize PNG, JPEG, GIF, SVG images with gulp task.
Stars: ✭ 213 (+102.86%)
Mutual labels:  gif
Ccapture.js
A library to capture canvas-based animations at a fixed framerate
Stars: ✭ 2,836 (+2600.95%)
Mutual labels:  gif
Gif For Cli
opensource.googleblog.com/2018/06/tenor-gif-for-cli.html
Stars: ✭ 2,772 (+2540%)
Mutual labels:  gif
movtogif-cli
📺 Convert mov/mp4 to high-quality animated gifs
Stars: ✭ 58 (-44.76%)
Mutual labels:  gif

imagemin-gifsicle GitHub Actions Status

Imagemin plugin for Gifsicle

Install

$ npm install imagemin-gifsicle

Usage

import imagemin from 'imagemin';
import imageminGifsicle from 'imagemin-gifsicle';

(async () => {
	await imagemin(['images/*.gif'], {
		destination: 'build/images',
		plugins: [
			imageminGifsicle()
		]
	});

	console.log('Images optimized');
})();

API

imageminGifsicle(options?)(buffer)

Returns a Promise<Buffer> with the optimized image.

options

Type: object

interlaced

Type: boolean
Default: false

Interlace gif for progressive rendering.

optimizationLevel

Type: number
Default: 1

Select an optimization level between 1 and 3.

The optimization level determines how much optimization is done; higher levels take longer, but may have better results.

  1. Stores only the changed portion of each image.
  2. Also uses transparency to shrink the file further.
  3. Try several optimization methods (usually slower, sometimes better results)
colors

Type: number

Reduce the number of distinct colors in each output GIF to num or less. Num must be between 2 and 256.

buffer

Type: Buffer

Buffer to optimize.

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].