NetGDI 1.0.0

Suggested Alternatives

NgrixLibs.NetGDI

Additional Details

Project name changed because I decided to develop the project with my team

dotnet add package NetGDI --version 1.0.0
NuGet\Install-Package NetGDI -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NetGDI" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetGDI --version 1.0.0
#r "nuget: NetGDI, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NetGDI as a Cake Addin
#addin nuget:?package=NetGDI&version=1.0.0

// Install NetGDI as a Cake Tool
#tool nuget:?package=NetGDI&version=1.0.0

NetGDI (.NET Framework GDI32.DLL)

Website Github

Introduction

NetGDI is a library for creating graphical user interface effects using GDI32.DLL on the .NET Framework. This library enables you to create various visual effects on the screen and add dynamism to graphical user interfaces.

Features

Inverted Colors: Apply an inverted colors effect to the screen.
Blur Effect: Blur the screen.
Rounded Tunnel Effect: Create a rounded tunnel effect on the screen.
Hatch Brush: Apply a hatch brush to the screen.
Pattern Brush: Apply a pattern brush to the screen.
Color Filters: Apply color filters to the screen.
Melting Screen: Simulate the melting effect on the screen.

Usage

using NetGDI;
using System.Threading;

namespace NetGDI_Test
{
    internal class Program
    {
        static void Main(string[] args)
        {
            // NetGDI settings
            NGDISettings settings = new NGDISettings();
            settings.InvertedColors = true;
            settings.BlurEffect = true;
            settings.RoundedTunnelEffect = true;
            settings.HatchBrush = false;
            settings.PatternBrush = false;
            settings.ColorFilters = true;
            settings.MeltingScreen = true;
            
            // Create and start thread for GDIEffects
            Thread effectsThread = new Thread(() =>
            {
                GDIEffects netGDI = new GDIEffects(settings);
            });
            effectsThread.Start();

            // Your subsequent code here
            // For example:
            // MessageBox.Show("Are you still using it?");
        }
    }
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.7.2

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 83 4/23/2024