dpy Posted September 15, 2009 Posted September 15, 2009 (edited) Hi , Perspective Effect was completed! The perspective effect of this plugin is the same as it of photoshop as far as I tested this plugin . Of course you can use the conventional trapezoid transformation, too. If you find bug , please tell me. I will add this version to a set pack two weeks later. MENU Effects->Distort->Perspective Interface Ratio1-3 transform to perspective or trapezoid by three adjustment. scale 0.01-16.0 Vertical/Horizontal and Perspective/Trapezoid select vertical or horizontal. Example of Vertical:Normal how to use Example of Horizontal: Linked Ratio1 and Ratio2 Ratio2 is ignored. High Quality Please uncheck if you feels work is slow. Please check it after finishing resize. Download This is made by "Code Lab". Thank you , BoltBait. ver2.0 add perspective transform (03/05/'10) ver1.1 take Antialiasing(02/16/'10) ver beta only trapezoid transform (09/16/'09) Edited April 6, 2010 by dpy Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
someone93 Posted September 15, 2009 Posted September 15, 2009 Wow! :shock: This must be one of the best things since like...ever! Edit: And it's fast! Even with a 2000x1500 px image! :shock: Quote
Boude Posted September 15, 2009 Posted September 15, 2009 Very nice, you made a resizing algorithm and you managed to apply it, a thing I still have on my To-Do list. Quote History repeats itself, because nobody was paying attention the first time.
007 Nab Posted September 15, 2009 Posted September 15, 2009 Very nice plugin! Thank you for sharing it! Quote "pyrochild, you're my favorite person ever. We should go snowboarding some time."~ 007 Nab. Ish. PDN Gallery | I Made a Deviant Art!
dpy Posted September 16, 2009 Author Posted September 16, 2009 Thank you for comment. I am not a programmer and I do not know C # well . However , Thanks to "CodeLab" , I can create plugin which is necessary for me, and I am glad that you like my plugin. To Boude Thank you for Lesson of the other day . :wink: Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
Onemorelevel Posted September 16, 2009 Posted September 16, 2009 Im a little confused on what it does, does someone mind explaining it? Quote "Being calm can work wonders" ~My gallery~D: Iceberg Tutorial!
Ego Eram Reputo Posted September 17, 2009 Posted September 17, 2009 Think of the effect as squashing or stretching the height or width of the image. See the first image posted? The buildings look like they're leaning inwards at the top. The second image has corrected this by stretching the top of the image slightly. 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
dpy Posted September 17, 2009 Author Posted September 17, 2009 thank you , EER . BTW , I found my big mistake. This is not perspective! :oops: Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
kartracer Posted October 1, 2009 Posted October 1, 2009 Thank You very much !!! Have been hoping to find something like this. Thanks Again!! Kart Quote Kart Sig.
Goonfella Posted October 1, 2009 Posted October 1, 2009 Yes, excellent plug in. Just what was needed. Quote Please feel free to visit my Gallery on PDNFans And my Alternatives to PDN
dpy Posted October 2, 2009 Author Posted October 2, 2009 To kartracer , Goonfella I'm glad you like this plug-in. Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
Whizzy Posted October 2, 2009 Posted October 2, 2009 I have some of your effects now and love them, gonna try this one as well don't worry about your bad english, guess with your contribution to our creativity we all forgive you Quote
Neil Cassidy Posted October 3, 2009 Posted October 3, 2009 This is great dpy, thanks! It seems like you could add a real skew effect as well, thanks to the difference between "perspective" and "dpy perspective" that you mentioned above. That would be fantastic. There's already an effect that does this (called "octagonal/quad reshape/matte"), but it can be tricky to get the shape right every time. I always have to load up Paint when I need to do it. Quote Segment Image : Average Color (HSL) : Eigen Blur : []Cool, new forum!
dpy Posted October 3, 2009 Author Posted October 3, 2009 To Whizzy,Neil Cassidy you are welcome. although a fake perspective. Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
Lance McKnight Posted October 4, 2009 Posted October 4, 2009 I love this plugin! I was able to make this image using this plugin in tandem with Rotate/Zoom. Quote Officially retired from this forum. Have a nice day.
007 Nab Posted October 4, 2009 Posted October 4, 2009 Oh yeah - following that PSD TUT from a while ago- hah This plugin is made for it I always wanted to try that one out - I like your result Quote "pyrochild, you're my favorite person ever. We should go snowboarding some time."~ 007 Nab. Ish. PDN Gallery | I Made a Deviant Art!
Lance McKnight Posted December 22, 2009 Posted December 22, 2009 dpy, any way you can add anti-aliasing option? That would make all the edge smooth when running the plugin. Quote Officially retired from this forum. Have a nice day.
gregors Posted December 31, 2009 Posted December 31, 2009 Thanks for the Perspective (Beta) I've been looking for that distortion since I installed Paint.NET. Although I would prefer a graphic interface where the corners of a bounding box are moved to effectuate the perspective distortion I realize that such a plugin is an entirely different (and more difficult) development. This works just great! I do have corrections to the language and some other suggestions if you would like, (see image) Thanks again! /Gregors Quote /GregorS
dpy Posted January 4, 2010 Author Posted January 4, 2010 Lance and gregors Thank you for suggestions. I'd like to do so , but I can't do , because I'm Beginner of programing. About anti-aliasing pyjo's Basic Antialiasis so good. When I was creating Perspective Effect , I tried to add it . but , I could not work it :oops: About UI All my plugins were created by code Lab. To change UI , I must study Visual C# .But I have no time to study it now. :oops: However , I'd like to do update , someday Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
Boude Posted January 6, 2010 Posted January 6, 2010 @dpy: anti-aliasing is controlled blurring, and blurring is quite easy, it's mixing colours. So an average blur with a radius of 1 might look something like this: CurrentPixel.R=(src[x+1,y+1].R+src[x,y+1].R+src[x-1,y+1].R+src[x+1,y].R+src[x,y].R+src[x-1,y].R+src[x+1,y-1].R+src[x,y-1].R+src[x-1,y-1].R)/9; //repeat for Green, Blue and Alpha A more complicated blur would consider pixel further away as less important, so a your CurrentPixel would have less information from src[x+5,y+5] then src[x+1,y]. For a more controlled blur you could use the alpha value to search for edges, for example: if (Math.Abs(src[x,y]-src[x-1,y])>100) //Math.Abs() is a method to make sure your value is positive, it convert negative numbers to positive numbers, which in this case comes in handy. { //Blur code } Quote History repeats itself, because nobody was paying attention the first time.
dpy Posted January 9, 2010 Author Posted January 9, 2010 @dpy: anti-aliasing is controlled blurring, and blurring is quite easy, it's mixing colours. Wow ! it seems to be easy and simple !Thank you , Boude But , i am so busy now I'll try it later. Boude , Can I ask you to update for anti-aliasing? If you are OK , change UI too. What do you think? Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
Boude Posted January 10, 2010 Posted January 10, 2010 Thanks, I would be honoured. I already have a simple blur working so I guess this should be do-able. Quote History repeats itself, because nobody was paying attention the first time.
dpy Posted January 12, 2010 Author Posted January 12, 2010 Thanks, I would be honoured. I already have a simple blur working so I guess this should be do-able. I am looking forward to up date by you Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
dpy Posted February 13, 2010 Author Posted February 13, 2010 up date. I added anti-aliasing by bilinear. please test. Boude , always thank you. this time , I don't use your idea , but , I used your idea to create other plugin . :wink: Quote my Paint.net site(Japanese)|my Paint.net youtube(Strange English/Japanese)
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.