Questions tagged [blurry]
305 questions
89
votes
1 answer
CSS: transform: translate(-50%, -50%) makes texts blurry
I want to center my div and I use this method, but it makes my texts inside the div blurry:
#div {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
is there any…

Ken Avila
- 1,091
- 1
- 8
- 10
61
votes
8 answers
WebKit: Blurry text with css scale + translate3d
I'm seeing an issue where Chrome and other WebKit browsers massively blur any css-scaled content that also has translate3d applied.
Here's a JS Fiddle: http://jsfiddle.net/5f6Wg/. (View in Chrome.)
.test {
-webkit-transform: translate3d(0px,…

phil
- 897
- 1
- 8
- 9
61
votes
19 answers
Webkit-based blurry/distorted text post-animation via translate3d
This issue appears to affect all WebKit-based browsers, including the iPhone.
First some background. The site I'm working on uses a JavaScript-based 'slider' animation.
I'm using -webkit-transform: translate3d to 'power' the actual animation. When…

Mike
- 645
- 1
- 6
- 8
51
votes
2 answers
Prevent anti-aliasing for imshow in matplotlib
When I use matplotlib's imshow() method to represent a small numpy matrix, it ends up doing some smoothing between pixels. Is there any way to disables this? It makes my figure's misleading in presentations.
The figure above is a 28x28 image, so I…

Christopher Dorian
- 2,163
- 5
- 21
- 25
33
votes
4 answers
How to fix blurry Image on transform scale
When i put transform: scale(1.1); on hover on some element the image became blurry. How to fix this bug?
Example

Viktor Zahov
- 333
- 1
- 3
- 4
24
votes
0 answers
Implementing PencilKit with PDFKit
My app shows PDF files using the PDFKit and lets users make annotations on pdf files through my own code using UIKit and CoreGraphics frameworks. Since I would like to use the PencilKit framework to make annotations better, I’m in the process to…

Alcovi
- 241
- 2
- 3
20
votes
11 answers
visual studio code looks blurry
Folks, this is not a code question but I dont know where else to post this. the website of VS Code linked me here so here goes.
Here are my visual studio code version details
Version: 1.26.1
Commit: 493869ee8e8a846b0855873886fc79d480d342de
Date:…

Jay
- 2,648
- 4
- 29
- 58
20
votes
4 answers
svg not sharp, but blurry
For whatever reason these svg files, seems blurry, and not 100% sharp in all browsers. These are svg files, and are enclosed within elements that are scaled to pixels, in other words using px and not % - hence no browser bitmap errors.
Any idea as…

Rasmus Hjorth Lüdeking
- 710
- 2
- 9
- 22
20
votes
6 answers
Android Blur View (Blur background behind the view)
I am trying to make the bottom part of an Image blur for the view on top it like in the image.
I tried blurring it using Rendenscript but I am not able to blur only the part behind the view. :(
I have seen many libraries but almost all of them blur…

Atul O Holic
- 6,692
- 4
- 39
- 74
20
votes
6 answers
How to prevent the background image from getting blurry
I need to know how to get the background image to not be blurry when text is over it in CSS as it spoils the look of my website if it's blurry.
My CSS is:
background: #ff0000 url(img/rain.jpg) top center repeat-y;
background-size: 100%;
But when…

Josh Keighley
- 215
- 1
- 2
- 7
18
votes
3 answers
Blurry UILabel when added programmatically
I am adding a UILabel to a view meant for loading purposes. However, it gets blurry after I added it.
The weird thing is that I just about the same code for an loading view which is loaded ontop of an UITableViewController and it works great there.…

Paul Peelen
- 10,073
- 15
- 85
- 168
14
votes
1 answer
Android blurry screen sometimes
This device:
https://www.amazon.de/Sony-Tablet-PC-Touchscreen-GHz-Quad-Core-Prozessor-interner/dp/B00IN1N66I
Sony Xperia Tablet Z2 SGP511 (10,1") Tablet-PC (Touchscreen, 2,3
GHz-Quad-Core-Prozessor, 3GB RAM, 16GB)
Android version 5.1.1…

ErikBrandsma
- 1,661
- 2
- 20
- 46
13
votes
2 answers
What's the theory behind computing variance of an image?
I am trying to compute the blurriness of an image by using LaplacianFilter.
According to this article: https://www.pyimagesearch.com/2015/09/07/blur-detection-with-opencv/ I have to compute the variance of the output image. The problem is I don't…

denis631
- 1,765
- 3
- 17
- 38
12
votes
2 answers
WPF Blurry Images
I'm looking for a way to prevent WPF to blur my images. I want my application to look good on high-DPI displays so I created Icons in 96x96px to display in size 32x32.
There's a lot of in google to find and even on stackoverflow there are some…

freakinpenguin
- 831
- 14
- 24
11
votes
3 answers
browser displays images bigger than original size
my web site displays images bigger than their original size.
The images are 20% bigger than the original created with photoshop (for example), if an image's width is 200px, the browser display is 240px.
So all my images are blured.
Do you know why?

Daniele
- 538
- 1
- 5
- 17