Jcrueger

Results 3 comments of Jcrueger

Your stride is going to be 8,16,32 shapes are gonna be 80,40,20 and dimensions are gonna be how many Labels you have +5 which in your case looks to be...

I had this same issue running thru visual studio in debug mode. Building the solution and running the exe solved it for me.

I tried this out by changing the Parallel.for loops to regular for loops like this: ` for (int y = 0; y < bitmapData.Height; y++) { byte* row = (byte*)bitmapData.Scan0...