Image color coding conversion: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

22 April 2024

  • curprev 06:2206:22, 22 April 2024223.233.83.241 talk 734 bytes +734 Created page with "- To go through the path recursively, find all jpeg and png files and convert them to webp (leaving the original): cd </folder/to/check/> find . -name '*.jpg' -type f -exec bash -c 'cwebp -q 75 "$0" -o "${0%.jpg}.webp"' {} \; find . -name '*.JPG' -type f -exec bash -c 'cwebp -q 75 "$0" -o "${0%.jpg}.webp"' {} \; find . -name '*.png' -type f -exec bash -c 'cwebp -q 75 "$0" -o "${0%.jpg}.webp"' {} \; - if it gives an error about the unsupported colour conversion, c..."