Show HN: JavaScript Instagram-like Filters
11–20 of 29 posts
Re: Show HN: JavaScript Instagram-like Filters
#12Re: Show HN: JavaScript Instagram-like Filters
#13Re: Show HN: JavaScript Instagram-like Filters
#14Re: Show HN: JavaScript Instagram-like Filters
#15Re: Show HN: JavaScript Instagram-like Filters
#16Awesome work! Is there a way that these filtered images could then be saved server side to be used later without the js?
Re: Show HN: JavaScript Instagram-like Filters
#17this is very good! is it possible to save the filtered images locally?
It basically uses the toDataURL() method to get the image data of the canvas.
Re: Show HN: JavaScript Instagram-like Filters
#18You should rewrite a "pseudo-non-blocking" implementation of these filters. Right now they block the UI thread for too long, which limits how useful these can be. Web workers in one option, although it's not widely supported. The better option is to use setTimout or setInterval to break of the processing work into chunks, which is supported in all browsers. For example, run the loop n iterations then run the next n a…
Re: Show HN: JavaScript Instagram-like Filters
#19Awesome work! Is there a way that these filtered images could then be saved server side to be used later without the js?
Re: Show HN: JavaScript Instagram-like Filters
#20You should rewrite a "pseudo-non-blocking" implementation of these filters. Right now they block the UI thread for too long, which limits how useful these can be. Web workers in one option, although it's not widely supported. The better option is to use setTimout or setInterval to break of the processing work into chunks, which is supported in all browsers. For example, run the loop n iterations then run the next n a…