Skip to content

Instantly share code, notes, and snippets.

@cbpygit
Created June 3, 2024 17:23
Show Gist options
  • Save cbpygit/441a410798704673cf138b69960b1563 to your computer and use it in GitHub Desktop.
Save cbpygit/441a410798704673cf138b69960b1563 to your computer and use it in GitHub Desktop.
Split image into multiple tiles to display full screen images crisp on Google Slides:
# This is a work-around around Google Slides' limitation to 1600x1600 pixel images which make full-screen graphics look pixelated
# See this thread: https://support.google.com/docs/thread/9031600/how-can-i-stop-google-slides-applying-their-extreme-image-compression-and-resampling?hl=en
# requires ImageMagick
# Run on image of e.g. 3840x2160 size for 16:9 4K
convert YOUR-IMAGE-NAME.png -crop 3x2-0-0@ +repage +adjoin YOUR-IMAGE-NAME-tile-%d.png
# This create 2x3 = 6 tiles that can be pasted into Google Slides. They can be grouped and act as one single image which renders sharply.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment