Questions tagged [gifsicle]

16 questions
22
votes
2 answers

How to compress the image using gifsicle tool or any other tool on ubuntu

I have some images in .GIF format which i want to compress. But i am getting the output either same or hardly 2-5% compression.I need higher compression ratio so that the web pages can be loaded fastly. Currently i am using the gifsicle tool but…
anand
  • 1,711
  • 2
  • 24
  • 59
7
votes
2 answers

Creating an animated gif with PIL that does not loop

I've been able to create animated gifs that loop infinitely using PIL without an issue, usually ending up with something like final_image.save('/path/to/images/some.gif, save_all=True, append_images=frames_images, duration=frame_speeds, …
user1026361
  • 3,627
  • 3
  • 22
  • 20
4
votes
2 answers

How to place a GIF on another GIF with ImageMagick, where both GIFs are of different sizes

I have two GIFs of different sizes. I want to be able to place one animated GIF onto a static background GIF at a specific location and at the same time add text to the result. I am new to ImageMagick world, please help. I am trying to achieve the…
4
votes
2 answers

npm install gifsicle behind corporate proxy failed or stuck at windows system

windows 7, npm@3.10.3, node@v6.7.0 npm and git are set up for using the corporate proxy. It took me a while to figure out how git and npm can use the corporate proxy, luckily it was successful done. npm config file (.npmrc) looks…
MattOpen
  • 815
  • 11
  • 24
2
votes
0 answers

error /usr/src/app/node_modules/gifsicle: Command failed. Exit code: 1 Command: node lib/install.js

error /usr/src/app/node_modules/gifsicle: Command failed. Exit code: 1 Command: node lib/install.js Arguments: Directory: /usr/src/app/node_modules/gifsicle Output: ⚠ connect ETIMEDOUT 49.44.79.236:443 ⚠ gifsicle pre-build test failed ℹ…
2
votes
0 answers

node_modules\gifsicle: Command failed

node_modules\gifsicle: Command failed. Exit code: 1 Command: node lib/install.js Arguments: Directory: D:\Project\PFS\pfs-portal\node_modules\gifsicle Output: ‼ connect ETIMEDOUT 49.44.79.236:443 ‼ gifsicle pre-build test failed i compiling from…
2
votes
2 answers

How to Install gifsicle, jpegtran, and optipng in AWS Ec2

I am Using a Extension to Optimize Images for Magento . Extension Need to Install gifsicle, jpegtran, and optipng to my Server But i don't know how i will Install & get exact path where installed . Anyone help me to Do this
user2255224
  • 79
  • 1
  • 7
1
vote
2 answers

How to use gifsicle in AWS lambda

Is there a way to use gifsicle in AWS lambda? I know there is a package called pygifsicle, but it seems it requires the gifsicle version of AWS Linux 2? I don't see a binary built for RedHat version of gifsicle So my questions are, Do I need to…
Jimson James
  • 2,937
  • 6
  • 43
  • 78
1
vote
1 answer

gifsicle binary not found while starting reactjs app

We use gifsicle version 5.1.0 in package.json, but the application start throws the following error. It is expecting a binary gifsicle under node_modules/gifsicle/vendor folder but trying to start the application with "yarn dev" is not working. Any…
Rpj
  • 5,348
  • 16
  • 62
  • 122
1
vote
1 answer

Appveyor deployment hangs on node gifsicle install

I'm trying to deploy a website using appveyor. I haven't had a problem until now. It seems that the console hangs at the point where it tries to install gifsicle. Here's the console output: What could be causing this? From the searching around I've…
toshiomagic
  • 1,335
  • 1
  • 12
  • 39
1
vote
2 answers

Resizing all files in a directory using Gifsicle

I am trying to resize all files in a directory with Gifsicle in MacOs. I am able to resize single file. But how to resize all files in a directory? gifsicle original.gif --resize 600x600 > _resized.gif
birdcage
  • 2,638
  • 4
  • 35
  • 58
0
votes
1 answer

How to install gifsicle in aws lambda using docker image

this is my dockerfile: FROM public.ecr.aws/lambda/python:3.8-arm64 COPY requirements.txt ./ RUN yum update -y && \ yum install -y gifsicle && \ pip install -r requirements.txt COPY . . CMD ["app.handler"] I'm getting the following…
Osama Bin Saleem
  • 779
  • 1
  • 12
  • 24
0
votes
1 answer

FileNotFoundError: [Errno 2] No such file or directory: 'gifsicle': 'gifsicle' in Google Colab

I'm trying to optimize a gif using pygifsicle's optimize function, working in the Colab environment. I've used !pip install pygifscile which successfully installs pygifsicle-1.0.1. However whether I use import pygifsicle or from pygifsicle import…
rmd_po
  • 381
  • 1
  • 4
  • 12
0
votes
1 answer

Bash: Failed retrieval while using pipeline substitution for gifsicle

I'm currently trying to write a program that uses wget to grab 3 files from the internet and merge them into a gif. Because I'm trying to avoid having temporary files I'm attempting to use pipeline substitution to solve this, however whenever I run…
Halmesrus
  • 11
  • 2
0
votes
1 answer

Magick vs. gifsicle - why such a difference when combining gif's?

I combine 3 gifs of about 3M each into a bigger gif. So far I have used magick and convert to do the job but they ended up consuming more than 6G of RAM and to be killed (...). convert pic1.gif pic2.gif pic3.gif final.gif Googling around I found…
Xavier Prudent
  • 1,570
  • 3
  • 25
  • 54
1
2