TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
anand dubey
NA
1
2.2k
convert tiff to jpeg in windows 8 RT
Jun 28 2013 2:53 AM
I am trying to convert a tiff image into jpeg in windows 8 RT. I have a tiff image which contains multiple images. Now i want to convert them in separate jpeg format. I am working with a code but it is not working. it is not showing any exception but also i am not getting any thing. On debuging the code I am not getting any value in decoder variable.
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.List;
openPicker.SuggestedStartLocation = PickerLocationId.ComputerFolder;
openPicker.FileTypeFilter.Add(".tif");
StorageFile image = await openPicker.PickSingleFileAsync();
var stream = await image.OpenAsync(Windows.Storage.FileAccessMode.Read);
var decoder = await Windows.Graphics.Imaging.BitmapDecoder.CreateAsync(stream);
Reply
Answers (
2
)
Attach file option for textarea control in Windows store app
Access Checkbox inside list box in C# in Windows Phone