ARImageSynthesizer

FREEMIUM
Por ArdicAITeam | Atualizado 2 месяца назад | Artificial Intelligence/Machine Learning
Popularidade

9.1 / 10

Latência

130ms

Nível de serviço

100%

Health Check

N/A

Voltar para todas as discussões

How to display the image in html img tag?

Rapid account: Usmanugly
usmanugly
год назад
  const response = await axios.request(options2);
  const b64Response = btoa(response.data);
  const outputImg = document.createElement("img");
  outputImg.src = "data:image/jpeg;base64," + b64Response;

  // append it to your page
  document.body.appendChild(outputImg);

doing it like this is not working for some reason

Rapid account: Ardic AI Team
ArdicAITeam Commented год назад

Hello,

There should be a space between “data:image/jpeg;base64,” and the actual base64 image data. Can you this;
outputImg.src = "data:image/jpeg;base64, " + b64Response;

Our apologies for the late response, if you already found the solution please share it with us!

Best regards,
ARDIC AI Team

Junte-se à discussão - adicione o comentário abaixo:

Efetue login / inscreva-se para postar novos comentários