Jump to content

Hopps Outline text


ukhoppa

Recommended Posts

Heres an outline text i made for paint.

 

void hoppsoutline(Graphics2D gfx, String text,int x, int y,Color colout, Color coltxt)
{
		
	gfx.setColor(colout);
	gfx.drawString(text, x - 1, y);			
	gfx.drawString(text, x + 1, y);			
	gfx.drawString(text, x , y - 1);		
	gfx.drawString(text, x , y + 1);
	gfx.setColor(coltxt);
	gfx.drawString(text, x , y);
}

 public void onPaint(Graphics2D gfx)
{
        hoppsoutline(gfx, "Auto Walker" , 10, 60, Color.RED, Color.WHITE);
}

https://imgur.com/a/v15V6Y4

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...