Here if anyone has questions on the implementation or such.
Bringing Wide Color to Instagram
11–20 of 121 posts
Re: Bringing Wide Color to Instagram
#12(Indeed, I can see a faint Instagram logo on my iPhone7, but not my older rMBP.)
Re: Bringing Wide Color to Instagram
#13Note that the red test image is only valid for iOS devices, since in Android you can see the Instagram logo even though it doesn't support wide color
Re: Bringing Wide Color to Instagram
#14Re: Bringing Wide Color to Instagram
#15Here if anyone has questions on the implementation or such.
Re: Bringing Wide Color to Instagram
#16Here if anyone has questions on the implementation or such.
Not necessarily on topic - but given your code samples are written in Objective-C, how much of your codebase is still in Objective-C and what's your opinion on porting it over to Swift?
Re: Bringing Wide Color to Instagram
#17Here if anyone has questions on the implementation or such.
Not necessarily on topic - but given your code samples are written in Objective-C, how much of your codebase is still in Objective-C and what's your opinion on porting it over to Swift?
Re: Bringing Wide Color to Instagram
#18I did not know that Instagram was using OpenGL for processing. That's pretty neat, given the capabilities of OpenGL. I'm looking forward to seeing more filters with more lifelike Polaroid effects. But before that, could they not convert images to horribly encoded JPEGs? I get it, bandwidth and costs, but it's an image service that still drowns in its own... when it gets an image with strong reds and blues.
We started using OpenGL in 2011. Our CPU-based image filters used to take 4+ seconds with pixel-by-pixel manipulation, and now can render 30+ times per second. If you have some sample images where the current image pipeline is going wrong let me know and we can look into improving.
Re: Bringing Wide Color to Instagram
#19Note that the red test image is only valid for iOS devices, since in Android you can see the Instagram logo even though it doesn't support wide color
Re: Bringing Wide Color to Instagram
#20Note that the red test image is only valid for iOS devices, since in Android you can see the Instagram logo even though it doesn't support wide color
Edited to add: and some other ones are doing something even less fancy, which is just to ignore the color profile entirely and just assume sRGB and display it incorrectly, taking for example what would have been the maximum red point for Display-P3 and making it the maximum red point in sRGB.