I have an array of int pixels in my c# program and i want to convert it into an image. The problem is i am converting java source code for a program into equivalent c# code. In java the line reads which displays the array of int pixels into image.
Image output = createImage(new MemoryImageSour ce(width, height, orig, 0, width));
can someone tell me the c# equivalent? Here orig is the array of int pixels. I searched the...