Back to FabImage Library website

You are here: Start » Function Reference » All Functions » Image Basics » FisFilter_AccessImage

FisFilter_AccessImage


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: FIL.h
Namespace: fis
Module: FoundationLite

Returns individual fields of an image.

Syntax

void fis::FisFilter_AccessImage
(
	const fil::Image& inImage,
	int& outWidth,
	int& outHeight,
	int& outDepth,
	fil::PlainType::Type& outType,
	int& outPixelSize,
	int& outPitch
)

Parameters

Name Type Default Description
Input value inImage const Image& Input image
Output value outWidth int& Output image width
Output value outHeight int& Output image height
Output value outDepth int& Output number of image color channels
Output value outType PlainType::Type& Output pixel format
Output value outPixelSize int& Output pixel size in bytes
Output value outPitch int& Length of images pixel line with padding