Irgednwie komme ich nicht rund mit iOS
im Paint Event des Canvaus steht:
g.DrawImage(Startbild,0,0,me.Width,me.Height) // Bild wird klasklar dargestellt
dann:
karte= new iOSBitmap (me.Width,me.Height,1,false)
karte.Graphics.FillColor= &cffffff
karte.Graphics.Alpha=0.7
karte.Graphics.FillRoundRect(pos_x,pos_y,breite,höhe,40,40)
karte.Graphics.TextFont= New iOSFont("Helvetica Neue", text_size)
karte.Graphics.FillColor= farbe
karte.Graphics.DrawTextLine("mein text",pos_x,pos_y+höhe-(text_size/2),breite,iOSTextAlignment.Center)
g.DrawImage(karte,0,0,me.Width,me.Height)
das übermalt mir das Starbild, also dachte ich mache es so:
ich füge noch diese Zeile hinzu:
karte.Graphics.DrawImage(start_de,0,0,me.Width,me.Height)
Ergebnis, so wie es sein soll ABER das Startbild ist total verpixelt…
Was mache ich falsch?