ID:1026107
 
Keywords: bad, graphic, problem
(See the best response by LordAndrew.)
Code:


Problem description: My problem is that when i put my game up(not public only for me and bro to test) his graphics are kinda bad compared to my computer which has the file. Any way to fix that?

There are a few factors that could be causing this.

Does the issue persist if you toggle between software and hardware rendering in the pager options?

Is the viewport set to Stretch to Fit?
This problem is also happening to me. I am working on a game and when I use browse (after using browse_rsc of course) the graphics for me come out as they should however for my brother on his computer they come out horrible.

I have tried toggling between software and hardware rendering and there is no change. I have also changed the map view from stretch to fit but again no change (I don't think this has anything to do with it since for me it is only the images that are viewed in the browser).
In response to U_CANT_C_ME1
Best response
Ah. The only thing I could think of that would cause the graphics to look different in the browser is if you're resizing the images in the <img> tag (like <img src="whatever.png" width="64" height="64">), which would cause them to appear blurry due to the interpolation Internet Explorer applies to them. To get around this, you can resize the image before you use browse_rsc() instead of doing it in the <img> tag.
Thanks LordAndrew, it was exactly as you said. All I did was re-size the icon before using browse_rsc and they come out nicely on both computers. :D