- Joined
- Sep 7, 2008
- Messages
- 320
JASS:
function CreateImageEx takes string S, real SizeX, real SizeY, real PosX, real PosY, real PosZ, boolean Show returns image
local image i = CreateImage(S, SizeX, SizeY, 0, PosX - (SizeX / 2), PosY - (SizeY / 2), PosZ, 0, 0, 0, 2) // image type indicator
call SetImageRenderAlways(i, true)
call ShowImage(i, Show)
return i
endfunction
Im using this function to create image but it crate ugly border too Any1 can help me to fix this THx