我是WP7開發新手,我想知道如何將文字寫入圖像?在WP7中的圖像上寫文字
首先是否可以這樣做?
如GDI,如下圖所示,我們可以寫文字圖片:
Dim pth As New GraphicsPath()
pth.AddString(txtSample.Text, New FontFamily(DropFont.SelectedValue), 0, Integer.Parse(DropFontSize.SelectedValue), New Point(left, top), StringFormat.GenericTypographic)
但在WP7,我才知道,GDI不supported.So我怎樣才能做到這一點?
編輯:
我需要從pictures hub
選擇一個圖像或使用camera
拍照,並在圖像控件中顯示它,寫一些文字,並保存背部採用了不同的名稱。
任何建議是最受歡迎的。
您是否試圖用文本疊加圖像,或將文本寫入圖像並保存(即創建一個存儲到設備的新Jpeg等) – 2012-03-12 20:55:25
@ willmel-not overlaying我需要寫文本。 – coder 2012-03-12 20:56:03
http://stackoverflow.com/questions/7481436/drawstring-on-wp7 – 2012-03-12 20:57:11