Saving inkpresenter as png
Is it possible 开发者_如何学JAVAto save an inkpresenter's content as a .png image? If not is there an alternative to inkpresenter that can be drawn on, and saved?
You should be able to convert inkpresenter to png in two steps:
- Render inkpresenter into WriteableBitmap (see WriteableBitmap.Render Method)
- Convert WriteableBitmap to png using ImageTools
精彩评论