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

  • Home
  • SEARCH
  • 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 6867453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:18:42+00:00 2026-05-27T03:18:42+00:00

I have to do a Java program that contains a panel with an image

  • 0

I have to do a Java program that contains a panel with an image in it. After the user clicks twice on the image, the program must increase the contrast of the part of the image that is enclosed between these two points and decrease the rest of it. I need some general instructions on how to do this.

I know that I will have to use Java 2D and I know how to increase or decrease the contrast of the image. However, I am not sure how can I separate the image in two parts.

Thanks in advance everybody who answers 🙂

  • 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-05-27T03:18:43+00:00Added an answer on May 27, 2026 at 3:18 am

    You can use this piece of code. It splits the image into cells and it does the job very well 🙂

    public static BufferedImage[] splitImage(BufferedImage img, int cols, int rows) {
        int wCell = img.getWidth()/cols;
        int hCell = img.getHeight()/rows;
        int imageBlockIndex = 0;
        BufferedImage imgs[] = new BufferedImage[wCell *hCell ];
        for(int y = 0; y < rows; y++) {
            for(int x = 0; x < cols; x++) {
                imgs[imageBlockIndex] = new BufferedImage(wCell , hCell , img.getType());
                // Draw only one portion/cell of the image
                Graphics2D g = imgs[imageBlockIndex].createGraphics();
                g.drawImage(img, 0, 0, wCell , hCell , wCell *x, 
                                        hCell *y, wCell *x+wCell , hCell *y+hCell , null);
                g.dispose();
                imageBlockIndex++;
            }
        }
        return imgs;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question contains java and ruby. I have a java program that I make
I have a Java program that loads thirdparty class files (classes I did not
We have a java program that requires a large amount of heap space -
I have a Java program that runs many small simulations. It runs a genetic
I have a java program that will work with a variety of Java Beans.
I have a Java program that executes from Spring Qquartz every 20 seconds. Sometimes
I have a Java program that is launched by a batch file with a
I have a Java program that generates Java classes for my application. Basically it
I have a Java program that opens a file using the RandomAccessFile class. I'd
Let's say I have a java program that makes an HTTP request on a

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.