penua Posted July 7, 2008 Share Posted July 7, 2008 Hello, I have some trouble on my image programming with C#, because the process speed of c# is too slow. so, i wanna know is paint.net using pure .net code(what language?) developed? Quote Link to comment Share on other sites More sharing options...
harold Posted July 7, 2008 Share Posted July 7, 2008 C# is not too slow, it depends on how you use it If you use GetPixel and/or SetPixel, stop doing that immediately. Instead, just lock the bitmap once and use unsafe code to change the pixel data. Don't forget to unlock when you're done. I really doubt that you're doing that now, since it isn't slow at all PDN is pure .NET (except the shell integration and installer, right?) Quote I would write plugins, if I knew what kind of plugins were needed.. Link to comment Share on other sites More sharing options...
BoltBait Posted July 7, 2008 Share Posted July 7, 2008 Also, once you lock the bitmap, you can use GDI+ Quote Download: BoltBait's Plugin Pack | CodeLab | and a Free Computer Dominos Game 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.