123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- #pragma warning disable
- namespace Svg
- {
- public interface IFontDefn : IDisposable
- {
- float Size { get; }
- float SizeInPoints { get; }
- void AddStringToPath(ISvgRenderer renderer, GraphicsPath path, string text, PointF location);
- float Ascent(ISvgRenderer renderer);
- IList<RectangleF> MeasureCharacters(ISvgRenderer renderer, string text);
- SizeF MeasureString(ISvgRenderer renderer, string text);
- }
- }
- #pragma warning restore
|