⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 formatsvgfile.int

📁 FlexGraphics是一套创建矢量图形的VCL组件
💻 INT
字号:
/////////////////////////////////////////////////////////
//                                                     //
//    FlexGraphics library                             //
//    Copyright (c) 2002-2009, FlexGraphics software.  //
//                                                     //
//    FlexGraphics library file formats support        //
//    Scalable Vector Graphics (svg) files             //
//                                                     //
/////////////////////////////////////////////////////////

unit FormatSvgFile;

{$I FlexDefs.inc}

interface

uses
  Windows, Classes, Graphics, FlexBase, FlexFileFormats;

resourcestring
  sSvgFileDescription = 'Scalable Vector Graphics';

type
  TFlexSvgFormat = class(TFlexFileFormat)
  protected
    procedure RegisterSupportedExtensions; override;
    procedure ExportSVG(AFlexPanel: TFlexPanel; AStream: TStream);
  public
    procedure ExportToStream(AStream: TStream; AFlexPanel: TFlexPanel;
      const Extension: TFlexFileExtension; const AFileName: string); override;
  end;

implementation

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -