BoltBait Posted January 17 Share Posted January 17 The Photo > Sharpen effect was rewritten for Paint.NET v5.0 and several people have requested the old sharpen effect back. So, here it is: This is the "classic" (pre v5.0) version of Photo > Sharpen. Download SharpenClassic.zip Download this zip file to your desktop. Unzip it. Run the included Install_SharpenClassic batch file. After install, you should find the effect in the Effects > Photo menu under the name of "Sharpen Classic". By the way, there's no need to download from here as this plugin is now part of BoltBait's Plugin Pack. Source CodeLab script: Spoiler // Name: Sharpen Classic // Submenu: Photo // Author: BoltBait // Title: BoltBait's Sharpen Classic v1.0 // Version: 1.0 // Desc: Sharpen without GPU acceleration // Keywords: sharpen // URL: https://BoltBait.com/pdn // Help: Sharpen Classic v1.0\nUI Copyright ©2023 by BoltBait\nSharpen algorithm Copyright ©2013 by Rick Brewster\nAll rights reserved. #region UICode IntSliderControl Amount1 = 2; // [1,20] Sharpen Amount #endregion SharpenEffect sharpenEffect = new SharpenEffect(); PropertyCollection sharpenProps; protected override void OnDispose(bool disposing) { if (disposing) { sharpenEffect?.Dispose(); sharpenEffect = null; } base.OnDispose(disposing); } void PreRender(Surface dst, Surface src) { sharpenEffect.EnvironmentParameters = EnvironmentParameters; sharpenProps = sharpenEffect.CreatePropertyCollection(); PropertyBasedEffectConfigToken sharpenParameters = new PropertyBasedEffectConfigToken(sharpenProps); sharpenParameters.SetPropertyValue(SharpenEffect.PropertyNames.Amount, Amount1); sharpenEffect.SetRenderInfo(sharpenParameters, new RenderArgs(dst), new RenderArgs(src)); } void Render(Surface dst, Surface src, Rectangle rect) { sharpenEffect.Render(new Rectangle[1] {rect},0,1); } Enjoy. 👍 1 3 Quote Download: BoltBait's Plugin Pack | CodeLab | and a Free Computer Dominos Game Link to comment Share on other sites More sharing options...
ISRM Posted February 23 Share Posted February 23 I have been using Paint.net for editing the 8000+ images for the Slide Rule Museum and for publishing over 35 image based books on Amazon. The recent update on sharpening text and images is useless. Thank you for bringing back the previous version. It was easy to install. Maybe someone needs to tell me the correct settings on the new sharpen, but I will stay with the easy version. Thank you! https://sliderulemuseum.com 2 Quote Link to comment Share on other sites More sharing options...
Sidecar Bob Posted August 27 Share Posted August 27 Thank you very much for making this available. I have been struggling to get the new version way too long. Now I feel dumb for not looking for it sooner. Quote 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.