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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:20:23+00:00 2026-05-23T10:20:23+00:00

I want to do a simple color replace on a BufferedImage, in java. Here

  • 0

I want to do a simple color replace on a BufferedImage, in java.

Here is my code:

public BufferedImage convertEDEDEDtoRGB(BufferedImage bufferedImage, 
short nr, short ng, short nb){

    short[] r = new short[256];
    short[] g = new short[256];
    short[] b = new short[256];
    short[] a = new short[256]; //leave a the same

    for(short i=0; i<r.length; i++) {
        r[i]=i;
        g[i]=i;
        b[i]=i;
        a[i]=i;         
    }


    System.out.println("componentSize "+bufferedImage.getColorModel().getComponentSize());
    for(int i = 0; i<bufferedImage.getColorModel().getComponentSize().length; i++)
        System.out.println("rgb ("+i+") " +bufferedImage.getColorModel().getComponentSize(i) ); //gives 8 bits

    System.out.println("num Components "+bufferedImage.getColorModel().getNumColorComponents()); // gives 3
    r[237] = nr; 
    g[237] = ng; 
    b[237] = nb;


    short[][] ededed2rgb = new short[][]{r, g, b, a};
    ShortLookupTable t = new ShortLookupTable(0, ededed2rgb);
    LookupOp  ededed2rgbOp = new LookupOp(t, null);

    bufferedImage = ededed2rgbOp.filter(bufferedImage, null);
    return bufferedImage;
}

This yields the following error, and I just do not see what I am mising:

 Number of color/alpha components should be 4 but length of bits array is 2

at java.awt.image.ColorModel.<init>(ColorModel.java:318)
    at java.awt.image.ComponentColorModel.<init>(ComponentColorModel.java:256)
 at java.awt.image.LookupOp.createCompatibleDestImage(LookupOp.java:396)
    at java.awt.image.LookupOp.filter(LookupOp.java:136)
    at nl.sytematic.projects.myproj.server.custom.MyServlet.convertEDEDEDtoRGB(GenerateFlavourImageServlet.java:225)

I tried with

new short[][] { r,g,b}

but the same error pops up. Any thoughts? I am loading a .png image (with transparency) by the way.

  • 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-23T10:20:24+00:00Added an answer on May 23, 2026 at 10:20 am

    I changed the filter call into ededed2rgbOb.filter(bufferedImage, bufferedImage) and the error is gone. Found this out by inspecting the code at link. Supplying a second parameter effectively bypasses the createCompatibleDestImage.

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

Sidebar

Related Questions

No related questions found

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.