Bitmap class not found in UWP windows 10

后端 未结 2 1138
予麋鹿
予麋鹿 2020-12-21 06:25

I am developing an image processing app for windows 10. I have searched online related to the image processing. I have found many resources that use Bitmap class for manipul

相关标签:
2条回答
  • 2020-12-21 07:22

    I was developing an app not so long ago that needed the features of the Bitmap class. I sadly realized as you just did that it's not available under WinRT/UWP. All we have is Bitmap, WriteableBitmap as Edgaras suggested, and - thank the heavens- WriteableBitmapEx. It's a very good library providing a lot of image processing functions. It helped me a lot and solved all of my problems. Hope it will help you too!

    0 讨论(0)
  • 2020-12-21 07:28

    Try to have a look on this WriteableBitmap class: https://msdn.microsoft.com/en-us/library/br243259

    0 讨论(0)
提交回复
热议问题