14 #include <kApi/Data/kImage.x.h>
140 #define kImage_AttachT(kImage_image, TPtr_pixels, kType_pixelType, kSize_width, kSize_height, kSize_stride) \
141 xkImage_AttachT(kImage_image, TPtr_pixels, kType_pixelType, kSize_width, kSize_height, kSize_stride, sizeof(*TPtr_pixels))
174 obj->format = format;
255 #define kImage_SetPixelT(kImage_image, kSize_x, kSize_y, TPtr_pixel) \
256 xkImage_SetPixelT(kImage_image, kSize_x, kSize_y, TPtr_pixel, sizeof(*TPtr_pixel))
289 #define kImage_PixelT(kImage_image, kSize_x, kSize_y, TPtr_pixel) \
290 xkImage_PixelT(kImage_image, kSize_x, kSize_y, TPtr_pixel, sizeof(*TPtr_pixel))
307 #define kImage_SetAsT(kImage_image, kSize_x, kSize_y, T_value, T) \
308 (kPointer_WriteAs(xkImage_AsT(kImage_image, kSize_x, kSize_y, sizeof(T)), T_value, T), (void)0)
324 #define kImage_AsT(kImage_image, kSize_x, kSize_y, T) \
325 kPointer_ReadAs(xkImage_AsT(kImage_image, kSize_x, kSize_y, sizeof(T)), T)
352 #define kImage_DataT(kImage_image, T) \
353 kCast(T*, xkImage_DataT(kImage_image, sizeof(T)))
389 #define kImage_DataAtT(kImage_image, kSSize_x, kSSize_y, T) \
390 kCast(T*, xkImage_DataAtT(kImage_image, kSSize_x, kSSize_y, sizeof(T)))
403 return obj->height * obj->stride;
420 # if !defined(K_FSS_912_DISABLE_BOUNDS_CHECK)
444 #define kImage_AtT(kImage_image, kSize_x, kSize_y, T) \
445 kCast(T*, xkImage_AtT(kImage_image, kSize_x, kSize_y, sizeof(T)))
460 # if !defined(K_FSS_912_DISABLE_BOUNDS_CHECK)
482 #define kImage_RowAtT(kImage_image, kSize_y, T) \
483 kCast(T*, xkImage_RowAtT(kImage_image, kSize_y, sizeof(T)))
496 return obj->pixelType;
510 return obj->pixelSize;
554 return obj->width * obj->height;
kStatus kImage_Assign(kImage image, kImage source)
Copies a given source image into this image.
kStatus kImage_SetPixel(kImage image, kSize x, kSize y, const void *pixel)
Sets the value of a pixel.
kStatus kImage_Pixel(kImage image, kSize x, kSize y, void *pixel)
Gets the value of a pixel.
void * kImage_RowAt(kImage image, kSize y)
Returns a pointer to the specified row in the pixel buffer.
Definition: kImage.h:458
kPixelFormat kImage_PixelFormat(kImage image)
Gets the optional pixel format descriptor associated with this image.
Definition: kImage.h:186
void * kImage_Data(kImage image)
Returns a pointer to the first row in the pixel buffer.
Definition: kImage.h:334
kSize kImage_Area(kImage image)
Returns the area of the image, in pixels.
Definition: kImage.h:550
kSize kImage_PixelSize(kImage image)
Returns the pixel size.
Definition: kImage.h:506
Represents an unsigned integer that can store a pointer address.
Abstract base class for memory allocator types.
kStatus kImage_Construct(kImage *image, kType pixelType, kSize width, kSize height, kAlloc allocator)
Constructs a kImage object.
#define kInlineFx(TYPE)
Inline method declaration helper.
Definition: kApiDef.h:26
void * kImage_DataAt(kImage image, kSSize x, kSSize y)
Calculates an address relative to the start of the pixel buffer.
Definition: kImage.h:366
Represents a single unit (byte) in a UTF-8 character.
kStatus kImage_Import(kImage *image, const kChar *fileName, kAlloc allocator)
Loads an image from file.
kStatus kImage_Export(kImage image, const kChar *fileName)
Saves an image to file.
kSize kImage_DataSize(kImage image)
Reports the size, in bytes, of the pixel buffer.
Definition: kImage.h:399
Represents a signed integer that can store a pointer address.
void * kImage_At(kImage image, kSize x, kSize y)
Returns a pointer to the specified pixel in the pixel buffer.
Definition: kImage.h:418
kStatus kImage_Attach(kImage image, void *pixels, kType pixelType, kSize width, kSize height, kSize stride)
Attaches the image to an external pixel buffer.
kStatus kImage_SetCfa(kImage image, kCfa cfa)
Sets the color filter array type associated with this image.
Definition: kImage.h:201
#define kObj(TypeName_T, T_object)
Declares a local "obj" (this-pointer) variable and initializes it from a type-checked object handle...
Definition: kApiDef.h:2858
Core Zen type declarations.
void * kPointer_ByteOffset(const void *pointer, kSSize offset)
Calculates a pointer address from a base address and a byte offset.
Definition: kApiDef.h:278
kType kImage_PixelType(kImage image)
Returns the pixel type.
Definition: kImage.h:492
kStatus kImage_Allocate(kImage image, kType pixelType, kSize width, kSize height)
Reallocates the internal pixel buffer.
kSize kImage_Width(kImage image)
Returns the width of the image, in pixels.
Definition: kImage.h:520
Represents metadata about a type (class, interface, or value).
#define kAssert(EXPRESSION)
Aborts execution if EXPRESSION is kFALSE.
Definition: kApiDef.h:749
Represents a 2D collection of pixels.
#define kOK
Operation successful.
Definition: kApiDef.h:513
kCfa kImage_Cfa(kImage image)
Gets the color filter array type associated with this image.
Definition: kImage.h:217
Represents an error code.
kSize kImage_Height(kImage image)
Returns the height of the image, in pixels.
Definition: kImage.h:534
Image color filter array type.
kStatus kImage_Zero(kImage image)
Sets all pixel bits to zero.
kStatus kImage_SetPixelFormat(kImage image, kPixelFormat format)
Sets the optional pixel format descriptor associated with this image.
Definition: kImage.h:170
kSize kImage_Stride(kImage image)
Returns the size of an image row, including alignment padding bytes, in bytes.
Definition: kImage.h:564