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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:50:07+00:00 2026-05-15T11:50:07+00:00

How do I read an image into a base64 encoded string by its ImageReader

  • 0

How do I read an image into a base64 encoded string by its ImageReader?

Here’s example source code using HtmlUnit. I want to get the base64 String of img:

  WebClient wc = new WebClient();
  wc.setThrowExceptionOnFailingStatusCode(false);
  wc.setThrowExceptionOnScriptError(false);
  HtmlPage p = wc.getPage("http://flickr.com");
  HtmlImage img = (HtmlImage) p.getByXPath("//img").get(3);
  System.out.println(img.getImageReader().getFormatName());
  • 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-15T11:50:08+00:00Added an answer on May 15, 2026 at 11:50 am

    The HtmlUnit’s HtmlImage#getImageReader() returns javax.imageio.ImageReader which is part of standard Java 2D API. You can get an BufferedImage out of it which you in turn can write to an OutputStream of any flavor using ImageIO#write().

    The Apache Commons Codec has a Base64OutputStream which you can just decorate your OutputStream with.

    HtmlImage img = (HtmlImage) p.getByXPath("//img").get(3);
    ImageReader imageReader = img.getImageReader();
    BufferedImage bufferedImage = imageReader.read(0);
    String formatName = imageReader.getFormatName();
    ByteArrayOutputStream byteaOutput = new ByteArrayOutputStream();
    Base64OutputStream base64Output = new base64OutputStream(byteaOutput);
    ImageIO.write(bufferedImage, formatName, base64output);
    String base64 = new String(byteaOutput.toByteArray());
    

    Or if you want to write it to file directly:

    // ...
    FileOutputStream fileOutput = new FileOutputStream("/base64.txt");
    Base64OutputStream base64Output = new base64OutputStream(fileOutput);
    ImageIO.write(bufferedImage, formatName, base64output);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 490k
  • Answers 490k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer (Mirrored from TeX.StackExchange) Not sure of the first part, but… May 16, 2026 at 9:51 am
  • Editorial Team
    Editorial Team added an answer Do you have a problem to solve? If not, don't… May 16, 2026 at 9:51 am
  • Editorial Team
    Editorial Team added an answer I would recommend http://wordpress.org/extend/plugins/sitepress-multilingual-cms/ May 16, 2026 at 9:51 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

How do you encode a png image into base64 using python on Windows? iconfile
I want to read an image into MATLAB, draw a rectangle on it, and
How can I create an unordered list dynamically using jQuery? I read the image
I'm trying to convert an image into an audio signal in MATLAB by treating
I have a very large image and I only want to display a section
Is there a good way to see what format an image is, without having
I'm writing a program that will do image processing on a 16 bit tiff
Is it possible to get image contents of an obstructed window without bringing it
I have this simple code to go through a 24bit color windows bmp file
I have a Repeater Control using an XMLDataSource to produce a list of movies

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.