可能重复:
在 WP7 中的图像上写入文本
我有一个应用程序,我想添加的功能之一是发送带有一些文本的图片。是否可以在 windows phone 中编码?
可能重复:
在 WP7 中的图像上写入文本
我有一个应用程序,我想添加的功能之一是发送带有一些文本的图片。是否可以在 windows phone 中编码?
简单的方法就是用 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();
}