When displaying inline images in org-mode it sort of acts like a single line. Like this it is impossible to scroll through a big image. Emacs will jump to the top of the image then just after it.
Really would like to get sliced image display working with org-mode, so that I can view bigger inline images without having to open them in a new window and play with zoom.
What I aim for is something shown in the latter part of this gif:

NOTE: this gif isn't showing org-mode, I know this. But this type of image display would be really-really nice in org-mode. Source of the gif: emacs-hnreader
This sliced image is an Emacs feature: https://www.gnu.org/software/emacs/manual/html_node/elisp/Showing-Images.html
There was also a question about this over on emacs SO, but never got any attention: https://emacs.stackexchange.com/questions/40550/org-mode-and-insert-sliced-image
This effect can be achieved by copying the
insert-sliced-imageloop intoorg-display-inline-imagesand tracking the resulting lists of overlays, instead of single overlays as is currently done. Putting the following in yourinit.elafter requiring org should do the trick. (inspiration from https://github.com/thanhvg/emacs-hnreader)