NetGDI 1.0.0
Suggested Alternatives
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.
<PackageVersion Include="NetGDI" Version="1.0.0" />
<PackageReference Include="NetGDI" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NetGDI --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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.
#:package NetGDI@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NetGDI&version=1.0.0
#tool nuget:?package=NetGDI&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
NetGDI (.NET Framework GDI32.DLL)
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 | Versions 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 | 132 | 4/23/2024 |