Browse by Tags

All Tags » GDI+ (RSS)

Another Look at the Pixel-Plotting Tests

Thanks to codeimp's comment on my previous post, I went back to my pixel-plotting test app to add-in a LockBits method to see how it would stand up to the pure GDI+ methods. As it turns out, I found that a poorly-placed "End If" was causing...
Posted by MattWorden | with no comments
Filed under: ,

Interesting Pixel-Plotting Efficiency Test Results

I recently ran a little experiment to see which would be the fastest way to plot a bunch of single pixels using the methods available in the System.Drawing namespace. It turns out, for those who haven't looked, that there is no set-pixel type method...
Posted by MattWorden | 2 comment(s)
Filed under: ,

Making GDI+ Nimble

One thing that the GDI+ (System.Drawing namespace in VB.Net) system is *not* is overly quick. It does a great job of certain things required by a more general, modern OS-based drawing system -- fonts, alpha, lines & shapes, etc. But it isn't game...
Posted by MattWorden | 1 comment(s)
Filed under: ,