CreateImageBJ

Parameters
filestring
sizereal
wherelocation
zOffsetreal
imageTypeinteger
comment
patch

1.18a

Source
Blizzard.j (raise an issue to discuss on Github or submit a PR)
return type
image
Source code
function CreateImageBJ takes string file, real size, location where, real zOffset, integer imageType returns image
    set bj_lastCreatedImage = CreateImage(file, size, size, size, GetLocationX(where), GetLocationY(where), zOffset, 0, 0, 0, imageType)
    return bj_lastCreatedImage
endfunction