silverhammer Posted January 16, 2009 Share Posted January 16, 2009 (edited) This is my first plugin and though it's pretty basic (and might have been done before), I think it's useful. Essentially it takes a black and white image and converts it to a "black and transparent" image. The whole point is that if you have a sketch, applying this plugin will make all of the white parts transparent so that you can color it, add a background, whatever. Download the zipped DLL >> Isolate Lineart Edited July 4, 2018 by toe_head2001 Fixed broken Postimg images Quote My deviantART My Pictorium Gallery My ImageShack Link to comment Share on other sites More sharing options...
ShK_828 Posted January 16, 2009 Share Posted January 16, 2009 that is a pretty simple but effective plugin. Quote Link to comment Share on other sites More sharing options...
Simon Brown Posted January 16, 2009 Share Posted January 16, 2009 A similar plugin already exists: viewtopic.php?f=16&t=25155 Quote Link to comment Share on other sites More sharing options...
Fisherman's Friend Posted January 16, 2009 Share Posted January 16, 2009 A similar plugin already exists: viewtopic.php?f=16&t=25155 At the moment I'm not sure if you are right and both plugins really work the same. Silverhammer, I like it, but why is it in "Adjustments"? I'd rather put it in "Artistic" or "Stylize". It's definately no adjustment - like Brightness/Contrast. Quote Link to comment Share on other sites More sharing options...
silverhammer Posted January 16, 2009 Author Share Posted January 16, 2009 Perhaps that other plugin could achieve the same affect, though you'd have to tinker with a bunch of options first. I guess if you want something simple then mine is more streamlined to use. I put it in adjustments because my plugin is essentially a "Black and Transparent" plugin so I think it makes sense to put it in the same menu as the "Black and White" adjustment. Quote My deviantART My Pictorium Gallery My ImageShack Link to comment Share on other sites More sharing options...
oma Posted February 2, 2009 Share Posted February 2, 2009 I meant to tell you that I've been using this plug in quite a bit lately and its great. No fiddling to get my line art up on the screen any longer. thanks for the plugin. ciao OMA Quote My Deviant Art Gallery Oma's Paint.Net gallery Link to comment Share on other sites More sharing options...
salu Posted February 8, 2009 Share Posted February 8, 2009 love the plugin 8) it worked really well with images too. Quote Deviant Art page of cookies I = She Link to comment Share on other sites More sharing options...
Tabou Posted July 3, 2009 Share Posted July 3, 2009 Quick, simple and yet so useful! Thanks. Quote Link to comment Share on other sites More sharing options...
nemo Posted October 20, 2009 Share Posted October 20, 2009 i came across this ages ago but forgot to download it. This will come in perfect for the majority of my pieces. Thankyou Quote Link to comment Share on other sites More sharing options...
Briamoth Posted December 12, 2009 Share Posted December 12, 2009 Is it possible to add color to the image in different areas after using the plugin? Quote Link to comment Share on other sites More sharing options...
Ego Eram Reputo Posted December 13, 2009 Share Posted December 13, 2009 Is it possible to add color to the image in different areas after using the plugin? Of course, that's what Paint.NET is for. However that is not the function of the plugin. Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker Link to comment Share on other sites More sharing options...
Briamoth Posted December 13, 2009 Share Posted December 13, 2009 Is it possible to add color to the image in different areas after using the plugin? Of course, that's what Paint.NET is for. However that is not the function of the plugin. I know you can but when I try to it only fills with one color. I was wondering if you could add color to different parts as in coloring the image. If it matters I'm trying to color a picture that I drew. Quote Link to comment Share on other sites More sharing options...
Ego Eram Reputo Posted December 13, 2009 Share Posted December 13, 2009 You need to define selections/areas first and fill those with color. Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker Link to comment Share on other sites More sharing options...
silverhammer Posted December 29, 2009 Author Share Posted December 29, 2009 I'm actually trying to make a new version of this plugin currently. The problem is that I currently only know how to use Code Lab and I need to use HSL values, which Code Lab can't access directly to my knowledge. Can anyone help me out here? Quote My deviantART My Pictorium Gallery My ImageShack Link to comment Share on other sites More sharing options...
APShredder Posted December 30, 2009 Share Posted December 30, 2009 To access HSV colors do something like this: void Render(Surface dst, Surface src, Rectangle rect) { // Delete any of these lines you don't need Rectangle selection = this.EnvironmentParameters.GetSelection(src.Bounds).GetBoundsInt(); long CenterX = (long)(((selection.Right - selection.Left) / 2)+selection.Left); long CenterY = (long)(((selection.Bottom - selection.Top) / 2)+selection.Top); ColorBgra PrimaryColor = (ColorBgra)EnvironmentParameters.PrimaryColor; ColorBgra SecondaryColor = (ColorBgra)EnvironmentParameters.SecondaryColor; int BrushWidth = (int)EnvironmentParameters.BrushWidth; ColorBgra CurrentPixel; for (int y = rect.Top; y < rect.Bottom; y++) { for (int x = rect.Left; x < rect.Right; x++) { CurrentPixel = src[x,y]; Color col = CurrentPixel.ToColor(); // These are the important lines! HsvColor hsv = HsvColor.FromColor(col); // dst[x,y] = CurrentPixel; } } } Color col = CurrentPixel.ToColor(); // These are the important lines! HsvColor hsv = HsvColor.FromColor(col); // Quote BlendModes Plus | Dissolve | Extract Color Link to comment Share on other sites More sharing options...
Katastrophies Posted January 7, 2010 Share Posted January 7, 2010 This is just about the best plugin I've ever seen! I have an entire folder devoted to lineart I get from Deviantart to use in PdN as a digital colouring book for my little sister (and occasionally myself) when I babysit her. She's always getting frustrated when there are little white specks around the edges because they make the background white. I cannot tell you how much of a lifesaver this is! This should also come in real handy when it comes to importing my own lineart. Huzzah for Silverhammer! -Katastrophies :-D Quote Link to comment Share on other sites More sharing options...
Thunderjaw Posted April 26, 2011 Share Posted April 26, 2011 Hello, I'm new to this... I have downloaded the plugin and followed the steps above... but I don;t know what to do from here, and I can't find anything in the tutorials on "coloring a sketch". How would you add color to the above picture from this point? Thanks Quote Link to comment Share on other sites More sharing options...
Ego Eram Reputo Posted April 27, 2011 Share Posted April 27, 2011 Press F1 in Paint.net to access the online help files. Look specifically for the Drawing tools & Fill tools under the Tools Window. Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker Link to comment Share on other sites More sharing options...
sleephe Posted July 1, 2011 Share Posted July 1, 2011 I have installed the plugin, but I can't find it or use it. Can anyone tell me? Quote Link to comment Share on other sites More sharing options...
Ego Eram Reputo Posted July 2, 2011 Share Posted July 2, 2011 Isolate Lineart is found under the Adjustments menu. Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker Link to comment Share on other sites More sharing options...
DarkWolfBlade Posted July 26, 2011 Share Posted July 26, 2011 (edited) Plugin works great. Edited July 26, 2011 by DarkWolfBlade Quote Link to comment Share on other sites More sharing options...
hamwizard Posted December 25, 2015 Share Posted December 25, 2015 The example pics are dead, does anyone have any shots of what this actually does? Quote Link to comment Share on other sites More sharing options...
toe_head2001 Posted December 25, 2015 Share Posted December 25, 2015 The example pics are dead, does anyone have any shots of what this actually does? https://web.archive.org/web/20100706173328/http://forums.getpaint.net/index.php?/topic/13535-isolate-lineart/ 1 Quote My Gallery | My Plugin Pack Layman's Guide to CodeLab Link to comment Share on other sites More sharing options...
hamwizard Posted December 25, 2015 Share Posted December 25, 2015 Hey thanks, appreciate it - interesting plugin! Quote Link to comment Share on other sites More sharing options...
Ego Eram Reputo Posted December 25, 2015 Share Posted December 25, 2015 Images restored. 1 Quote ebook: Mastering Paint.NET | resources: Plugin Index | Stereogram Tut | proud supporter of Codelab plugins: EER's Plugin Pack | Planetoid | StickMan | WhichSymbol+ | Dr Scott's Markup Renderer | CSV Filetype | dwarf horde plugins: Plugin Browser | ShapeMaker 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.