<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2F2D_Graphics%2FText_Rendering</id>
		<title>Csharp/C Sharp/2D Graphics/Text Rendering - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2F2D_Graphics%2FText_Rendering"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/2D_Graphics/Text_Rendering&amp;action=history"/>
		<updated>2026-04-29T16:41:39Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/2D_Graphics/Text_Rendering&amp;diff=865&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/2D_Graphics/Text_Rendering&amp;diff=865&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:19Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/2D_Graphics/Text_Rendering&amp;diff=866&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/2D_Graphics/Text_Rendering&amp;diff=866&amp;oldid=prev"/>
				<updated>2010-05-26T11:42:04Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Draw string with hatch brush==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Drawing.Drawing2D;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
public class Form1 : Form {&lt;br /&gt;
    protected override void OnPaint(PaintEventArgs e) {&lt;br /&gt;
    Graphics g = e.Graphics;&lt;br /&gt;
    g.FillRectangle(Brushes.White, this.ClientRectangle);&lt;br /&gt;
    Font f = new Font(&amp;quot;Times New Roman&amp;quot;, 48, FontStyle.Bold);&lt;br /&gt;
    HatchBrush hb = new HatchBrush(HatchStyle.Cross,Color.White, Color.Black);&lt;br /&gt;
    g.DrawString(&amp;quot;Crazy Crosshatch&amp;quot;, f, hb, 0, 0);&lt;br /&gt;
    f.Dispose();&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        Application.Run(new Form1());&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DrawString with solid brush and rectangle==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
   &lt;br /&gt;
class HuckleberryFinnHalfHeight: Form&lt;br /&gt;
{&lt;br /&gt;
     public static void Main()&lt;br /&gt;
     {&lt;br /&gt;
          Application.Run(new HuckleberryFinnHalfHeight());&lt;br /&gt;
     }&lt;br /&gt;
     public HuckleberryFinnHalfHeight()&lt;br /&gt;
     {&lt;br /&gt;
          ResizeRedraw = true;&lt;br /&gt;
     }&lt;br /&gt;
     protected override void OnPaint(PaintEventArgs pea)&lt;br /&gt;
     {&lt;br /&gt;
          Graphics  grfx = pea.Graphics;&lt;br /&gt;
          int       cx   = ClientSize.Width;&lt;br /&gt;
          int       cy   = ClientSize.Height;&lt;br /&gt;
          Pen       pen  = new Pen(ForeColor);&lt;br /&gt;
          Rectangle rect = new Rectangle(0, 0, cx / 2, cy / 2);&lt;br /&gt;
   &lt;br /&gt;
          grfx.DrawString(&amp;quot;some&amp;quot;, Font, new SolidBrush(ForeColor), rect);&lt;br /&gt;
   &lt;br /&gt;
          grfx.DrawLine(pen, 0,      cy / 2, cx / 2, cy / 2);&lt;br /&gt;
          grfx.DrawLine(pen, cx / 2, 0,      cx / 2, cy / 2);&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DrawString with solid brush, string format==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
   &lt;br /&gt;
class BoldAndItalicTighter: Form&lt;br /&gt;
{&lt;br /&gt;
     public static void Main()&lt;br /&gt;
     {&lt;br /&gt;
          Application.Run(new BoldAndItalicTighter());&lt;br /&gt;
     }&lt;br /&gt;
     public BoldAndItalicTighter()&lt;br /&gt;
     {&lt;br /&gt;
          Text = &amp;quot;Bold and Italic (Tighter)&amp;quot;;&lt;br /&gt;
          Font = new Font(&amp;quot;Times New Roman&amp;quot;, 24);&lt;br /&gt;
          ResizeRedraw = true; &lt;br /&gt;
     }&lt;br /&gt;
     protected override void OnPaint(PaintEventArgs pea)&lt;br /&gt;
     {&lt;br /&gt;
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);&lt;br /&gt;
     }     &lt;br /&gt;
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)&lt;br /&gt;
     {&lt;br /&gt;
          string str        = &amp;quot;text.&amp;quot;;&lt;br /&gt;
          Brush        brush       = new SolidBrush(clr);&lt;br /&gt;
          Font         fontRegular = Font;&lt;br /&gt;
          Font         fontBold    = new Font(fontRegular, FontStyle.Bold);&lt;br /&gt;
          Font         fontItalic  = new Font(fontRegular, FontStyle.Italic);&lt;br /&gt;
          PointF       ptf         = new PointF(0, 0);&lt;br /&gt;
          StringFormat strfmt      = StringFormat.GenericTypographic;&lt;br /&gt;
          strfmt.FormatFlags      |= StringFormatFlags.MeasureTrailingSpaces;&lt;br /&gt;
   &lt;br /&gt;
          grfx.DrawString(str, fontRegular, brush, ptf, strfmt);&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hotkey Prefix==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
   &lt;br /&gt;
class UnderlinedText: Form&lt;br /&gt;
{&lt;br /&gt;
     public static void Main()&lt;br /&gt;
     {&lt;br /&gt;
          Application.Run(new UnderlinedText());&lt;br /&gt;
     }&lt;br /&gt;
     public UnderlinedText()&lt;br /&gt;
     {&lt;br /&gt;
          Text = &amp;quot;Underlined Text Using HotkeyPrefix&amp;quot;;&lt;br /&gt;
          Font = new Font(&amp;quot;Times New Roman&amp;quot;, 14);&lt;br /&gt;
          ResizeRedraw = true; &lt;br /&gt;
     }&lt;br /&gt;
     protected override void OnPaint(PaintEventArgs pea)&lt;br /&gt;
     {&lt;br /&gt;
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);&lt;br /&gt;
     }     &lt;br /&gt;
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)&lt;br /&gt;
     {&lt;br /&gt;
          string       str    = &amp;quot;This is some &amp;amp;u&amp;amp;n&amp;amp;d&amp;amp;e&amp;amp;r&amp;amp;l&amp;amp;i&amp;amp;n&amp;amp;e&amp;amp;d text!&amp;quot;;&lt;br /&gt;
          StringFormat strfmt = new StringFormat();&lt;br /&gt;
   &lt;br /&gt;
          strfmt.HotkeyPrefix = HotkeyPrefix.Show;&lt;br /&gt;
   &lt;br /&gt;
          grfx.DrawString(str, Font, new SolidBrush(clr), 0, 0, strfmt);&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TextRenderingHint: Anti-Aliased Text==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
   &lt;br /&gt;
class AntiAliasedText: Form&lt;br /&gt;
{&lt;br /&gt;
     public static void Main()&lt;br /&gt;
     {&lt;br /&gt;
          Application.Run(new AntiAliasedText());&lt;br /&gt;
     }&lt;br /&gt;
     public AntiAliasedText()&lt;br /&gt;
     {&lt;br /&gt;
          Font = new Font(&amp;quot;Times New Roman&amp;quot;, 12);&lt;br /&gt;
          ResizeRedraw = true; &lt;br /&gt;
     }&lt;br /&gt;
     protected override void OnPaint(PaintEventArgs pea)&lt;br /&gt;
     {&lt;br /&gt;
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);&lt;br /&gt;
     }     &lt;br /&gt;
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)&lt;br /&gt;
     {&lt;br /&gt;
          Brush  brush  = new SolidBrush(clr);&lt;br /&gt;
          string str    = &amp;quot;A &amp;quot;;&lt;br /&gt;
          int    cxText = (int) grfx.MeasureString(str, Font).Width;&lt;br /&gt;
   &lt;br /&gt;
          for (int i = 0; i &amp;lt; 6; i++)&lt;br /&gt;
          {&lt;br /&gt;
               grfx.TextRenderingHint = (TextRenderingHint)i;&lt;br /&gt;
               grfx.DrawString(str, Font, brush, i * cxText, 0);&lt;br /&gt;
          }&lt;br /&gt;
     }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Text Rendering Hint: AntiAliasGridFit==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
        &lt;br /&gt;
  }&lt;br /&gt;
    private void SmoothingText_Paint(object sender, PaintEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      Font TextFont = new Font(&amp;quot;Times New Roman&amp;quot;, 25, FontStyle.Italic);&lt;br /&gt;
      e.Graphics.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;&lt;br /&gt;
      e.Graphics.DrawString(&amp;quot;www.nfex.ru&amp;quot;, TextFont, Brushes.Black, 20, 20);&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      // &lt;br /&gt;
      // SmoothingText&lt;br /&gt;
      // &lt;br /&gt;
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);&lt;br /&gt;
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(472, 315);&lt;br /&gt;
      this.Name = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Paint += new System.Windows.Forms.PaintEventHandler(this.SmoothingText_Paint);&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    Application.EnableVisualStyles();&lt;br /&gt;
    Application.Run(new Form1());&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Text Rendering Hint: ClearTypeGridFit==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
        &lt;br /&gt;
  }&lt;br /&gt;
    private void SmoothingText_Paint(object sender, PaintEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      Font TextFont = new Font(&amp;quot;Times New Roman&amp;quot;, 25, FontStyle.Italic);&lt;br /&gt;
      e.Graphics.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;&lt;br /&gt;
      e.Graphics.DrawString(&amp;quot;www.nfex.ru&amp;quot;, TextFont, Brushes.Black, 20, 20);&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      // &lt;br /&gt;
      // SmoothingText&lt;br /&gt;
      // &lt;br /&gt;
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);&lt;br /&gt;
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(472, 315);&lt;br /&gt;
      this.Name = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Paint += new System.Windows.Forms.PaintEventHandler(this.SmoothingText_Paint);&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    Application.EnableVisualStyles();&lt;br /&gt;
    Application.Run(new Form1());&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Text Rendering Hint: SingleBitPerPixelGridFit==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
        &lt;br /&gt;
  }&lt;br /&gt;
    private void SmoothingText_Paint(object sender, PaintEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      Font TextFont = new Font(&amp;quot;Times New Roman&amp;quot;, 25, FontStyle.Italic);&lt;br /&gt;
      e.Graphics.TextRenderingHint = TextRenderingHint.SingleBitPerPixelGridFit;&lt;br /&gt;
      e.Graphics.DrawString(&amp;quot;www.nfex.ru&amp;quot;, TextFont, Brushes.Black, 20, 20);&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
      this.SuspendLayout();&lt;br /&gt;
      // &lt;br /&gt;
      // SmoothingText&lt;br /&gt;
      // &lt;br /&gt;
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);&lt;br /&gt;
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
      this.ClientSize = new System.Drawing.Size(472, 315);&lt;br /&gt;
      this.Name = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Text = &amp;quot;SmoothingText&amp;quot;;&lt;br /&gt;
      this.Paint += new System.Windows.Forms.PaintEventHandler(this.SmoothingText_Paint);&lt;br /&gt;
      this.ResumeLayout(false);&lt;br /&gt;
    }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    Application.EnableVisualStyles();&lt;br /&gt;
    Application.Run(new Form1());&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Use TexturedBrush to draw string==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
