var fDesc=new Array(); fDesc[0] = "The Windows Imaging Component supports discovery of new and proprietary (e.g., Raw) image formats. Any application that uses WIC can take advantage of new image formats as soon as their CODECs (encoder/decoders) are installed on the computer. WIC includes updated CODECs for JPEG, TIFF, GIF, PNG, & BMP that are more secure than previously released CODECs for these formats, and also supports a new high-performance image format called Windows Media Photo. Additionally, WIC provides metadata readers and writers for common image metadata formats, and enables applications to preserve their own metadata inside image files so they don't need to create "sidecar files".

Windows Imaging Component provides metadata readers and writers for common image metadata formats and any application to preserve their own metadata inside image files. Updated codecs for JPEG, TIFF, GIF, PNG, & BMP are in this pack that are more secure than previously released codecs. It also supports a high performance format called Windows Media Photo."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }