Re: How to handle planar raw images ?
Re: How to handle planar raw images ?
- Subject: Re: How to handle planar raw images ?
- From: "Dennis C. De Mars" <email@hidden>
- Date: Sat, 18 Aug 2001 10:53:38 -0700
I need to add a couple of comments to what I just posted:
on 8/18/01 10:37 AM, Dennis C. De Mars at email@hidden wrote:
>
pixelsWide: width
>
pixelsHigh: height
For "width" and "height," substitute the number of pixels wide and high your
image is.
>
redPlane = (unsigned char*)[theData - bytes];
sorry for the typo, that dash shouldn't be there; this should be:
redPlane = (unsigned char*)[theData bytes];
- Dennis D.