Reputation: 11
Hi im fairly new to html and have run into a problem when adding images from a local folder.
<img src="C:\ComputerBuild Pics\DSC_0037.NEF">
<img src="C:\ComputerBuild%Pics\DSC_0037.NEF">
<img src="ComputerBuild%2520Pics\DSC_0037.NEF">
<img src="ComputerBuild%Pics\DSC_0037.NEF">
Upvotes: 1
Views: 316
Reputation: 1146
Convert the images in .png format which stands for "Portable Network Graphics"
You can use this site to convert: http://image.online-convert.com/convert-to-png
or you can use any graphics software of your choice
Upvotes: 0
Reputation: 64
NEF image file is raw image, compress this file https://raw.pics.io/convert-nef-to-jpeg
Upvotes: 1
Reputation: 75
You need to convert it to supported images for web browsers.
On regards to that, there is this page in Wikipedia. See the chart for different images types and web browsers.
Upvotes: 0
Reputation: 1620
A browser cannot render a NEF image file. You need to convert it to a file format that a browser can interprete and render.
Upvotes: 0