Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML Blurry Canvas Images

I use jcrop to provide users with a friendly way of uploading their images via ajax. Obviously these images have some constraint like width and height which is where jcrop comes into play. So for the sake of brevity what im doing is as follows:

input file select via javascript file api loads the image into a img tag. Jcrop works with this image tag and renders the result onto a html canvas.

Now this is the dodgy part. The canvas image is always blurry...

for arguments sake the canvas is set to 400x200 which is the crop size.

like image 497
Ben Pretorius Avatar asked Jul 25 '13 09:07

Ben Pretorius


People also ask

How to set canvas size without making it blurry?

Also according to my testing, setting the CSS canvas size via DOM does NOT make things blurry, so if anyone wants they can try setting the css by doing something like canvas.style.width = '200px', it worked for me When drawing lines in canvas, you actually need to straddle the pixels.

Why are my input lines blurred in HTML?

Lines are blurred because the canvas virtual size is zoomed to its HTML element actual size. To overcome this issue you need to adjust canvas virtual size before drawing: function Draw () { var e, surface; e = document.getElementById ("surface"); /* Begin size adjusting.

Is there canvas blur in the demo?

First and foremost, if you’ve worked with Canvas at all, you’ll notice there isn’t any Canvas Blur in the above demo. All the circles and arrows are made with clean lines, which to those who haven’t seen Canvas Blur must sound kind of obvious and mundane, but getting there can actually be a frustrating milestone in beginning 2d Canvas Development.

What is the difference between the canvas and the image?

As you can see below, the image is crisp and clear whereas on the canvas, it is blurry and pixelated. and here is how it looks (the left one being the original and the right one being the drawn-on canvas and blurry.) What am I doing wrong?


3 Answers

If the canvas width and height is set via CSS it results in a blurry image result. TO get around this I had to set the width and height via html attributes. Now I have a wonderful cropping solution that can save images via AJAX. Crisp and Clear:)

<canvas id="preview" width="400" height="200"></canvas>
like image 147
Ben Pretorius Avatar answered Oct 21 '22 03:10

Ben Pretorius


According to HTML Standard, if width or height attribute is missing, then the default value must be used instead, which is 300 for width and 150 for height. And these two attributes will determine the canvas's width and height, while the css properties merely determine the size of the box in which it will be shown.

The canvas element has two attributes to control the size of the element's bitmap: width and height. These attributes, when specified, must have values that are valid non-negative integers. The rules for parsing non-negative integers must be used to obtain their numeric values. If an attribute is missing, or if parsing its value returns an error, then the default value must be used instead. The width attribute defaults to 300, and the height attribute defaults to 150.

The intrinsic dimensions of the canvas element when it represents embedded content are equal to the dimensions of the element's bitmap.

The user agent must use a square pixel density consisting of one pixel of image data per coordinate space unit for the bitmaps of a canvas and its rendering contexts.

A canvas element can be sized arbitrarily by a style sheet, its bitmap is then subject to the 'object-fit' CSS property.

You can refer to the following post for more details: Canvas is stretched when using CSS but normal with "width" / "height" properties

like image 25
Haibara Ai Avatar answered Oct 21 '22 05:10

Haibara Ai


This is really just an extension of the answer above. I too encountered the problem of CANVAS images resized using Javascript/CSS becoming fuzzy and blurry, because my application first used HTML to create a few DIVs, one of which held a CANVAS control, then the ONLOAD event called a Javascript routine to get the screen size, optimise the sizes and positions of all the DIVs and the CANVAS accordingly, and finally draw on the CANVAS. I did it that way as I wanted the CANVAS to always be as big possible for whatever device it was viewed on.

My solution is to use Javascript to dynamically draw the CANVAS control too, i.e. for the DIV that contains the CANVAS simply include...

var CanvasWidth=screen.availWidth-30;
var CanvasHeight=screen.availHeight-190;
//The 30 and 90 above are arbitrary figures to allow for other DIVS on the page
var o=window.document.getElementById("IdOfDivContainingCanvas");
o.innerHTML="<canvas id='myCanvas' width='"+CanvasWidth+"' height='+CanvasHeight+'></canvas>";

...so that the size of the CANVAS is effectively dynamic; Created with it's size specified using HTML attributes, just before executing the Javascript statements that actually draw on the CANVAS.

like image 27
user3506285 Avatar answered Oct 21 '22 04:10

user3506285