<div dir="ltr">Thanks but it did not work. I used the code as follows:<div><br></div><div><div>           Bitmap clone = new Bitmap(image.Width, image.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);</div><div>
            using (System.Drawing.Graphics gr = System.Drawing.Graphics.FromImage(clone))</div><div>            {</div><div>                gr.DrawImage(image, new Rectangle(0, 0, clone.Width, clone.Height));</div><div>            }</div>
<div><br></div><div>            var ms = new MemoryStream();</div><div>            image.Save(ms, ImageFormat.Bmp);</div><div>            var imageSurface = new ImageSurface(ms.ToArray(), Format.ARGB32, image.Width, image.Height, image.Width * 4);</div>
<div>            this.m_internalContext.Antialias = Antialias.None;</div><div>            imageSurface.Show(this.m_internalContext, destRect.X, destRect.Y);</div><div>            imageSurface.Destroy();</div><div>            ms.Dispose();</div>
</div><div><br></div><div>I think the problem is related to the formatting. my black pictures with white letters inside become green pictures, cut in half which are rotated.</div><div><br></div><div>Cheers,</div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Mon, Oct 14, 2013 at 1:02 PM, Mike Gran <span dir="ltr"><<a href="mailto:spk121@yahoo.com" target="_blank">spk121@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im"><br>
<br>
> Hi all,<br>
><br>
><br>
>I'm using Mono and .Net 2 and I want to load a System.Drawing.Image image to ImageSurface. All my efforts led to fuzzy images but the one as follows:<br>
<br>
</div>Don't know much about C#, but, maybe you just need to request no antialiasing<br>
explicitly before you paint to a context.  Something like<br>
<br>
<br>
cairo_set_antialias (context, CAIRO_ANTIALIAS_NONE);<br>
<br>
-Mike Gran<br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr">-<div><span style="font-size:10pt;font-family:Arial,sans-serif"></span><span style="font-size:12pt"></span><span style="font-family:Tahoma;font-size:13px">Best Regards,<br>
Saeed<br></span></div><div><span style="font-size:10pt;font-family:Arial,sans-serif"></span><span style="font-family:Tahoma;font-size:13px"></span></div></div>
</div>