• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

CreateImage

Status
Not open for further replies.
Level 8
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 :eekani: Any1 can help me to fix this :goblin_sleep: THx

attachment.php
 

Attachments

  • Untitled.jpg
    Untitled.jpg
    128.1 KB · Views: 391
Status
Not open for further replies.
Top