icon/proc/Outline(color,strong) if(!findtext(color,"#")) color="#000000FF" var{w;h;icon/i=new(src)} i.DrawBox(null,1,1,i.Width(),i.Height()) for(w=Width(), w>0, w--) sleep(-1) for(h=Height(), h>0, h--) sleep(-1) if(!GetPixel(w,h) && ((strong && (GetPixel(w-1,h-1)||GetPixel(w+1,h-1)||GetPixel(w-1,h+1)||GetPixel(w+1,h+1))) || (GetPixel(w-1,h)||GetPixel(w+1,h)||GetPixel(w,h-1)||GetPixel(w,h+1)))) i.DrawBox(color,w,h) return i
icon/proc/InnerOutline(color) if(!findtext(color,"#")) color="#000000FF" var{w;h;icon/i=new(src)} i.DrawBox(null,1,1,i.Width(),i.Height()) for(w=Width(), w>0, w--) for(h=Height(), h>0, h--) if(GetPixel(w,h) && (!GetPixel(w-1,h) || !GetPixel(w+1,h) || !GetPixel(w,h-1) || !GetPixel(w,h+1))) i.DrawBox(color,w,h) return i
|