Please help me with this java code. The program is not running the program onto the console. The program is supposed to display a t square fract import java.awt.image.*; import java.awt.Color; import java.io.*; import javax.imageio.*; public class Main { static final int DIMENSION = 1000; static BufferedImage image = new BufferedImage(DIMENSION, DIMENSION, BufferedImage.TYPE_INT_RGB); static final int WHITE = Color.WHITE.getRGB(); static final int BLACK = Color.BLACK.getRGB(); private static void drawSquare(int x, int y, int side) { if (side <= 0) return; else { int left = x - side/2; int top = y - side/2; int right = x + side/2; int bottom = y + side/2; for (int i = left; i < right; i++) for (int j = top; j < bottom; j++) { image.setRGB(i, j, BLACK); } drawSquare(left, top, side/2); drawSquare(left, bottom, side/2); drawSquare(right, top, side/2); drawSquare(right, bottom, side/2); } } public static void main (String[] args) throws IOException { for (int i = 0; i < DIMENSION; i++) for (int j = 0; j < DIMENSION; j++) { image.setRGB(i, j, WHITE); } drawSquare(DIMENSION/2, DIMENSION/2, DIMENSION/2); File imagefile = new File("tfractal.jpg"); ImageIO.write(image, "jpg", imagefile); }
Please help me with this java code. The
import java.awt.image.*;
import java.awt.Color;
import java.io.*;
import javax.imageio.*;
public class Main
{
static final int DIMENSION = 1000;
static BufferedImage image = new BufferedImage(DIMENSION, DIMENSION, BufferedImage.TYPE_INT_RGB);
static final int WHITE = Color.WHITE.getRGB();
static final int BLACK = Color.BLACK.getRGB();
private static void drawSquare(int x, int y, int side)
{
if (side <= 0)
return;
else
{
int left = x - side/2;
int top = y - side/2;
int right = x + side/2;
int bottom = y + side/2;
for (int i = left; i < right; i++)
for (int j = top; j < bottom; j++)
{
image.setRGB(i, j, BLACK);
}
drawSquare(left, top, side/2);
drawSquare(left, bottom, side/2);
drawSquare(right, top, side/2);
drawSquare(right, bottom, side/2);
}
}
public static void main (String[] args) throws IOException
{
for (int i = 0; i < DIMENSION; i++)
for (int j = 0; j < DIMENSION; j++)
{
image.setRGB(i, j, WHITE);
}
drawSquare(DIMENSION/2, DIMENSION/2, DIMENSION/2);
File imagefile = new File("tfractal.jpg");
ImageIO.write(image, "jpg", imagefile);
}
}
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 2 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)