
NSD
Members-
Content Count
87 -
Joined
-
Last visited
Community Reputation
59Recent Profile Visitors
434 profile views
-
ShapeMaker - by the Dwarf Horde v1.7.0 (October 6, 2020)
NSD replied to toe_head2001's topic in Plugins - Publishing ONLY!
ShapeMaker is a great tool. Thanks to all those who contributed to the creation of this very professional plugin. I haven't read all the documentation, but I'm wondering if we can create shapes like the one in the picture below. -
Stripes in differing colours
NSD replied to Dreamattack's topic in Paint.NET Discussion and Questions
My way: 1. Draw a Linear Gradient with any color from top to bottom (left to right in order to get vertical stripes). Keep shift key pressed. 2. Choose Paint Bucket tool, change tolerance to 10% (big tolerance = wide stripes, small tolerance = narrow stripes). 3. Disable Antialiasing (very important!). 4. Create stripes using Paint Bucket with desired colors. Click on linear gradient already created. Change color using Color Wheel. This methode works even for concentric circular stripes, but you need to make a Radial Gradient. -
Diffusion plugin The plugin is in Effects > Stylize submenu. The UI: Diffusion.zip
-
I created this plugin for personal purposes. Because there are already several such plugins I will not post it in the dedicated tread. If you like it use it. If you don't like it, I'm sorry. AlignNSD.zip
-
You can try to change Text Rendering Mode:
-
Installing PDN under Wine in Linux/Mac.
NSD replied to dipstick's topic in Paint.NET Discussion and Questions
It's not a big deal, but I've noticed that after checking for updates when I return to the User Interface, the Color Scheme and Language list no longer displays the latest settings. -
I cannot receate this font style no matter what I try
NSD replied to VKDrummer's topic in Paint.NET Discussion and Questions
You can do it using Image Distortion plugin. I used this settings to made image below: I first used a white background to see the distortion on the canvas. Then in a transparent layer I placed the text and then I ran the plugin. As you can see, you need to position the text correctly on its own layer and then run the plugin. -
[Guide] Dark Theme support for custom EffectConfigDialog
NSD replied to toe_head2001's topic in Plugin Developer's Central
I don't know how to enable Dark Theme for labels. I tried a lot of variants for Enabled / Disabled labels. If the control whose name is a label is Enabled everything is OK, but if it is Disabled the text turns black and is not visible. It's about a group of controls placed on a panel. In fact the panel is Enabled / Disabled. What's the trick? -
Curving only top or bottom of text
NSD replied to mclbarri's topic in Paint.NET Discussion and Questions
This was made with Text Distortion and Image Distortion plugins. -
Can we find out in CodeLab if a selection is tilted?
NSD replied to NSD's topic in Plugin Developer's Central
Thanks MJW! This code seems to work fine only for rectangular selection: Rectangle sel = EnvironmentParameters.SelectionBounds; //check if selection is tilted Rectangle[] selectionRectangles = EnvironmentParameters.GetSelectionAsPdnRegion().GetRegionScansInt(); if(selectionRectangles[0].X != sel.X) { //selection is tilted }