Open viktorsmari opened 6 years ago
One way to make images smaller in size is:
jpegoptim --size=400k *.jpg
Another is to also make them use less pixels. Many images are 3456x2304, or more and we can convert them to 1080x or more.
convert puerta.jpg -quality 50% -resize 1024x puerta.jpg
Resize multiple images to 1600
find . -iname \*.jpg -exec convert -verbose -quality 80 -resize 1600\> "{}" "{}" \;
UPDATE: @Katearmstrong4 and I discussed that we don't need ALL the images so we should be able to resize this considerably.
Remove the unwanted images with the
git rm img/myimage.jpg
which should make the repo smaller in sizeCloning the repo takes a long time, because the size of it is 3.5 GB
Here is a part list of huge images we might consider reducing the size of.
The list is generated with the command:
...