如何使用几何绘图?

发布于 2024-11-17 10:58:15 字数 32 浏览 0 评论 0原文

我想用GeometryDrawing画字母A~Z。

I want to draw the letters A~Z by GeometryDrawing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩套路吗 2024-11-24 10:58:15

以下是如何使用GeometryDrawing绘制文本的示例。

XAML 文件 Window1.xaml:

<Window x:Class="TextDrawing.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="150" Width="300">
    <Canvas>
        <Image Stretch="None" HorizontalAlignment="Left" Margin="10">
            <Image.Source>
                <DrawingImage>
                    <DrawingImage.Drawing>
                        <GeometryDrawing x:Name="geoDrawing"/>
                    </DrawingImage.Drawing>
                </DrawingImage>
            </Image.Source>
        </Image>
    </Canvas>
</Window>

C# 文件 Window1.xaml.cs:

using System.Windows;
using System.Windows.Media;
using System.Globalization;

namespace TextDrawing
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();

            FormattedText atoz = new FormattedText("ABC...XYZ",
                CultureInfo.CurrentCulture, FlowDirection.LeftToRight,
                new Typeface("Arial"), 50.0, Brushes.Black);
            Geometry geo = atoz.BuildGeometry(new Point(0, 0));
            geoDrawing.Geometry = geo;
            geoDrawing.Pen = new Pen(Brushes.Black, 1.0);
            geoDrawing.Brush = Brushes.Yellow;
        }
    }
}

结果输出:

使用 GeometryDrawing 渲染的文本

Here is an example how to draw text using GeometryDrawing.

XAML file Window1.xaml:

<Window x:Class="TextDrawing.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="150" Width="300">
    <Canvas>
        <Image Stretch="None" HorizontalAlignment="Left" Margin="10">
            <Image.Source>
                <DrawingImage>
                    <DrawingImage.Drawing>
                        <GeometryDrawing x:Name="geoDrawing"/>
                    </DrawingImage.Drawing>
                </DrawingImage>
            </Image.Source>
        </Image>
    </Canvas>
</Window>

C# file Window1.xaml.cs:

using System.Windows;
using System.Windows.Media;
using System.Globalization;

namespace TextDrawing
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();

            FormattedText atoz = new FormattedText("ABC...XYZ",
                CultureInfo.CurrentCulture, FlowDirection.LeftToRight,
                new Typeface("Arial"), 50.0, Brushes.Black);
            Geometry geo = atoz.BuildGeometry(new Point(0, 0));
            geoDrawing.Geometry = geo;
            geoDrawing.Pen = new Pen(Brushes.Black, 1.0);
            geoDrawing.Brush = Brushes.Yellow;
        }
    }
}

Resulting output:

Text rendered with GeometryDrawing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文