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
  • 1 View
  • 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

Related Questions

I want to encode an image into a string using the base64 module. I've
I want to read an image into MATLAB, draw a rectangle on it, and
How do you encode a png image into base64 using python on Windows? iconfile
I'm trying to use the following code of java to read image data on
I am using WIC (Windows Imaging Component) in my WPF application to read/write image
I need to read binary PGM image files. Its format: P5 # comments nrows
I'm a bit stuck with my code: def setVenueImage(img): img = images.Image(img.read()) x, y
I have an image and want to read the pixel values in a particular
Is it possible to feed an array of image names into code which converts
From PostgreSQL, am trying to read an image file into an Imagick object -

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.