perl_fu_perlotine << INDEX >> perl_fu_pixelmap

perl_fu_pixelgen (19991115)

NAME
perl_fu_pixelgen - Generate the pixels of an image by expressions (in PDL)
SYNOPSIS
image = perl_fu_pixelgen (run_mode,width,height,type,expression)
DESCRIPTION
DESCRIPTION Not yet written yet, sorry... $p The source pixels (1..4 bytes per pixel, depending on format). Use like this: $p*3.5 # the return value is the result $P The source pixels without alpha. Use it like this: $P *= 0.5; $p # modify $P inplace, return also modified $p as result $x A two-dimensional vector containing the x-coordinates of each point in the current tile: $x = (zeroes(long,$w)->xvals + $destination->x)->dummy(1,$h)->sever; $y A two-dimensional vector containing the y-coordinates of each point in the current tile: $y = (zeroes(long,$h)->xvals + $destination->y)->dummy(0,$w)->sever; $bpp The bytes per pixel value of the destination area.
MENUPATH
<Toolbox>/Xtns/Render/Pixelgenerator...
INPUT ARGUMENTS
TYPENAMEDESCRIPTION
INT32run_modeInteractive, [non-interactive]
INT32widthThe width of the new image to generate
INT32heightThe height of the new image to generate
INT32typeThe type of the layer to create (same as gimp_layer_new.type)
STRINGexpressionThe perl expression to use
RETURN VALUES
TYPENAMEDESCRIPTION
IMAGEimageThe resulting image
SOME SYNTAX ALTERNATIVES
image = perl_fu_pixelgen (width,height,type,expression)
image = pixelgen Layer (width,height,type,expression)
image = pixelgen Image (width,height,type,expression)
image = pixelgen Layer (width,height,type,expression)
image = pixelgen Image (width,height,type,expression)
image = pixelgen Channel (width,height,type,expression)
INSTALLATION PATH
/opt/lib/gimp/1.2/plug-ins/pixelmap
AUTHOR
Marc Lehmann
(c)19991115 Marc Lehmann <pcg@goof.com>


This page was created by gimpdoc, written by Marc Lehmann <pcg@goof.com>