Paint.NET 5.1 is now available! (2025)

Table of Contents
Get the Update Change Log

This is a major update to Paint.NET that includes a raft of technology upgrades including full color management, support for HDR and Wide Color Gamut displays, major improvements to input latency and memory usage, and new and revamped blur effects. In addition, the migration of effects and adjustments to the GPU has been completed, further improving their performance and quality. There are also some new canvas customization settings.

Color Management

Paint.NET finally has full color management support, a feature commonly found in more expensive or complicated imaging software. This ensures that images with embedded color profiles look the way they're supposed to, as originally captured by a camera or as intended by the author. Most cellphone cameras nowadays will take photos in a wide gamut color space like Display P3, and now those photos will have correct colors, brightness, and saturation when opened in Paint.NET.

Here's an example using a NASA photograph of the Cosmic Cliffs nebula taken by the James Webb telescope (source). It was captured in infrared and then shifted to the visible light spectrum, and the final result uses the ProPhoto RGB color space so as to utilize a very large spectrum of colors.

Paint.NET 5.1 is now available! (1)

(Note that this screenshot's color is clamped to sRGB. The real image looks even better on an actual HDR or WCG display!)

On the left is how the image looks if the color profile is ignored, as you'd see in Paint.NET 5.0 and earlier. On the right, however, the color profile is being applied in real-time to ensure that everything looks exactly as NASA intended it to.

Color Management is configured in Settings, but there isn't much that needs to be configured. Windows Advanced Color, enabled by default, is used to provide one-click color management support for your display. When the display is configured for High Dynamic Range (HDR) or Wide Color Gamut (WCG) mode, this enables high bit-depth output (e.g. 10-bits or more) and use of the display's full color gamut.Windows then ensures accurate and consistent color reproduction, based on what the display itself tells the system viaEDID.

Displays configured for Standard Dynamic Range (SDR) do not support Windows Advanced Color, so Paint.NET will run in sRGB mode which ensures consistent color reproduction. Color accuracy is then dependent on the display itself being configured for sRGB color output.

There are instructions to guide you through enabling HDR or WCG for your display over in Windows Display Settings. A status section gives clear information about the state of color management and the display:

Paint.NET 5.1 is now available! (2)

Wide Color Gamut mode is new for Windows 11 v24H2, and is essentially an upgraded SDR mode with high bit-depth output support, automatic color management, desktop composition in linear gamma and at FP16 precision, and none of the fussiness of HDR mode. Your monitor does not transition to HDR mode when this is enabled -- it is still operating in SDR mode. I highly recommend checking this out if it is available on your system!

The new Image -> Color Profile dialog replaces the Image -> Apply Embedded Color Profile command introduced in 5.0, which was a one-way "destructive" process that converted the image to the sRGB color space and then removed the embedded color profile.

Paint.NET 5.1 is now available! (3)

Here you can select from the image's current color profile, as well as sRGB, Adobe RGB, Display P3, and ProPhoto RGB. Or, you can import a color profile from any *.icc/*.icm file. You can also export the current image's color profile to a file.I'm planning to revise and expand this dialog as I received feedback about it from the community.

The Convert button will transform the image from its current color profile to the newly selected one. It will still appear the same on-screen, modulo any precision or gamut limitations. You will then be able to edit the image in the new color space defined by the new color profile.

The Assignbutton will change the color profile but not transform the colors of the image, usually resulting in it looking very different. This is useful when you have an image that has the wrong color profile embedded in it, or where the color profile was removed (such as when using "image crushers" that remove all metadata). Another possible use of this is to assign the Display P3 profile to an image to increase its saturation in a way that many people like (some feel that sRGB is undersaturated when displayed correctly).

GPU effects and plugins will automatically participate in color management unless they opt-out of it. The defaultWorkingSpaceLinearcolor context will convert the image to linear gamma in a way that is correct for the image's color profile. The linearized image is then fed into the effect, which will do its rendering, and then the output of that effect will be converted back to the (non-linearized) color space defined by the image's color profile. There are also many new APIs for working with colors and color profiles, for both GPU and CPU effects.

I'd like to give a special mention and big thanks to Clinton Ingram (aka @saucecontrol), not only for his PhotoSaucelibrary, but for the hours and hours andhoursof time he patiently discussed color management with me on Discord. This dialogue spanned several months, during which I slowly learned to crawl and then eventually walk in this extremely complicated, highly technical, and difficult problem space. This feature would not have been possible without his guidance!

New and Updated Effects

There are two new blur effects, some updates to existing effects, and all* built-in adjustments and effects have now been fully migrated to run on the GPU.

Sketch Bluris a new blur effect unique to Paint.NET. It was adapted from Andrey Akinshin's (website, twitter)implementation of the P² Quantile Estimator algorithm, which is used to calculate an approximation of the median for a stream of values. You can read more about this effect over here, where I released it as a plugin for 5.0 under the name Median Sketch. It has been further optimized since the release of the plugin, with respect to both performance and quality.

Paint.NET 5.1 is now available! (4)

Square Blur is a very simple blur effect that computes the average color of the surrounding square area around each pixel. It could even be considered a very high-performance, but veryinaccurate approximation, of the Bokeh Blur effect (which averages out the surrounding circular area).

Paint.NET 5.1 is now available! (5)

Median Bluris a rewrite of the old Noise->Median effect. It accomplishes the same thing but uses the GPU for rendering. It is based on @_koh_'s "Hi-Lo" algorithm which cleverly uses a binary search approach to calculating the median at a specific precision. You can fine-tune the precision (quality) for the result you want to achieve; lower values produce an interesting posterized look. This effect is also Paint.NET's first foray into the realm of compute shaders, the use of which unlocked more than a 3x performance improvement over the original pixel shader implementation!

Paint.NET 5.1 is now available! (6)Paint.NET 5.1 is now available! (7)


Auto-Level, Curves, Levels, Oil Painting, Reduce Noise, Surface Blur, and Outline have also been converted to run on the GPU. This completes the transition to a fully GPU-enabled effect system that was started with last year's 5.0 release.

ALL of the built-in GPU effects are available for use by GPU effect plugins, where you can use them as part of a larger Direct2D effect graph to do all sorts of sophisticated and creative image processing. I highly recommend checking out CodeLab, which has been updated to support GPU effect development. @BoltBait's GPU Accelerated Plugin Pack is also a rich source of useful and interesting GPU effects (and some non-GPU effects!), and has always been an essential addition to Paint.NET. There is also source code (on GitHub) for a set of sample effects that I wrote to illustrate how to work with the GPU effect system, which has now been updated for 5.1. Lastly, there is API documentation for both the built-in GPU effects and the set of built-in and extended Direct2D effects.

In addition, plugins can now make use of theHistogramEffect2 analysis effect. Compared toDirect2D's built-in HistogramEffect, it is more precise, can calculate up to 4096 bins (vs. 256), and works on any image size (vs. a max of 4096x4096).

* There are actually 2 effects that still do not run on the GPU. The first is Colors->Quantize, whose algorithm isn't amenable to running on the GPU. The second is Photo->Red Eye Removal, which is actually just a wrapper for a GDI+ effect.

Canvas Customization

The new Canvas settings section has two new settings to let you customize the canvas to your liking. The first is a simple toggle for the drop shadow, and the second is the ability to change the border color (sometimes called the "background" color). In addition, the Transparency Checkerboard Brightness setting has found a new home here.

Paint.NET 5.1 is now available! (8)

You might be wondering ... why? Well, there are 3 big reasons for adding these, and I'll list them in decreasing order of importance:

  1. Accessibility. Being able to customize the color of the canvas border is important for some people who are using high-contrast themes. Paint.NET doesn't really know what to do with these for some of its theme colors, and this allows folks to set a color that is comfortable for their eyes and lighting conditions.
  2. Contrast. Sometimes when you're editing an image, the drop shadow can trick your eyes into thinking the image is a slightly different size than it actually is. In addition, it can be important to have the ability to change the canvas border color becauselight bleeds. Whether you realize it or not, the color of the canvas border can slightly and subtly affect your perception of the colors in the image. Changing that allows you to choose a color that is neutral for the images you are working on.
  3. Fun.Some people just want a purple canvas ¯\_(ツ)_/¯This is a bonus/corollary feature and was not the primary motivation for developing it.

Memory Usage and Input Latency

Last but not least, let's talk about two important fundamentals: memory usage and input latency (or "lag"). I've been chipping away at these little by little over the years, but in 5.1 there have been breakthrough improvements for both of them.

With regard tomemory usage, there are two big optimizations that have came through. The first changes the canvas tile cache so that it nowmovestiles to the GPU instead ofcopyingthem, which saves quite a lot of CPU memory. The second optimization changes how swapchains are handled: instead of 1 per image tab, there are only 2 that are shared between all of the them: one for the visible tab, and a spare to help prevent flickering when switching tabs. The more images you open, the more GPU memory is saved -- sometimes several gigabytes! More information on these two optimizations can be found in the release notes for a beta build released back in August.

With regard toinput latency, there are two upgrades that greatly improve things here. The first is the adoption of DXGI Flip Model, which is the presentation technology designed by Microsoft to reduce input latency and power consumption for DirectX games and applications. The second is something I call Async Present, which moves the call to IDXGISwapChain::Present()(or IDXGISwapChain1::Present1()) to a dedicated, high-priority background thread. In simple terms, this means that the CPU and GPU work are better parallelized: while the GPU is busy finalizing and pushing pixels over to the display, the CPU (specifically the UI thread) can continue receiving and processing input. This has producedverynoticeable improvements to input latency and smoothness on most systems.

Further Reading

If you'd like to learn more about DXGI Flip Model, Windows Advanced Color, Automatic Color Management, etc. then here are some links:

Get the Update

There are two releases of Paint.NET:

  • Microsoft Store release (recommended)
    • You can purchase it here. This helps fund development and is an alternative or supplement tosending in a donation. In addition, updates happen automatically in the background when you're not using the app.
    • If you already have it installed, the update should happen automatically once Microsoft certifies the update, usually within the next day or so. To get the update immediately (once it's certified), you canfollow the instructions listed here.
  • Classic Desktop release
    • Download the installer from the website. This is the recommended download if you don't have Paint.NET installed. It can also be used to update the app.
    • If you already have it installed, you should be offered the update automatically within the next few days, but you can also get it immediately by going to ⚙ Settings -> Updates -> Check Now.
    • Offline Installers and Portable ZIPsare available over on GitHub.

Change Log

Changes since 5.0.13:

  • New: Color Management support
    • Images with embedded color profiles will now be displayed correctly using real-time color conversion built on PhotoSauce and Direct2D.
    • On HDR and WCG (Wide Color Gamut) displays, Paint.NET will make use of Windows Advanced Color which then enables high bit-depth output and use of the display's full color gamut. Windows ensures color consistency and accuracy for the whole desktop.
    • On SDR displays, Paint.NET will operate in sRGB mode and provide consistent color reproduction. If the display is configured for sRGBthen colors will also be accurate.
  • New: Image->Color Profile replaces Image->Apply Embedded Color Profile, and provides the ability to change the image's color profile via Assign and Convert actions.
  • New:Fully modernized canvas presentation engine that utilizes DXGI Flip Model, Advanced Color, and Windows.UI.Composition.
  • Improved: Input latency has been significantly reduced by using DXGI Flip Model and Async Present.
  • New: Canvas section in Settings provides the ability to customize the canvas brightness, border color, and shadow
  • Improved the canvas rendering quality by using linear gamma. This improves overall performance and also improves the appearance of selection handles and other canvas UI elements.
  • Updated: All remaining effects and adjustments have been ported to use the GPU
    • Newly converted in 5.1 are: Auto-Level, Curves, Levels, Oil Painting, Surface Blur, Reduce Noise, and Outline.
    • The two exceptions to this are Effects->Color->Quantize and Effects->Photo->Red Eye Removal. The first is not amenable to running on the GPU, and the second is actually a wrapper around an old GDI+ effect.
  • New: Effects->Blur->Sketch Blur is a new blur effect that gives the appearance of a painting drawn with a coarse brush.
  • New: Effects->Blur->Median Blur replaces Effects->Noise->Median, and now runs on the GPU with much higher quality.
  • New: Effects->Blur->Square Blur
  • Changed: Gaussian Blur and Bokeh Blur now have a "Gamma Boost" slider instead of a "Gamma" property. This is now used to configure thechangein gamma rather than specifying the gamma that the image should be assumed to have. The intent is still to provide something of a brightness/highlights amplifier for creative purposes.
  • Changed: Effects -> Blur -> Motion Blur now uses a Gaussian kernel.
  • New: Effects->Render->Clouds now has a Colors tab for configuring the colors that are used
  • Changed:Image->Canvas Size will no longer use the secondary color to fill in new areas for the "background" layer. It will always fill with transparent black (#00000000).
  • Improved dithering quality when saving an image at 8-bit or lower color depth, and when using Effects->Color->Quantize
  • New: Updated to use Mica effects in the title bar on Windows 11
  • Fixed some more scrollbars to respect dark theme (thanks @toe_head2001!)
  • Fixed: The Move Selected Pixels tool will no longer finish (commit) when togglinglayer visibility. This was a workaround for a bugduring an early beta of 4.0 that does not seem to be necessary anymore.
  • Improved: Greatly reduced CPU memory usage by maintaining the tile cache only on the GPU instead of having a copy on the CPU-side as well.
  • Improved: Significantly reduced GPU memory usage by consolidating down to 2 swapchains that are shared among image tabs, instead of each image tab having its own private swapchain.
  • Improved: GPU effects now use a smaller tile size on GPUs with less RAM, which should enable faster updates and cancellation response on older GPUs. This also significantly lowers the probability of TDR events, particularly for expensive effects like Median Blur.
  • Fixed: The Save Configuration dialog sometimes looked like it was having a seizure when panning after zooming (w/ Ctrl + Mouse Wheel)
  • Fixed: The Line/Curve and Shapes tools would cancel instead of commit (Finish) when pressing ESC too soon after using the arrow keys to move the shape
  • Improved the performance of the portable release by reducing how often the JSON settings file is flushed.
  • New: CMYK64 images can now be loaded. Note that CMYK images are always transformed to Adobe RGB.
  • New: Added the ExponentialScale double property for IndirectUI. The default value is 2.0. It goes along with the UseExponentialScale boolean property.
  • New: GPU effect plugins can now use compute shaders. Note that this is "raw" support by providing access to the necessary Direct2D interfaces (e.g. ID2D1ComputeInfo).
  • Deprecated:The classic/legacy effect system has been marked as [Obsolete]. Compiling a classic/legacy effect will produce a compile-time warning along with a message about migrating to the new GpuEffect or BitmapEffect systems. This will be changed to a compile-time error in a future update (either v5.2 or v6.0, whichever is next).
  • Removed: Settings -> UI -> Show image previews in the Windows taskbar.
  • Removed: Settings -> UI -> Enable scrolling past the edge of the canvas (overscroll). This is now always enabled.
  • Updated to use .NET 9.0 (previously this was .NET 7.0)
  • Updated the minimum OS requirement to Windows 10 v21H2 (previously this was Windows 10 v1809)
  • Updated the bundled AVIF FileType to version 3.10.0.0. Thanks @null54!
  • Updated the bundled DDS FileType Plus to version 1.12.11.0. Thanks @null54!
  • Updated the bundled WebP FileType to version 1.4.0.0. Thanks @null54!
Paint.NET 5.1 is now available! (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6209

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.