Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8555043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:01:41+00:00 2026-06-11T15:01:41+00:00

How can I draw a rectangle towards the top of the application in java

  • 0

How can I draw a rectangle towards the top of the application in java ? Normally the drawRect method draws towards the bottom I tried to use a negative number but this would not work

Graphics g = p.getGraphics();
g.fillRect(50, 200,50,100);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:01:43+00:00Added an answer on June 11, 2026 at 3:01 pm

    In rectangles, the X and Y coordinates represent the top left corner. The length and width then draw away from the defining point. Your example draws a rectangle with the top left corner at 50,200 and with a width of 50 and a hight of 100, both away from those points in a positive direction. If you wanted a rectangle with 50,200 representing the lower left corner, simply subtract the height from that y coordinate (200), and use that as the starting y:

    Graphics g = p.getGraphics();
    g.fillRect(50, 100, 50, 100);
    

    To address your examples, try something like this (I’ll just use rectangle objects rather than
    actually filling the graphics):

    int baseline = 200;
    Rectangle rect1 = new Rectangle(50, baseline - 100, 50, 100);
    Rectangle rect2 = new Rectangle(150, baseline - 50, 50, 50);
    Rectangle rect3 = new Rectangle(250, baseline - 80, 50, 80);
    

    After filling rectangles with these dimensions on the graphics object, you’ll have three
    rectangles with a width of 50 each, spaced 50 apart, with the bottom all on the y=200 line.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I draw a rectangle on an my wx.StaticBitmap image called bitmap_1 using
How can I draw a rectangle that have a black border and white background?
In Visual studio I can draw 13 different application-icons in different resolutions and color
I am trying to draw rectangle on top of image and I am having
I'm creating an application overlay via Direct3D hooking, however I can't draw any text.
Can I draw rectangle with text in EditText? The text in rectangle should be
I can make a obj to use the canvas to draw like this: MyObj.myDiv
On iOS, we can draw a line in drawRect using CGContextRef context = UIGraphicsGetCurrentContext();
I want to draw an rectangle and can change the rectangle's position and size
Possible Duplicate: How to draw a rectangle on a java applet using mouse drag

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.