ID:2829301
 
Resolved
RenderIcon() kept the results of previous renders visible instead of clearing them, causing transparent pixels in the second image to show the previous image.
BYOND Version:515.1592
Operating System:Windows 10 Pro
Web Browser:Firefox 106.0
Applies to:Dream Seeker
Status: Resolved (515.1593)

This issue has been resolved.
Descriptive Problem Summary:
Every use of client.RenderIcon/ appearance refs just adds to the previous result.

Code Snippet (if applicable) to Reproduce Problem:
/mob/verb/give_me_your_appearance()
set name = "gimme"


// This looks fine
var/turf/T = loc
var/turf_icon = usr.client.RenderIcon(T.appearance)
usr << browse_rsc(turf_icon,"turf.png")
usr << browse("<html><body><img class='icon' src='turf.png'/></body></html>","window=first_use_window")


// The mob icon is now overlaid over the previous turf icon
var/our_icon = usr.client.RenderIcon(appearance)
usr << browse_rsc(our_icon,"mob.png")
usr << browse("<html><body><img class='icon' src='mob.png'/></body></html>","window=second_use_window")


// If there was third one it would be added on top of the mob+turf

// Also happens when just changing dir of single thing

// Same result when using this instead or client.RenderIcon
//var/app_ref = ref(appearance)
//world << "Displayed appearance ref: [app_ref]"
//usr << browse("<html><body><img class='icon' src='[app_ref]'/></body></html>","window=first_use_window")


Expected Results:
Turf image in window one
Mob image in window two

Actual Results:
Turf image in window one
Mob image on top of turf image in window two

Having the same issue, I've found no workarounds.
Lummox JR resolved issue with message:
RenderIcon() kept the results of previous renders visible instead of clearing them, causing transparent pixels in the second image to show the previous image.