MPO 3D Photo Files
anyone know of freeware sdk in c# reading mpo & jps 3d photo files. need able read each image , display seperately. i've looked around web , have been unsuccessful in finding anytype of source code or sdk.
thanks,
keith
keith
hi keith,
welcome msdn forum.
the .mpo extension stands multiple picture object.
a .mpo file 2 jpg files, 1 after another, separated few padding zeros. technically, if "open" 1 of these files in image editing application, see "first" image, because mpo file looks identical regular jpg file @ beginning.
the fujifilm .mpo 3d photo format introduction
http://dmitrybrant.com/2011/02/08/the-fujifilm-mpo-3d-photo-format
the webbrowser can used display mpo photo such http://dmitrybrant.com/images/dscf0005.mpo
private void form1_load(object sender, eventargs e)
{
webbrowser1.navigate("http://dmitrybrant.com/images/dscf0005.mpo");
//webbrowser1.navigate(@"c:\dscf0005.mpo");
}
martin xie [msft]
msdn community support | feedback us
get or request code sample microsoft
please remember mark replies answers if , unmark them if provide no help.
Visual Studio Languages , .NET Framework > Visual C#
Comments
Post a Comment