2011-06-13 79 views
-2

我想將「Hello dalvir」呈現爲圖像格式,以便hello dalvir以圖像中的紅色顯示。我如何在C#中做到這一點。如何將html呈現爲圖像格式

+2

可能重複[如何呈現HTML圖像格式?](http://stackoverflow.com/questions/6302293/how-to-render-html-圖像格式) – jonsca 2011-06-13 10:23:28

回答

1

這裏是代碼...

Font MyFont = new Font(FontFamily, Font,FontStyle.Bold, GraphicsUnit.Point); 
MyGraphics = Graphics.FromImage(bmpImage); 
MyGraphics.Clear(Color.FromName("Red")); 
MyGraphics.TextRenderingHint = TextRenderingHint.AntiAlias; 
MyGraphics.DrawString("Hello dalvir", MyFont, 
        new SolidBrush(Color.FromName("Red")), 0, 0); 
MyGraphics.Flush(); 
+0

我想要直接使用html,像「hello davir」將在HTML標籤中具有應用紅色的樣式。 我這種情況下我該怎麼辦? – 2011-06-13 11:16:56

+0

你必須顯示你的代碼。 – 2011-06-13 11:22:43