├── .gitignore ├── LICENSE.txt ├── README.markdown ├── default.ps1 ├── lib └── ShaderBuildTask.dll ├── psake.bat └── src ├── SharedAssemblyInfo.cs ├── SoundInTheory.DynamicImage.Mvc ├── HtmlHelperExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundInTheory.DynamicImage.Mvc.csproj └── SoundInTheory.OpenSource.snk ├── SoundInTheory.DynamicImage.Tests ├── Bugs │ └── FontFileDefaultsToVerdana.cs ├── CompositionTests.cs ├── FastBitmapTestUtility.cs ├── Filters │ ├── CropFilterTests.cs │ └── ResizeFilterTests.cs ├── Fluent │ └── FluentInterfaceTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Tulips.png │ └── TulipsCropped200x200.png ├── SoundInTheory.DynamicImage.Tests.csproj ├── Util │ ├── Cross_process___Photoshop__acv_by_LikeGravity.acv │ └── PhotoshopCurvesReaderTests.cs └── packages.config ├── SoundInTheory.DynamicImage.Website ├── Assets │ ├── Css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── screen.css │ ├── Fonts │ │ └── ADamnMess.ttf │ ├── Images │ │ ├── AlphaAutumnLeaves.png │ │ ├── ArrowLeftDark.png │ │ ├── ArrowLeftLight.png │ │ ├── ArrowRightDark.png │ │ ├── ArrowRightLight.png │ │ ├── AstonMartin.gif │ │ ├── AutumnLeaves.jpg │ │ ├── BoardExample.png │ │ ├── Desert.jpg │ │ ├── Forest.jpg │ │ ├── GrayscaleAutumnLeaves.jpg │ │ ├── GrayscaleAutumnLeaves.png │ │ ├── Horse.jpg │ │ ├── Mask.png │ │ ├── Penguins.jpg │ │ ├── Tower.jpg │ │ ├── Tulips.jpg │ │ ├── bmw.jpg │ │ ├── oryxantelope-small.bmp │ │ ├── oryxantelope-small.jpg │ │ ├── phone.jpg │ │ ├── stonehenge_sunset1.gif │ │ ├── sunset.jpg │ │ ├── win7_rtm_homepremium_04.jpg │ │ ├── win7_rtm_homepremium_08.jpg │ │ └── win7_rtm_homepremium_16.jpg │ ├── Js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── Misc │ │ └── CrossProcess-Curves.acv │ └── Videos │ │ └── example_10fps.wmv ├── Controllers │ ├── CombosController.cs │ ├── FeaturesController.cs │ ├── FiltersController.cs │ ├── HomeController.cs │ └── LayersController.cs ├── Global.asax ├── Global.asax.cs ├── Html │ └── HtmlHelperExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundInTheory.DynamicImage.Website.csproj ├── Views │ ├── Combos │ │ └── Lomo.cshtml │ ├── Features │ │ ├── BlendModes.cshtml │ │ ├── BytesSourceImage.cshtml │ │ ├── GlobalFilters.cshtml │ │ ├── GradientFill.cshtml │ │ ├── GrayscaleSourceImage.cshtml │ │ ├── IndexedSourceImage.cshtml │ │ ├── Opacity.cshtml │ │ ├── Positioning.cshtml │ │ └── TransparentSourceImage.cshtml │ ├── Filters │ │ ├── Border.cshtml │ │ ├── BrightnessAdjustment.cshtml │ │ ├── ClippingMask.cshtml │ │ ├── ColorKey.cshtml │ │ ├── ColorTint.cshtml │ │ ├── ContrastAdjustment.cshtml │ │ ├── Crop.cshtml │ │ ├── Curves.cshtml │ │ ├── DistortCorners.cshtml │ │ ├── DropShadow.cshtml │ │ ├── Emboss.cshtml │ │ ├── Feather.cshtml │ │ ├── GaussianBlur.cshtml │ │ ├── Grayscale.cshtml │ │ ├── Inversion.cshtml │ │ ├── OpacityAdjustment.cshtml │ │ ├── OuterGlow.cshtml │ │ ├── Resize.cshtml │ │ ├── Rotation.cshtml │ │ ├── RoundCorners.cshtml │ │ ├── Sepia.cshtml │ │ ├── ShinyFloor.cshtml │ │ ├── Solarize.cshtml │ │ ├── UnsharpMask.cshtml │ │ └── Vignette.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Layers │ │ ├── JuliaFractal.cshtml │ │ ├── MandelbrotFractal.cshtml │ │ ├── PolygonShape.cshtml │ │ ├── RectangleShape.cshtml │ │ ├── Text.cshtml │ │ └── Video.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config └── Web.config ├── SoundInTheory.DynamicImage.sln ├── SoundInTheory.DynamicImage ├── AnchorStyles.cs ├── BlendMode.cs ├── Caching │ ├── Dependency.cs │ ├── DiskCacheProviderBase.cs │ ├── DynamicImageCacheManager.cs │ ├── DynamicImageCacheProvider.cs │ ├── DynamicImageCachingMode.cs │ ├── ImageUrlGenerator.cs │ ├── InProcDynamicImageCacheProvider.cs │ ├── TransientCacheProvider.cs │ └── XmlCacheProvider.cs ├── ColorHsv.cs ├── Composition.cs ├── Configuration │ ├── BrowserCachingSettings.cs │ ├── CachingSettings.cs │ ├── DependentSiteCollection.cs │ ├── DependentSiteElement.cs │ └── DynamicImageSection.cs ├── DashStyle.cs ├── DirtyTrackingCollection.cs ├── DirtyTrackingObject.cs ├── Documentation.xml ├── DynamicImageComposition.cs ├── DynamicImageException.cs ├── DynamicImageFormat.cs ├── DynamicImageModule.cs ├── Fill.cs ├── FillType.cs ├── Filters │ ├── BorderFilter.cs │ ├── BrightnessAdjustmentFilter.cs │ ├── ClippingMaskFilter.cs │ ├── ColorKeyFilter.cs │ ├── ColorTintFilter.cs │ ├── ContrastAdjustmentFilter.cs │ ├── CropFilter.cs │ ├── Curve.cs │ ├── CurveCollection.cs │ ├── CurvePoint.cs │ ├── CurvePointCollection.cs │ ├── CurvesAdjustmentFilter.cs │ ├── DistortCornersFilter.cs │ ├── DropShadowFilter.cs │ ├── EdgeAction.cs │ ├── EmbossFilter.cs │ ├── FeatherFilter.cs │ ├── Filter.cs │ ├── FilterCollection.cs │ ├── GaussianBlurFilter.cs │ ├── GrayscaleFilter.cs │ ├── ImageMath.cs │ ├── ImageReplacementFilter.cs │ ├── InterpolationMode.cs │ ├── InversionFilter.cs │ ├── OpacityAdjustmentFilter.cs │ ├── OuterGlowFilter.cs │ ├── ResizeFilter.cs │ ├── RotationFilter.cs │ ├── RoundCornersFilter.cs │ ├── SepiaFilter.cs │ ├── ShaderEffectFilter.cs │ ├── ShadowFilterBase.cs │ ├── ShinyFloorFilter.cs │ ├── SolarizeFilter.cs │ ├── TransferFilter.cs │ ├── TransformFilter.cs │ ├── UnsharpMaskFilter.cs │ └── VignetteFilter.cs ├── Fluent │ ├── BaseFilterBuilder.cs │ ├── BaseLayerBuilder.cs │ ├── BorderFilterBuilder.cs │ ├── BrightnessAdjustmentFilterBuilder.cs │ ├── ClippingMaskFilterBuilder.cs │ ├── ClosedShapeLayerBuilder.cs │ ├── ColorKeyFilterBuilder.cs │ ├── ColorTintFilterBuilder.cs │ ├── CompositionBuilder.cs │ ├── ContrastAdjustmentFilterBuilder.cs │ ├── CropFilterBuilder.cs │ ├── CurvesAdjustmentFilterBuilder.cs │ ├── DistortCornersFilterBuilder.cs │ ├── DropShadowFilterBuilder.cs │ ├── EmbossFilterBuilder.cs │ ├── FeatherFilterBuilder.cs │ ├── FilterBuilder.cs │ ├── FractalLayerBuilder.cs │ ├── GaussianBlurFilterBuilder.cs │ ├── GrayscaleFilterBuilder.cs │ ├── ImageLayerBuilder.cs │ ├── InversionFilterBuilder.cs │ ├── JuliaFractalLayerBuilder.cs │ ├── LayerBuilder.cs │ ├── MandelbrotFractalLayerBuilder.cs │ ├── OpacityAdjustmentFilterBuilder.cs │ ├── OuterGlowFilterBuilder.cs │ ├── PolygonShapeLayerBuilder.cs │ ├── RectangleShapeLayerBuilder.cs │ ├── ResizeFilterBuilder.cs │ ├── RotationFilterBuilder.cs │ ├── RoundCornersFilterBuilder.cs │ ├── SepiaFilterBuilder.cs │ ├── ShadowFilterBuilderBase.cs │ ├── ShapeLayerBuilder.cs │ ├── ShinyFloorFilterBuilder.cs │ ├── SolarizeFilterBuilder.cs │ ├── TextLayerBuilder.cs │ ├── UnsharpMaskFilterBuilder.cs │ ├── VideoLayerBuilder.cs │ └── VignetteFilterBuilder.cs ├── Font.cs ├── FontDescription.cs ├── GeneratedImage.cs ├── ImageProperties.cs ├── Layer.cs ├── LayerBlender.cs ├── LayerCollection.cs ├── Layers │ ├── ClosedShapeLayer.cs │ ├── FractalLayer.cs │ ├── ImageLayer.cs │ ├── JuliaFractalLayer.cs │ ├── MandelbrotFractalLayer.cs │ ├── PolygonShapeLayer.cs │ ├── RectangleShapeLayer.cs │ ├── ShapeLayer.cs │ ├── TextLayer.cs │ └── VideoLayer.cs ├── Padding.cs ├── Properties │ └── AssemblyInfo.cs ├── ShaderEffects │ ├── BrightnessAdjustmentEffect.cs │ ├── BrightnessAdjustmentEffect.fx │ ├── BrightnessAdjustmentEffect.ps │ ├── BrightnessEffect.ps │ ├── ClippingMaskEffect.cs │ ├── ClippingMaskEffect.fx │ ├── ClippingMaskEffect.ps │ ├── ColorKeyEffect.cs │ ├── ColorKeyEffect.fx │ ├── ColorKeyEffect.ps │ ├── ColorTintEffect.cs │ ├── ColorTintEffect.fx │ ├── ColorTintEffect.ps │ ├── ContrastAdjustmentEffect.cs │ ├── ContrastAdjustmentEffect.fx │ ├── ContrastAdjustmentEffect.ps │ ├── Copy of ColorKeyEffect.ps │ ├── CurvesEffect.cs │ ├── CurvesEffect.fx │ ├── CurvesEffect.ps │ ├── EmbossEffect.cs │ ├── EmbossEffect.fx │ ├── EmbossEffect.ps │ ├── FeatherEffect.cs │ ├── FeatherEffect.fx │ ├── FeatherEffect.ps │ ├── GrayscaleEffect.cs │ ├── GrayscaleEffect.fx │ ├── GrayscaleEffect.ps │ ├── InversionEffect.cs │ ├── InversionEffect.fx │ ├── InversionEffect.ps │ ├── LayerBlenderEffect.ps │ ├── LayerBlending │ │ ├── LayerBlenderEffect.cs │ │ ├── LayerBlenderEffectColor.fx │ │ ├── LayerBlenderEffectColor.ps │ │ ├── LayerBlenderEffectColorBurn.fx │ │ ├── LayerBlenderEffectColorBurn.ps │ │ ├── LayerBlenderEffectColorDodge.fx │ │ ├── LayerBlenderEffectColorDodge.ps │ │ ├── LayerBlenderEffectDarken.fx │ │ ├── LayerBlenderEffectDarken.ps │ │ ├── LayerBlenderEffectDarkerColor.fx │ │ ├── LayerBlenderEffectDarkerColor.ps │ │ ├── LayerBlenderEffectDifference.fx │ │ ├── LayerBlenderEffectDifference.ps │ │ ├── LayerBlenderEffectDissolve.fx │ │ ├── LayerBlenderEffectDissolve.ps │ │ ├── LayerBlenderEffectExclusion.fx │ │ ├── LayerBlenderEffectExclusion.ps │ │ ├── LayerBlenderEffectHardLight.fx │ │ ├── LayerBlenderEffectHardLight.ps │ │ ├── LayerBlenderEffectHue.ps │ │ ├── LayerBlenderEffectLighten.fx │ │ ├── LayerBlenderEffectLighten.ps │ │ ├── LayerBlenderEffectLighterColor.fx │ │ ├── LayerBlenderEffectLighterColor.ps │ │ ├── LayerBlenderEffectLinearBurn.fx │ │ ├── LayerBlenderEffectLinearBurn.ps │ │ ├── LayerBlenderEffectLinearDodge.fx │ │ ├── LayerBlenderEffectLinearDodge.ps │ │ ├── LayerBlenderEffectLinearLight.fx │ │ ├── LayerBlenderEffectLinearLight.ps │ │ ├── LayerBlenderEffectLuminosity.fx │ │ ├── LayerBlenderEffectLuminosity.ps │ │ ├── LayerBlenderEffectMultiply.fx │ │ ├── LayerBlenderEffectMultiply.ps │ │ ├── LayerBlenderEffectNormal.fx │ │ ├── LayerBlenderEffectNormal.ps │ │ ├── LayerBlenderEffectOverlay.fx │ │ ├── LayerBlenderEffectOverlay.ps │ │ ├── LayerBlenderEffectPinLight.fx │ │ ├── LayerBlenderEffectPinLight.ps │ │ ├── LayerBlenderEffectSaturation.ps │ │ ├── LayerBlenderEffectScreen.fx │ │ ├── LayerBlenderEffectScreen.ps │ │ ├── LayerBlenderEffectSoftLight.fx │ │ ├── LayerBlenderEffectSoftLight.ps │ │ └── LayerBlending.fxh │ ├── RgbHsvConversion.fxh │ ├── SepiaEffect.cs │ ├── SepiaEffect.fx │ ├── SepiaEffect.ps │ ├── ShinyFloorEffect.ps │ ├── TransferEffect.cs │ ├── TransferEffect.fx │ ├── TransferEffect.ps │ ├── UnsharpMaskEffect.cs │ ├── UnsharpMaskEffect.fx │ ├── UnsharpMaskEffect.ps │ └── VignetteEffect.ps ├── SoundInTheory.DynamicImage.csproj ├── SoundInTheory.OpenSource.snk ├── Sources │ ├── BytesImageSource.cs │ ├── FileImageSource.cs │ ├── FileSourceHelper.cs │ ├── ImageImageSource.cs │ ├── ImageSource.cs │ └── SqlDatabaseImageSource.cs ├── Unit.cs ├── UnitType.cs └── Util │ ├── CanonicalSplineUtility.cs │ ├── ColorExtensionMethods.cs │ ├── CubicSplineUtility.cs │ ├── FastBitmap.cs │ ├── Int32RectUtility.cs │ ├── Int32Size.cs │ ├── MathUtility.cs │ ├── Object.extensions.cs │ ├── PhotoshopCurvesReader.cs │ ├── ProviderUtility.cs │ ├── RenderTargetBitmapUtility.cs │ ├── ShaderEffectUtility.cs │ └── Util.cs ├── changelog.txt └── packages ├── NUnit.2.5.10.11092 ├── Logo.ico ├── NUnit.2.5.10.11092.nupkg ├── NUnitFitTests.html ├── fit-license.txt ├── lib │ ├── nunit.framework.dll │ ├── nunit.framework.xml │ ├── nunit.mocks.dll │ └── pnunit.framework.dll ├── license.txt └── tools │ ├── NUnitTests.VisualState.xml │ ├── NUnitTests.config │ ├── NUnitTests.nunit │ ├── TestResult.xml │ ├── agent.conf │ ├── agent.log.conf │ ├── launcher.log.conf │ ├── lib │ ├── Failure.png │ ├── Ignored.png │ ├── Inconclusive.png │ ├── Skipped.png │ ├── Success.png │ ├── fit.dll │ ├── log4net.dll │ ├── nunit-console-runner.dll │ ├── nunit-gui-runner.dll │ ├── nunit.core.dll │ ├── nunit.core.interfaces.dll │ ├── nunit.fixtures.dll │ ├── nunit.uiexception.dll │ ├── nunit.uikit.dll │ └── nunit.util.dll │ ├── nunit-agent-x86.exe │ ├── nunit-agent-x86.exe.config │ ├── nunit-agent.exe │ ├── nunit-agent.exe.config │ ├── nunit-console-x86.exe │ ├── nunit-console-x86.exe.config │ ├── nunit-console.exe │ ├── nunit-console.exe.config │ ├── nunit-x86.exe │ ├── nunit-x86.exe.config │ ├── nunit.exe │ ├── nunit.exe.config │ ├── nunit.framework.dll │ ├── pnunit-agent.exe │ ├── pnunit-agent.exe.config │ ├── pnunit-launcher.exe │ ├── pnunit-launcher.exe.config │ ├── pnunit.framework.dll │ ├── pnunit.tests.dll │ ├── runFile.exe │ ├── runFile.exe.config │ ├── runpnunit.bat │ └── test.conf ├── NuGet.CommandLine.1.6.0 ├── NuGet.CommandLine.1.6.0.nupkg └── tools │ └── NuGet.exe ├── psake.4.0.1.0 ├── psake.4.0.1.0.nupkg └── tools │ ├── README.markdown │ ├── chocolateyInstall.ps1 │ ├── en-US │ └── psake.psm1-help.xml │ ├── examples │ ├── checkvariables.ps1 │ ├── continueonerror.ps1 │ ├── default.ps1 │ ├── formattaskname_scriptblock.ps1 │ ├── formattaskname_string.ps1 │ ├── nested.ps1 │ ├── nested │ │ ├── nested1.ps1 │ │ └── nested2.ps1 │ ├── parameters.ps1 │ ├── passingParametersString │ │ ├── build.Release.Version.bat │ │ └── parameters.ps1 │ ├── preandpostaction.ps1 │ └── properties.ps1 │ ├── images │ ├── SakeBottle.jpg │ ├── SakeBottleLicense.txt │ ├── psake.pdn │ └── psake.png │ ├── init.ps1 │ ├── psake-buildTester.ps1 │ ├── psake-config.ps1 │ ├── psake-help.ps1 │ ├── psake.cmd │ ├── psake.ps1 │ ├── psake.psm1 │ ├── specs │ ├── bad_PreAndPostActions_should_fail.ps1 │ ├── calling_invoke-task_should_pass.ps1 │ ├── circular_dependency_in_tasks_should_fail.ps1 │ ├── default_task_with_action_should_fail.ps1 │ ├── dotNet4_should_pass.ps1 │ ├── duplicate_tasks_should_fail.ps1 │ ├── explicitly_specified_32bit_build_should_pass.ps1 │ ├── failing_postcondition_should_fail.ps1 │ ├── missing_task_should_fail.ps1 │ ├── multiline_blocks_should_pass.ps1 │ ├── nested │ │ ├── nested1.ps1 │ │ └── nested2.ps1 │ ├── nested_builds_should_pass.ps1 │ ├── running_aspnet_compiler_under_dotNet35_should_pass.ps1 │ ├── simple_properties_and_tasks_should_pass.ps1 │ ├── tasksetup_should_pass.ps1 │ ├── using_PreAndPostActions_should_pass.ps1 │ ├── using_msbuild_should_pass.ps1 │ ├── using_parameters_should_pass.ps1 │ ├── using_postcondition_should_pass.ps1 │ ├── using_precondition_should_pass.ps1 │ ├── using_properties_should_pass.ps1 │ └── writing_psake_variables_should_pass.ps1 │ └── tabexpansion │ ├── PsakeTabExpansion.ps1 │ └── Readme.PsakeTab.txt └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/README.markdown -------------------------------------------------------------------------------- /default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/default.ps1 -------------------------------------------------------------------------------- /lib/ShaderBuildTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/lib/ShaderBuildTask.dll -------------------------------------------------------------------------------- /psake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/psake.bat -------------------------------------------------------------------------------- /src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Bugs/FontFileDefaultsToVerdana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Bugs/FontFileDefaultsToVerdana.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/CompositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/CompositionTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/FastBitmapTestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/FastBitmapTestUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Filters/CropFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Filters/CropFilterTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Filters/ResizeFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Filters/ResizeFilterTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Fluent/FluentInterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Fluent/FluentInterfaceTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Resources/Tulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Resources/Tulips.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Resources/TulipsCropped200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Resources/TulipsCropped200x200.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/SoundInTheory.DynamicImage.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/SoundInTheory.DynamicImage.Tests.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Util/Cross_process___Photoshop__acv_by_LikeGravity.acv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Util/Cross_process___Photoshop__acv_by_LikeGravity.acv -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Util/PhotoshopCurvesReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Util/PhotoshopCurvesReaderTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.min.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/screen.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Fonts/ADamnMess.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Fonts/ADamnMess.ttf -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AlphaAutumnLeaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AlphaAutumnLeaves.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftDark.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftLight.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightDark.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightLight.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AstonMartin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AstonMartin.gif -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AutumnLeaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AutumnLeaves.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/BoardExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/BoardExample.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Desert.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Forest.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Horse.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Mask.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Penguins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Penguins.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Tower.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Tulips.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/bmw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/bmw.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.bmp -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/phone.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/stonehenge_sunset1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/stonehenge_sunset1.gif -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/sunset.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_04.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_08.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_16.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.min.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/jquery.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Misc/CrossProcess-Curves.acv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Misc/CrossProcess-Curves.acv -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Videos/example_10fps.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Videos/example_10fps.wmv -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/CombosController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/CombosController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/FeaturesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/FeaturesController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/FiltersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/FiltersController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/LayersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/LayersController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Global.asax -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Global.asax.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Html/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Html/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/SoundInTheory.DynamicImage.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/SoundInTheory.DynamicImage.Website.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Combos/Lomo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Combos/Lomo.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/BlendModes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/BlendModes.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/BytesSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/BytesSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GlobalFilters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GlobalFilters.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GradientFill.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GradientFill.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GrayscaleSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GrayscaleSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/IndexedSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/IndexedSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Opacity.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Opacity.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Positioning.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Positioning.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/TransparentSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/TransparentSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Border.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Border.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/BrightnessAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/BrightnessAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ClippingMask.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ClippingMask.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorKey.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorKey.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorTint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorTint.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ContrastAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ContrastAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Crop.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Crop.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Curves.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Curves.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/DistortCorners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/DistortCorners.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/DropShadow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/DropShadow.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Emboss.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Emboss.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Feather.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Feather.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/GaussianBlur.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/GaussianBlur.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Grayscale.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Grayscale.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Inversion.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Inversion.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/OpacityAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/OpacityAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/OuterGlow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/OuterGlow.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Resize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Resize.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Rotation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Rotation.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/RoundCorners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/RoundCorners.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Sepia.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Sepia.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ShinyFloor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ShinyFloor.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Solarize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Solarize.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/UnsharpMask.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/UnsharpMask.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Vignette.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Vignette.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/JuliaFractal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/JuliaFractal.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/MandelbrotFractal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/MandelbrotFractal.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/PolygonShape.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/PolygonShape.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/RectangleShape.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/RectangleShape.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/Text.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/Text.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/Video.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/Video.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Web.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.Debug.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.Release.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.sln -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/AnchorStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/AnchorStyles.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/BlendMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/BlendMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/Dependency.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DiskCacheProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DiskCacheProviderBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheManager.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCachingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCachingMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/ImageUrlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/ImageUrlGenerator.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/InProcDynamicImageCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/InProcDynamicImageCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/TransientCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/TransientCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/XmlCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/XmlCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ColorHsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ColorHsv.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Composition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Composition.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/BrowserCachingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/BrowserCachingSettings.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/CachingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/CachingSettings.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DependentSiteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DependentSiteCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DependentSiteElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DependentSiteElement.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DynamicImageSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DynamicImageSection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DashStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DashStyle.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DirtyTrackingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DirtyTrackingCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DirtyTrackingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DirtyTrackingObject.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Documentation.xml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageComposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageComposition.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageException.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageFormat.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageModule.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fill.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/FillType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/FillType.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/BorderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/BorderFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/BrightnessAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/BrightnessAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ClippingMaskFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ClippingMaskFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ColorKeyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ColorKeyFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ColorTintFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ColorTintFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ContrastAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ContrastAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CropFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CropFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/Curve.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurveCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvePoint.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvePointCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvePointCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvesAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvesAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/DistortCornersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/DistortCornersFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/DropShadowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/DropShadowFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/EdgeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/EdgeAction.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/EmbossFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/EmbossFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/FeatherFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/FeatherFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/Filter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/FilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/FilterCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/GaussianBlurFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/GaussianBlurFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/GrayscaleFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/GrayscaleFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ImageMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ImageMath.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ImageReplacementFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ImageReplacementFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/InterpolationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/InterpolationMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/InversionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/InversionFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/OpacityAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/OpacityAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/OuterGlowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/OuterGlowFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ResizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ResizeFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/RotationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/RotationFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/RoundCornersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/RoundCornersFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/SepiaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/SepiaFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShaderEffectFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShaderEffectFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShadowFilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShadowFilterBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShinyFloorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShinyFloorFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/SolarizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/SolarizeFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/TransferFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/TransferFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/TransformFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/TransformFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/UnsharpMaskFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/UnsharpMaskFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/VignetteFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/VignetteFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BaseFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BaseFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BaseLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BaseLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BorderFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BorderFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BrightnessAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BrightnessAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ClippingMaskFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ClippingMaskFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ClosedShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ClosedShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ColorKeyFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ColorKeyFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ColorTintFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ColorTintFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CompositionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CompositionBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ContrastAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ContrastAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CropFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CropFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CurvesAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CurvesAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/DistortCornersFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/DistortCornersFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/DropShadowFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/DropShadowFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/EmbossFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/EmbossFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FeatherFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FeatherFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/GaussianBlurFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/GaussianBlurFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/GrayscaleFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/GrayscaleFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ImageLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ImageLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/InversionFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/InversionFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/JuliaFractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/JuliaFractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/LayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/LayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/MandelbrotFractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/MandelbrotFractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/OpacityAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/OpacityAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/OuterGlowFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/OuterGlowFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/PolygonShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/PolygonShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RectangleShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RectangleShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ResizeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ResizeFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RotationFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RotationFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RoundCornersFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RoundCornersFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/SepiaFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/SepiaFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShadowFilterBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShadowFilterBuilderBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShinyFloorFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShinyFloorFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/SolarizeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/SolarizeFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/TextLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/TextLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/UnsharpMaskFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/UnsharpMaskFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/VideoLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/VideoLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/VignetteFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/VignetteFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Font.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/FontDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/FontDescription.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/GeneratedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/GeneratedImage.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ImageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ImageProperties.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/LayerBlender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/LayerBlender.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/LayerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/LayerCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ClosedShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ClosedShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/FractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/FractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ImageLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ImageLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/JuliaFractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/JuliaFractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/MandelbrotFractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/MandelbrotFractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/PolygonShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/PolygonShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/RectangleShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/RectangleShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/TextLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/TextLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/VideoLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/VideoLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Padding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Padding.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/Copy of ColorKeyEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/Copy of ColorKeyEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlenderEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlenderEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHue.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHue.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSaturation.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSaturation.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlending.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlending.fxh -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/RgbHsvConversion.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/RgbHsvConversion.fxh -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ShinyFloorEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ShinyFloorEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/VignetteEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/VignetteEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/BytesImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/BytesImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/FileImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/FileImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/FileSourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/FileSourceHelper.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/ImageImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/ImageImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/ImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/SqlDatabaseImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/SqlDatabaseImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Unit.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/UnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/UnitType.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/CanonicalSplineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/CanonicalSplineUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ColorExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ColorExtensionMethods.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/CubicSplineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/CubicSplineUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/FastBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/FastBitmap.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Int32RectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Int32RectUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Int32Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Int32Size.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/MathUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/MathUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Object.extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Object.extensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/PhotoshopCurvesReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/PhotoshopCurvesReader.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ProviderUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ProviderUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/RenderTargetBitmapUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/RenderTargetBitmapUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ShaderEffectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ShaderEffectUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Util.cs -------------------------------------------------------------------------------- /src/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/changelog.txt -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/Logo.ico -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/NUnit.2.5.10.11092.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/NUnit.2.5.10.11092.nupkg -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/NUnitFitTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/NUnitFitTests.html -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/fit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/fit-license.txt -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/license.txt -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/NUnitTests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/NUnitTests.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/TestResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/TestResult.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/agent.conf -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/agent.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/agent.log.conf -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/launcher.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/launcher.log.conf -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/Failure.png -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/Success.png -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/fit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/fit.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-console.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/runFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/runFile.exe -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/runFile.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/runFile.exe.config -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/runpnunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/runpnunit.bat -------------------------------------------------------------------------------- /src/packages/NUnit.2.5.10.11092/tools/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NUnit.2.5.10.11092/tools/test.conf -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.6.0/NuGet.CommandLine.1.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NuGet.CommandLine.1.6.0/NuGet.CommandLine.1.6.0.nupkg -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.6.0/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/NuGet.CommandLine.1.6.0/tools/NuGet.exe -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/psake.4.0.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/psake.4.0.1.0.nupkg -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/README.markdown -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/en-US/psake.psm1-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/en-US/psake.psm1-help.xml -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/checkvariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/checkvariables.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/continueonerror.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/continueonerror.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/default.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/formattaskname_scriptblock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/formattaskname_scriptblock.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/formattaskname_string.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/formattaskname_string.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested/nested1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested/nested1.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested/nested2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested/nested2.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/parameters.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/passingParametersString/build.Release.Version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/passingParametersString/build.Release.Version.bat -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/passingParametersString/parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/passingParametersString/parameters.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/preandpostaction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/preandpostaction.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/properties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/properties.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/SakeBottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/SakeBottle.jpg -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/SakeBottleLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/SakeBottleLicense.txt -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/psake.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/psake.pdn -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/psake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/psake.png -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/init.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-buildTester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-buildTester.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-config.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-help.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.cmd -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.psm1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/bad_PreAndPostActions_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/bad_PreAndPostActions_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/calling_invoke-task_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/calling_invoke-task_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/circular_dependency_in_tasks_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/circular_dependency_in_tasks_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/default_task_with_action_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/default_task_with_action_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/dotNet4_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/dotNet4_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/duplicate_tasks_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/duplicate_tasks_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/explicitly_specified_32bit_build_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/explicitly_specified_32bit_build_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/failing_postcondition_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/failing_postcondition_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/missing_task_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/missing_task_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/multiline_blocks_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/multiline_blocks_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested/nested1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested/nested1.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested/nested2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested/nested2.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested_builds_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested_builds_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/running_aspnet_compiler_under_dotNet35_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/running_aspnet_compiler_under_dotNet35_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/simple_properties_and_tasks_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/simple_properties_and_tasks_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/tasksetup_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/tasksetup_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_PreAndPostActions_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_PreAndPostActions_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_msbuild_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_msbuild_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_parameters_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_parameters_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_postcondition_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_postcondition_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_precondition_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_precondition_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_properties_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_properties_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/writing_psake_variables_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/writing_psake_variables_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/tabexpansion/PsakeTabExpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/tabexpansion/PsakeTabExpansion.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/tabexpansion/Readme.PsakeTab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/tabexpansion/Readme.PsakeTab.txt -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitdap/dynamic-image/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------