DEV Community

Aman Pareek
Aman Pareek

Posted on • Updated on

Show image in react js from mongoDB data

Let say we fetching data from mongodb and storing the data in the values in react

Full example => here we have image in buffer so we use this imagefrombuffer package to convert buffer data to base64.

import React, { useEffect } from "react";
import { imagefrombuffer } from "imagefrombuffer"; //first import 

function author() {
  const [values, setvalues] = useState([]); // data

  const fetchauthor = async (e) => {
    let config = {
      method: "get",
      url: "http://localhost:8000/api/user/authorfind",
      headers: {
        Authorization: `Bearer ${thetoken()}`,
      },
    };

    await axios(config)
      .then((response) => {
        setvalues(response.data[0]); //setting data into values
        console.log(response.data);
      })
      .catch((error) => {
        console.log(error);
      });
  };
  useEffect(() => {
    fetchauthor();
  }, []);
  return (
    <>
   // imagefrombuffer  function usage to show image in react or next js from buffer
      <img 
        src={imagefrombuffer({
          type: values.profilephoto?.contentType,
          data: values.profilephoto?.data?.data,
        })}
      />
    </>
  );
}

export default author;
Enter fullscreen mode Exit fullscreen mode

use the function

<img src={imagefrombuffer({
          type: values.profilephoto?.contentType,
          data: values.profilephoto?.data?.data,
        })}
      />
Enter fullscreen mode Exit fullscreen mode

Top comments (8)

Collapse
 
amanp30 profile image
Aman Pareek

ansdgjn

Collapse
 
amanp30 profile image
Aman Pareek

another one

Collapse
 
amanp30 profile image
Aman Pareek

Image description

Collapse
 
amanp30 profile image
Aman Pareek

test comment

Collapse
 
amanp30 profile image
Aman Pareek

best one

Collapse
 
amanp30 profile image
Aman Pareek

mkasmdgk

Thread Thread
 
amanp30 profile image
Aman Pareek

ansdgnjasg