Windows error 0x88982F41, -2003292351

Detailed Error Information

WINCODEC_ERR_PROPERTYNOTSUPPORTED[1]

MessageThe bitmap codec does not support the bitmap property.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)true
FacilityCode2200 (0x898)
NameFACILITY_WINCODEC_DWRITE_DWM[1]
Error Code12097 (0x2f41)

Questions

1vote
1answer

TYPE_E_TYPEMISMATCH changing Metadata Windows Universal App

I want to overwrite the System.Photo.DateTaken value. This is my method: private async void EditMetadata(uint rateNumber, DateTime newDate) { var memStream = new Windows.Storage.Streams.InMemoryRandomAccessStream(); var encoder = await Windows.Graphics.Imaging.BitmapEncoder.CreateForTranscodingAsync(memStream, _decoder); var propertySet = new Windows.Graphics.Imaging.BitmapPropertySet(); var ratingValue = new Windows.Graphics.Imaging.BitmapTypedValue(rateNumber, Windows.Foundation.PropertyType.UInt32); try { var dateValue = new Windows.Graphics.Imaging.BitmapTypedValue(newDate, Windows.Foundation.PropertyType.DateTime); } [...] read more
metadata
windows-8.1
windows-phone-8.1
type-mismatch
win-universal-app
0votes
1answer

resize image before upload via background transfer in winjs

I would like to resize an image picked from the gallery of the phone before uploading it via background transfer so far I have:- filePicker.pickSingleFileAsync().then(function (file) { uploadSingleFileAsync(uri, file); }).done(null, displayException); function uploadSingleFileAsync(uri, file) { if (!file) { displayError("Error: No file selected."); return; } return file.getBasicPropertiesAsync().then(function (properties) { if (properties.size [...] read more
javascript
windows-phone-8.1
winjs
win-universal-app
background-transfer

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0