Hi.
I encountered some problem using dxDrawImage. I have a simple user icon drawn on the screen and for some reason there is a stripe at the top of the image which is invisible in photoshop or using guiCreateStaticImage. Side to side comparison: dxImage vs guiStaticImage
Code:
guiCreateStaticImage(300, 100, 200, 200, "images/icon_user.png", false)
addEventHandler("onClientRender", root, function()
dxDrawImage(300, 350, 200, 200, "images/icon_user.png")
end)
Any idea what could it be?