zoukankan      html  css  js  c++  java
  • Drawing Images and Text

    using System;
    using UIKit;
    using Foundation;
    using CoreGraphics;
    namespace GraphicsAnimation
    {
    public class DrawnImageView : UIView
    {
    public DrawnImageView ()
    {
    BackgroundColor = UIColor.White;
    }
    public override void Draw(CGRect rect)
    {
    base.Draw (rect);
    using(var g=UIGraphics.GetCurrentContext())
    {
    g.ScaleCTM (1,-1);//画出来的图像默认是倒立的
    g.TranslateCTM (0,-Bounds.Height);
    g.DrawImage (rect,UIImage.FromFile("MyImage.png").CGImage);
    float fontSize = 35f;
    g.TranslateCTM (0,fontSize);
    g.SetLineWidth (1.0f);
    g.SetStrokeColor (UIColor.Yellow.CGColor);
    g.SetFillColor (UIColor.Red.CGColor);
    //g.SetShadow (new SizeF (5, 5), 0, UIColor.Blue.CGColor);
    g.SetShadow(new CGSize(5,5),0,UIColor.Blue.CGColor);
    g.SetTextDrawingMode (CGTextDrawingMode.FillStroke);
    g.SelectFont ("Helvetica", fontSize, CGTextEncoding.MacRoman);

    // show the text
    g.ShowText ("Hello Core Graphics");

    }
    }
    }
    }

    ————————————————

     #region View lifecycle

    public override void ViewDidLoad ()
    {
    base.ViewDidLoad ();


    DrawnImageView drawnImageView = new DrawnImageView { Frame=UIScreen.MainScreen.Bounds};
    View.AddSubview (drawnImageView);
    }
    运行结果:
  • 相关阅读:
    Lover
    As long as you love me....
    JavaSE(4)
    JavaSE(2)
    大数据学习之JavaSE(1)
    LeetCode
    PCA和SVD的区别与联系理解
    阿里笔试题(3.23)——走迷宫
    Java单例设计模式的实现
    Maven配置及idea下创建Maven项目详细步骤
  • 原文地址:https://www.cnblogs.com/bubugao/p/4483285.html
Copyright © 2011-2022 走看看