How to fix blurry, Unclear images on Blogger
I was asked a few questions last night about that images on Blogger appearing blurry and more pixelated than normal. I then noticed tweets and comments on the Blogger forum saying an equivalent thing. I don’t know if anything has changed or if it had been just a glitch on Blogger in the week but here’s the way to fix it. How to improve the standard of your Blogger Images
Upload your image to Blogger as normal. Click over to HTML mode within the post editor and look for the image ASCII text file. You will always see the image code within the code for a link. These dimensions are usually on medium to start with so this is often what it'll probably appear as if
REMOVE BLURR IMAGES FROM BLOG POSTS EXPLAINED IN THIS BELOW VIDEO
<a href="<your image link.JPG>" imageanchor="1"> <img border="0" height="213" src="<your image link.JPG>/>s320/DSC_0003.JPG" width="320" /> </a>
The s320 is your resolution and it determines the standard counting on the dimensions of the image. Notice how the link features a value of s1600, so once you click on the image it appears bigger and of better quality. a picture with the width of 320px will look fine with s320. a picture with a width of 800px will look awful with s320. How to change the standard
The main options are s320, s640, and s1600 which is that the highest quality. you'll change that a part of the code to be s1600 so it’s
<a href="<your image link.JPG>" imageanchor="1"> <img border="0" src="<your image link.JPG>" width="800" /> </a>
or you can remove s1600/ to line it to original so it’s
<a href="<your image link.JPG>" imageanchor="1"> <img border="0" src="<your image link.JPG>" width="800" /> </a>

Comments
Post a Comment