질문하기질문하기
 

답변됨C#.net

  • 2009년 7월 3일 금요일 오전 8:34shraddhak99 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Since each pixel of an image is stored as byte......... how can we retrieve/read each byte and do some operation on it....?

    And  can we store image (pixels) in binary form (bytes) in an array...?


    if anybody knows please provide the code.

답변

  • 2009년 7월 3일 금요일 오후 6:00litdev답변자사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Are you on the right forum, this is SmallBasic only?  Judging by your title C#.net, you might try a C# forum.

    If you are using SB, then color = GraphicsWindow.GetPixel(x,y) and GraphicsWindow.SetPixel(x,y,color), where color is an RGB byte (e.g. ffffff for white) may be used to manipulate the graphics window, but not an image that is not currently displayed.   You would have to display an image first (graphicsWindow.DrawImage or GraphicsWindow.DrawResizedImage) then manipulate the display directly, not the image.

모든 응답

  • 2009년 7월 3일 금요일 오후 6:00litdev답변자사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Are you on the right forum, this is SmallBasic only?  Judging by your title C#.net, you might try a C# forum.

    If you are using SB, then color = GraphicsWindow.GetPixel(x,y) and GraphicsWindow.SetPixel(x,y,color), where color is an RGB byte (e.g. ffffff for white) may be used to manipulate the graphics window, but not an image that is not currently displayed.   You would have to display an image first (graphicsWindow.DrawImage or GraphicsWindow.DrawResizedImage) then manipulate the display directly, not the image.