View a multipage TIFF in Javascript
问题 I currently have multi-paged TIFF images and I need to browse them page by page via Javascript. I have no clue about that. Can you help me? I found some other questions but none seems related to Javascript. Thank you. 回答1: I very much doubt JavaScript can help you here: Most browsers can't deal with TIFF images in the first place, let alone multi-page ones. You will need the help of server-side scripting - like PHP - in combination with a tool like ImageMagick. I've never tried this myself,