我有一个应用程序和我要添加的功能之一是,在其上发送带有一些文本的图片。可以在Windows手机中对此进行编码吗?
答案 0 :(得分:5)
简单的方法就是使用WriteableBitmap上的文本呈现TextBlock
private void RenderString(WriteableBitmap bitmap, string stringToRender)
{
TextBlock textBlock = new TextBlock();
textBlock.Text = stringToRender;
// set font, size, etc. on textBlock
bitmap.Render(textBlock, null);
bitmap.Invalidate();
}