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 8394173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:59:19+00:00 2026-06-09T19:59:19+00:00

I’m creating a string out of three smaller strings which I read in from

  • 0

I’m creating a string out of three smaller strings which I read in from three different text-files and then write the string into an image. I’d like to change the color for the paragraph in the middle of a created image. I can create the image with its three paragraphes, which looks like this.

But how could I change the font color of the paragraph in the middle to the color red?

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.font.FontRenderContext;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;

import javax.imageio.ImageIO;




public class writeToImage {

/**
 * @param args
 */
public static void main(String[] args) {
    // TODO Auto-generated method stub

    int imgnumber = 0;

      FileInputStream fstream1 = null;
      FileInputStream fstream2 = null;
      FileInputStream fstream3 = null;
    try {
        fstream1 = new FileInputStream("vorlauf.txt");
        fstream2 = new FileInputStream("mitte.txt");
        fstream3 = new FileInputStream("nachlauf.txt");

    } catch (FileNotFoundException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
      // Get the object of DataInputStream
      DataInputStream vorlauf = new DataInputStream(fstream1);
      BufferedReader br1 = new BufferedReader(new InputStreamReader(vorlauf));

      DataInputStream mitte = new DataInputStream(fstream2);
      BufferedReader br2 = new BufferedReader(new InputStreamReader(mitte));

      DataInputStream nachlauf = new DataInputStream(fstream3);
      BufferedReader br3 = new BufferedReader(new InputStreamReader(nachlauf));

      String vorlauf1   = null;
      String mitte1 = null;
      String nachlauf1  = null;


        try {
            while ((vorlauf1 = br1.readLine()) != null && (mitte1 = br2.readLine()) != null && (nachlauf1 = br3.readLine()) != null){
            try {

                String vorlaufdiv = StringDivider(vorlauf1);
                String mittediv = StringDivider(mitte1);
                String nachlaufdiv = StringDivider(nachlauf1);


                String totalPassage = vorlaufdiv + "\n\n" + mittediv + "\n\n" + nachlaufdiv;

                //Image file name
                   String fileName = "English-translated-";

                   imgnumber++;

                    //create a File Object
                    File newFile = new File("./" + fileName + imgnumber + ".jpg");

                    //create the font you wish to use
                    Font font = new Font("Tahoma", Font.PLAIN, 15);

                    //create the FontRenderContext object which helps us to measure the text
                    FontRenderContext frc = new FontRenderContext(null, true, true);

                    //get the height and width of the text
                    Rectangle2D bounds = font.getStringBounds(totalPassage, frc);
                    int w = 750;
                    int h = 430;

                    //create a BufferedImage object
                   BufferedImage image = new BufferedImage(w, h,   BufferedImage.TYPE_INT_RGB);

                    //calling createGraphics() to get the Graphics2D
                    Graphics2D g = image.createGraphics();

                    //set color and other parameters
                    g.setColor(Color.WHITE);
                    g.fillRect(0, 0, w, h);
                    g.setColor(Color.BLACK);
                    g.setFont(font);

                    int index = 0;
                    String[] parts = totalPassage.split("\n");
                    for(String part : parts){
                    g.drawString(part, (float) bounds.getX(), (float) -bounds.getY() + 20 * index++);
                    }


                  //releasing resources
                  g.dispose();

                    //creating the file

                    try {
                        ImageIO.write(image, "jpg", newFile);
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }


            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }


            }


        }catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }





    }

public static String StringDivider(String s){

    StringBuilder sb = new StringBuilder(s);

    int i = 0;
    while ((i = sb.indexOf(" ", i + 100)) != -1) {
        sb.replace(i, i + 1, "\n");
    }

    return sb.toString();

}


}
  • 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-09T19:59:21+00:00Added an answer on June 9, 2026 at 7:59 pm

    This really isn’t the way you want to do it… if you read the comments there are better ways, but here is a way which should work without you having to change anything else. This will color the first time \n\n appears in your string, so it is providing that your files do not contain \n\n.

                    int index = 0;
                    int paragraphCount = 1; // starting on first paragraph
                    String[] parts = totalPassage.split("\n");
                    for(String part : parts){
                       if(part.length() == 0) {    
                           paragraphCount++;
                       }
                       if(paragraphCount==2){
                           g.setColor(Color.RED);
                       }else{
                           g.setColor(Color.BLACK);
                       }
                        g.drawString(part, (float) bounds.getX(), (float) -bounds.getY() + 20 * index++);
                    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I have a text area in my form which accepts all possible characters from
I have a bunch of posts stored in text files formatted in yaml/textile (from
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
Does anyone know how can I replace this 2 symbol below from the string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string
I am trying to understand how to use SyndicationItem to display feed which is

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.