Prototypology/Transcodology-1: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=How to compress images?=
=How to compress images?=
==The fancy and hard way==
By using [https://imagemagick.org/script/convert.php Convert] (part of ImageMagick]
<pre>
convert input.jpg -resize 100x100 output.jpg
</pre>
* "-resize" is the option for the new size
==The easy way==
Using [https://www.gimp.org/ gimp]
==Further links==
[[Small-files|Old wiki page]]
[https://www.simplethread.com/why-your-website-should-not-use-dithered-images/ | interesting overview]

Latest revision as of 09:55, 26 November 2024

How to compress images?

The fancy and hard way

By using Convert (part of ImageMagick]

convert input.jpg -resize 100x100 output.jpg
  • "-resize" is the option for the new size

The easy way

Using gimp

Further links

Old wiki page | interesting overview