 Autodocs Libraries:
graphics.library AddAnimOb AddBob AddFont AddVSprite AllocBitMap AllocDBufInfo AllocRaster AllocSpriteDataA AndRectRegion AndRegionRegion Animate AreaCircle AreaDraw AreaEllipse AreaEnd AreaMove AskFont AskSoftStyle AttachPalExtra AttemptLockLayerRom BestModeIDA BitMapScale BltBitMap BltBitMapRastPort BltClear BltMaskBitMapRastPort BltPattern BltTemplate CBump CEND CINIT CMOVE CWAIT CalcIVG ChangeExtSpriteA ChangeSprite ChangeVPBitMap ClearEOL ClearRectRegion ClearRegion ClearScreen ClipBlit CloseFont CloseMonitor CoerceMode CopySBitMap DisownBlitter DisposeRegion DoCollision Draw DrawEllipse DrawGList EraseRect ExtendFont FindColor FindDisplayInfo Flood FontExtent FreeBitMap FreeColorMap FreeCopList FreeCprList FreeDBufInfo FreeGBuffers FreeRaster FreeSprite FreeSpriteData FreeVPortCopLists GetAPen GetBPen GetBitMapAttr GetColorMap GetDisplayInfoData GetDrMd GetExtSpriteA GetGBuffers GetOPen GetRGB32 GetRGB4 GetRPAttrA GetSprite GetVPModeID GfxAssociate GfxFree GfxLookUp GfxNew InitArea InitBitMap InitGMasks InitGels InitMasks InitRastPort InitTmpRas InitVPort InitView LoadRGB32 LoadRGB4 LoadView LockLayerRom MakeVPort ModeNotAvailable Move MoveSprite MrgCop NewRegion NextDisplayInfo ObtainBestPenA ObtainPen OpenFont OpenMonitor OrRectRegion OrRegionRegion OwnBlitter PolyDraw QBSBlit QBlit ReadPixel ReadPixelArray8 ReadPixelLine8 RectFill ReleasePen RemBob RemFont RemIBob RemVSprite ScalerDiv ScrollRaster ScrollRasterBF ScrollVPort SetABPenDrMd SetAPen SetBPen SetChipRev SetCollision SetDrMd SetFont SetMaxPen SetOPen SetOutlinePen SetRGB32 SetRGB32CM SetRGB4 SetRGB4CM SetRPAttrA SetRast SetSoftStyle SetWriteMask SortGList StripFont SyncSBitMap Text TextExtent TextFit TextLength UnlockLayerRom VBeamPos VideoControl WaitBOVP WaitBlit WaitTOF WriteChunkyPixels WritePixel WritePixelArray8 WritePixelLine8 XorRectRegion XorRegionRegion Include GuruMeditation
|
Docs » Autodocs » graphics.library » ReadPixelLine8
ReadPixelLine8 -- read the pen number value of a horizontal line of pixels starting at a specified x,y location and continuing right for count pixels. (V36)
count = ReadPixelLine8(rp,xstart,ystart,width,array,temprp) D0 A0 D0:16 D1:16 D2 A2 A1 LONG ReadPixelLine8(struct RastPort *, UWORD, UWORD, UWORD, UBYTE *, struct RastPort * );
For each pixel in a rectangular region, combine the bits from each of the bit-planes used to describe a particular RastPort into the pen number selector which that bit combination normally forms for the system hardware selection of pixel color.
rp - pointer to a RastPort structure (x,y) - a point in the RastPort width - count of horizontal pixels to read array - pointer to an array of UBYTEs from which to fetch the pixel data allocate at least (((width+15)>>4)<<4) bytes. temprp - temporary rastport (copy of rp with Layer set == NULL, temporary memory allocated for temprp->BitMap with Rows set == 1, temprp->BytesPerRow == (((width+15)>>4)<<1), and temporary memory allocated for temprp->BitMap->Planes[])
For each pixel in the array: Pen - (0..255) number at that position is returned count - the number of pixels read.
width must be non negative
ReadPixel(), <graphics/rastport.h>
|