Small-files: Difference between revisions
(Created page with "==How to compress images?== Useful references: * [https://kokorobot.ca/site/image_optimization.html Ways to optimize images for the web, by Rekka Bellum] * [https://github.com/lowtechmag/solar/wiki/Solar-Web-Design How to Build a Low-tech Website: Design Techniques and Process] ===Image resizing=== Decrease the file size of an images by saving them with specific settings: <code>quality</code>, <code>smoothing</code>, <code>progressive loading</code>, <code>no exif d...") |
No edit summary |
||
Line 39: | Line 39: | ||
* [https://smallfile.ca/ SMALL FILE MEDIA FESTIVAL] | * [https://smallfile.ca/ SMALL FILE MEDIA FESTIVAL] | ||
* [https://thephotographersgallery.org.uk/whats-on/open-call-small-file-photo-festival Open Call: Small File Photo Festival] | * [https://thephotographersgallery.org.uk/whats-on/open-call-small-file-photo-festival Open Call: Small File Photo Festival] | ||
* [http://en.wikipedia.org/wiki/Demoscene demoscene]: [https://www.pouet.net/faq.php pouet.net], [https://www.demoscene.info/ demoscene.info], [http://viznut.fi/en/ viznut], ... | * [http://en.wikipedia.org/wiki/Demoscene demoscene]: [https://www.pouet.net/faq.php pouet.net], [https://www.scene.org/ scene.org], [https://www.demoscene.info/ demoscene.info], [http://viznut.fi/en/ viznut], ... | ||
* [https://taper.badquar.to/9/about.html Taper #9: "each poem—the HTML on the page after the header—could be no more than a tiny 2KB (2048 bytes)"] | * [https://taper.badquar.to/9/about.html Taper #9: "each poem—the HTML on the page after the header—could be no more than a tiny 2KB (2048 bytes)"] | ||
* [[Jpegloop| Michael prototyping a Jpeg loop in Python using Imagemagick]] | * [[Jpegloop| Michael prototyping a Jpeg loop in Python using Imagemagick]] |
Revision as of 20:56, 15 January 2023
How to compress images?
Useful references:
- Ways to optimize images for the web, by Rekka Bellum
- How to Build a Low-tech Website: Design Techniques and Process
Image resizing
Decrease the file size of an images by saving them with specific settings: quality
, smoothing
, progressive loading
, no exif data
, color sub-sampling
. You can do this in Gimp, Imagemagick or Photoshop.
- Green Hacks: Optimising images for web - Rekka Bellum (using Gimp)
- Ways to optimize images for the web, by Rekka Bellum (using Imagemagicks's mogrify)
- Imagemagick's mogrify
Dithering
Keep your web pages light!
Check the size of a web page
Right-click on inspect
and click on network
.
Lazy loading
CSS sprites
Links
Small files as a feature
- SMALL FILE MEDIA FESTIVAL
- Open Call: Small File Photo Festival
- demoscene: pouet.net, scene.org, demoscene.info, viznut, ...
- Taper #9: "each poem—the HTML on the page after the header—could be no more than a tiny 2KB (2048 bytes)"
- Michael prototyping a Jpeg loop in Python using Imagemagick