WIC CreateDecoderFromStream returning 0x88982F50 post server migration
I have a thumbnail generation routine that I created using WIC for a .NET app. It has been working fine for the past year, but we just migrated to a new server. Old Server was W2k8 R2 Enterprise SP1 New Server is W2k8 Standard SP1 Here's the code that is failing Public Sub New(ByVal PictureData As Byte()) Me.WICFactory = New WICImagingFactory() Dim InputStream As IWICStream = WICFactory.CreateStream() InputStream.InitializeFromMemory(PictureData, PictureData.Length) InputDecoder = WICFactory.CreateDecoderFromStream(InputStream, Nothing, WICDecodeOptions.WICDecodeMetadataCacheOnDemand) '^=====