On Tuesday, November 3, 2015 at 12:55:09 PM UTC+1, Arshpreet Singh wrote:
> Hello Everyone,
> 
> I am looking for Browser-based PNG file viewer written in
> Python.(Flask framework preferably)
> 
> Following project(Flask-Based) provides many things(File manager as
> well as file viewer)  but it does not support PNG files.
> 
> https://github.com/vmi356/filemanager
> 
> Any idea if I have to write my own browser based PNG viewer from
> scratch(Using PIL or other required library)
> 
> On the other side if I have to write only Desktop-based only two lines
> are enough to do many things:
> 
> Like,
> 
> from PIL import Image
> f = Image.open("file.png").show()
> 
> 
> But I am not getting right sense that how to make possible using Python+Flask.
> 
> Hope I am able to tell my problem?

Well, if you only want to open the PNG file in the webbrowser
(in contrast of serving them over the internet), you can do it
in two lines too:

import webbrowser
webbrowser.open('file.png')

But this is probably not what you want.

M.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to