public class MainForm : Form {&lt;br /&gt;
    private Brush texturedTextBrush;&lt;br /&gt;
    private Brush texturedBGroundBrush;&lt;br /&gt;
    public MainForm() {&lt;br /&gt;
        Image bGroundBrushImage = new Bitmap(&amp;quot;Clouds.bmp&amp;quot;);&lt;br /&gt;
        texturedBGroundBrush = new TextureBrush(bGroundBrushImage);&lt;br /&gt;
        Image textBrushImage = new Bitmap(&amp;quot;Soap Bubbles.bmp&amp;quot;);&lt;br /&gt;
        texturedTextBrush = new TextureBrush(textBrushImage);&lt;br /&gt;
    }&lt;br /&gt;
    protected void OnPaint(PaintEventArgs e) {&lt;br /&gt;
        Graphics g = e.Graphics;&lt;br /&gt;
        Rectangle r = ClientRectangle;&lt;br /&gt;
        g.FillRectangle(texturedBGroundBrush, r);&lt;br /&gt;
        g.DrawString(&amp;quot;Bitmaps as brushes&amp;quot;,&lt;br /&gt;
                     new Font(&amp;quot;Arial&amp;quot;, 30,&lt;br /&gt;
                     FontStyle.Bold | FontStyle.Italic),&lt;br /&gt;
                     texturedTextBrush,&lt;br /&gt;
                     r);&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main(){&lt;br /&gt;
       Application.Run(new MainForm());&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>