Convert TIFF Images to Javascript

I am looking for a way to convert a Tiff image to png, so modern browsers can display it. I looked at Tiffus , but it does not look like it is already developing. I also tried writing a conversion program in C # and sending it via JSIL , but that didn't work either. I also tried using Tiff-js , but the sample project does not work. Does anyone know how to do this? I know that I can do this on the C # / server side, but we want to try this on the client side.

+4
source share
1 answer

I put LibTIFF in Javascript using Emscripten ( https://github.com/seikichi/tiff.js , demo: http://seikichi.imtqy.com/tiff.js/basic.html )

+11
source

Source: https://habr.com/ru/post/1494570/


All Articles