-1

I created an image in gimp and attempted to use it in a web page. my source code: <p><img src="img/ad3.png" alt="ad2" /></p> The image does not show up in either FF or chrome.

The source code in the browser has a class added:

<img class="edvocigqzrpabapyavku" alt="ad2" src="img/ad3.png">

in the network panel in chrome it says the image has a 307 redirect to :

data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==

any idea why that might be?

There is an image right before it that does load properly and the paths are all correct.

The only difference between the two images is that the one that does load is a graphic created from scratch in gimp and the one that does not load is created from pasting into gimp.

DecentGradient
  • 720
  • 7
  • 17

2 Answers2

0

Does webpage refer to your webpage in your hosting? Or a webpage in your computer?

Also, what is the folder structure?

Can you try this?

<p><img src="../img/ad3.png" alt="ad2" /></p>

Its probably that the file doesnt exist in the location that you are linking to.

Kishor
  • 1,513
  • 2
  • 15
  • 25
0

Recreated the image with PS Elements and it works just fine. Seems to be a gimp issue.

DecentGradient
  • 720
  • 7
  • 17