toe_head2001 Posted September 25 Share Posted September 25 I generated a spreadsheet to see all the Effects (and their descriptions) at the same time. https://docs.google.com/spreadsheets/d/1PPYQgkWzEeJdLos9dGe5ebH_rqMPleySX9rpRnJTNuM/edit?usp=sharing Enjoy. 1 2 1 Quote (September 25th, 2023) Sorry about any broken images in my posts. I am aware of the issue. My Gallery | My Plugin Pack Layman's Guide to CodeLab Link to comment Share on other sites More sharing options...
Pixey Posted September 25 Share Posted September 25 Very impressive @toe_head2001 👍 Quote How I made Jennifer & Halle in Paint.net My Gallery | My Deviant Art "Rescuing one animal may not change the world, but for that animal their world is changed forever!" anon. Link to comment Share on other sites More sharing options...
Rick Brewster Posted September 25 Share Posted September 25 These are also documented in the API reference, if you need to see more detailed descriptions, notes, and documentation for individual property settings: Direct2D's built-in effects library, and Paint.NET's Direct2D supplemental effects library: https://paintdotnet.github.io/apidocs/api/PaintDotNet.Effects.Gpu.html The Direct2D effects that power Paint.NET's built-in GpuEffects (the ones you click on in the app), they're all the ones that start with "Pdn": https://paintdotnet.github.io/apidocs/api/PaintDotNet.Effects.Gpu.html For instance, let's say you want to use GaussianBlurEffect2 (part of PDN's D2D supplemental effects library), which is just like GaussianBlurEffect(non-2) (part of D2D's built-in effects library) but adds a HighQuality mode for the Optimization property: The effect itself: https://paintdotnet.github.io/apidocs/api/PaintDotNet.Direct2D1.Effects.GaussianBlurEffect2.html And its properties in the nested ".Props" class, which includes descriptions of the properties and their valid ranges/values: https://paintdotnet.github.io/apidocs/api/PaintDotNet.Direct2D1.Effects.GaussianBlurEffect2.Props.html If you want to replicate the Gamma slider that is in Paint.NET's Gaussian Blur effect (the one you get when you click into the Effects menu), the easiest way is via the ConvertGammaEffect, https://paintdotnet.github.io/apidocs/api/PaintDotNet.Direct2D1.Effects.ConvertGammaEffect.html If you want the Direct2D effect that underlies Paint.NET's Distort->Dents effect, look no further than PdnDentsEffect and its properties. 1 1 Quote The Paint.NET Blog: https://blog.getpaint.net/ Donations are always appreciated! https://www.getpaint.net/donate.html Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.