SetImageColumn


Sets pixel values in a single entire column of an image.

Applications:Allows for creating images from calculated real values. It is significantly slower than SetImageRow.

Syntax

C++
Python
 
def SetImageColumn(
	ioImage: Image,
	inColumnIndex: int,
	inValues: list[float],
	/,
	*,
	inChannelIndex: int | None = None
)
-> None

Parameters

Name Type Range Default Description
Input will be modified ioImage Image
Input value inChannelIndex int | None 0 - 3 None Selects a channel of the input image
Input value inColumnIndex int 0 - 65535 Selects a column of the input image
Input value inValues list[float] New values for specified column