문제

I want to make a diagonal/ triangle shape image from bitmap source without using any polygon control, how to do this in windows phone.enter image description here

도움이 되었습니까?

해결책

Hm what do you mean without using any polygon controls?

You can create a WriteableBitmap, and draw on it with any tools you prefer. If you want to avoid all additional tools you can call set/get pixel methods and for loops.

When you are happy with your WriteableBitmap you can create a BitmapImageSource and then call .AsBitmap() on your WriteableBitmap. With that complete you can then use the whole imaging SDK chain.

Edit: You can find the .AsBitmap method in Nokia.InteropServices.WindowsRuntime namespace.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top