├── .gitignore ├── GraphicPlus ├── Classes │ ├── Drawing.cs │ ├── Effect.cs │ ├── FontObject.cs │ ├── Gradient.cs │ ├── GradientStop.cs │ ├── Graphic.cs │ └── Shape.cs ├── Components │ ├── Abstract │ │ ├── GH_BaseGraphics.cs │ │ └── GH_BaseSave.cs │ ├── Data │ │ ├── GH_ShapeData.cs │ │ ├── GH_ShapeLink.cs │ │ ├── GH_ShapeSettings.cs │ │ └── GH_ShapeTooltip.cs │ ├── Drawings │ │ ├── GH_ConstructDrawing.cs │ │ ├── GH_DrawingToText.cs │ │ ├── GH_PreviewDrawing.cs │ │ ├── GH_ToBitmap.cs │ │ └── GH_Viewer.cs │ ├── Extension.cs │ ├── Files │ │ ├── GH_SaveBmp.cs │ │ └── GH_SaveSvg.cs │ ├── Graphics │ │ ├── GH_SetEffectBlur.cs │ │ ├── GH_SetEffectInnerGlow.cs │ │ ├── GH_SetEffectShadow.cs │ │ ├── GH_SetFillGradientLinear.cs │ │ ├── GH_SetFillGradientRadial.cs │ │ ├── GH_SetFillSolid.cs │ │ └── GH_SetStroke.cs │ └── Text │ │ ├── GH_SetFont.cs │ │ └── GH_Text.cs ├── Extensions │ ├── ToDotNet.cs │ └── ToSvg.cs ├── GraphicPlus.csproj ├── GraphicPlus.sln ├── GraphicPlusInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── GP-Bitmap-01.png │ ├── GP-Bmp-Save-01.png │ ├── GP-DrawingA-01.png │ ├── GP-EffectsBlur-01.png │ ├── GP-EffectsGlow-01.png │ ├── GP-EffectsShadow-01.png │ ├── GP-Graphics-Fill-Gradient-Linear-01.png │ ├── GP-Graphics-Fill-Gradient-Radial-01.png │ ├── GP-Graphics-Fill-Gradient-Radial-B-01.png │ ├── GP-Graphics-Fill-Solid-A-01.png │ ├── GP-Graphics-Fill-Solid-D-01.png │ ├── GP-Graphics-Font-01.png │ ├── GP-Graphics-Stroke-01.png │ ├── GP-Graphics-Text-01.png │ ├── GP-Rh_Preview7-01.png │ ├── GP-Rh_Viewer4-01.png │ ├── GP-SVG-Data-01.png │ ├── GP-SVG-Layers2-01.png │ ├── GP-SVG-Link-01.png │ ├── GP-SVG-Save-01.png │ ├── GP-SVG-Text-01.png │ ├── GP-SVG-Tooltip2-01.png │ ├── GraphicsPlus_24.png │ └── GraphicsPlus_300.png └── packages.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /GraphicPlus/Classes/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/Drawing.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/Effect.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/FontObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/FontObject.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/Gradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/Gradient.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/GradientStop.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/Graphic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/Graphic.cs -------------------------------------------------------------------------------- /GraphicPlus/Classes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Classes/Shape.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Abstract/GH_BaseGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Abstract/GH_BaseGraphics.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Abstract/GH_BaseSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Abstract/GH_BaseSave.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Data/GH_ShapeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Data/GH_ShapeData.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Data/GH_ShapeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Data/GH_ShapeLink.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Data/GH_ShapeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Data/GH_ShapeSettings.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Data/GH_ShapeTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Data/GH_ShapeTooltip.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Drawings/GH_ConstructDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Drawings/GH_ConstructDrawing.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Drawings/GH_DrawingToText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Drawings/GH_DrawingToText.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Drawings/GH_PreviewDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Drawings/GH_PreviewDrawing.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Drawings/GH_ToBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Drawings/GH_ToBitmap.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Drawings/GH_Viewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Drawings/GH_Viewer.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Extension.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Files/GH_SaveBmp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Files/GH_SaveBmp.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Files/GH_SaveSvg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Files/GH_SaveSvg.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetEffectBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetEffectBlur.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetEffectInnerGlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetEffectInnerGlow.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetEffectShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetEffectShadow.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetFillGradientLinear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetFillGradientLinear.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetFillGradientRadial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetFillGradientRadial.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetFillSolid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetFillSolid.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Graphics/GH_SetStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Graphics/GH_SetStroke.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Text/GH_SetFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Text/GH_SetFont.cs -------------------------------------------------------------------------------- /GraphicPlus/Components/Text/GH_Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Components/Text/GH_Text.cs -------------------------------------------------------------------------------- /GraphicPlus/Extensions/ToDotNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Extensions/ToDotNet.cs -------------------------------------------------------------------------------- /GraphicPlus/Extensions/ToSvg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Extensions/ToSvg.cs -------------------------------------------------------------------------------- /GraphicPlus/GraphicPlus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/GraphicPlus.csproj -------------------------------------------------------------------------------- /GraphicPlus/GraphicPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/GraphicPlus.sln -------------------------------------------------------------------------------- /GraphicPlus/GraphicPlusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/GraphicPlusInfo.cs -------------------------------------------------------------------------------- /GraphicPlus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GraphicPlus/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GraphicPlus/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Properties/Resources.resx -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Bitmap-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Bitmap-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Bmp-Save-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Bmp-Save-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-DrawingA-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-DrawingA-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-EffectsBlur-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-EffectsBlur-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-EffectsGlow-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-EffectsGlow-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-EffectsShadow-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-EffectsShadow-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Linear-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Linear-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Radial-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Radial-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Radial-B-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Fill-Gradient-Radial-B-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Fill-Solid-A-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Fill-Solid-A-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Fill-Solid-D-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Fill-Solid-D-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Font-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Font-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Stroke-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Stroke-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Graphics-Text-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Graphics-Text-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Rh_Preview7-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Rh_Preview7-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-Rh_Viewer4-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-Rh_Viewer4-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Data-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Data-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Layers2-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Layers2-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Link-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Link-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Save-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Save-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Text-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Text-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GP-SVG-Tooltip2-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GP-SVG-Tooltip2-01.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GraphicsPlus_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GraphicsPlus_24.png -------------------------------------------------------------------------------- /GraphicPlus/Resources/GraphicsPlus_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/Resources/GraphicsPlus_300.png -------------------------------------------------------------------------------- /GraphicPlus/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/GraphicPlus/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interopxyz/GraphicPlus/HEAD/README.md --------------------------------------------------------------------------------