Possible Duplicate:
Image conversion in OpenCV C#

WeightedImg.Bitmap.SetPixel(x, y,Color.FromArgb((int)Math.Ceiling(color * R), (int)Math.Ceiling(color * G),(int)Math.Ceiling(color * B)));

this line of code produces the exception above .. any one knows the solution ? and what does the exception mean? thanks a lot

link|improve this question

33% accept rate
1  
Can you please post the exception as well? – gyurisc Aug 23 '11 at 13:15
1  
your problem is probably in the part you haven't included in your question, where you assign the result of the expression to a variable. Try checking this question – Paolo Falabella Aug 23 '11 at 13:21
1  
try splitting that line up into more lines using more variables and debug to see if anything peculiar shows up there – mtijn Aug 23 '11 at 13:24
the exception in the title .. unrecognized or unsupported array type – Omar Osama Aug 23 '11 at 14:34
feedback

closed as exact duplicate by Jeff Atwood Sep 15 '11 at 6:19

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

You need to set the alphachannel, as in *A*rgb The alphachannel set's the transparency of the color

link|improve this answer
no, that is not the problem .. :) – Omar Osama Aug 23 '11 at 15:12
feedback

you really need to give us more to work on. how are those variables defined? what's the exception and stack trace print? this equivalent of what you're posting, for example, works as a charm on my machine

        Bitmap b = new Bitmap("somefile.bmp");
        double color = 1, R = 2, G = 3, B = 4;
        int x = 1, y = 1;
        b.SetPixel(x, y, Color.FromArgb((int)Math.Ceiling(color * R), (int)Math.Ceiling(color * G), (int)Math.Ceiling(color * B)));
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.