Questions tagged [blurry]
305 questions
11
votes
2 answers
android.support.v8.renderscript error on ProGuard
I am using Blurry when I do ProGuard it gives me:
Error loading RS jni library: java.lang.UnsatisfiedLinkError:
android.support.v8.renderscript.l: Error loading RS jni library: java.lang.UnsatisfiedLinkError: JNI_ERR returned from JNI_OnLoad in…

andro
- 1,007
- 1
- 14
- 32
10
votes
1 answer
IOS drawing a simple image turns out blurry using Xamarin C#
I'm developing in Xamarin and would like to draw a simple circle with the text "CIRCLE" inside it and display that image in a UIImageView. The problem is that the circle and text appear very blurry. I've read a bit about subpixels but I don't think…

Click Ahead
- 2,782
- 6
- 35
- 60
9
votes
4 answers
Blurry UIView with CATransform3D only on RETINA
I'm displaying a UIView with a UILabel on it and this view&label become blurry as soon as it gets to these lines code:
CATransform3D transform = CATransform3DIdentity;
transform.m34 = (1.0/-500);
view.layer.transform = transform;
Throughout…

Bob de Graaf
- 2,630
- 1
- 25
- 43
9
votes
3 answers
Blurry SVG render when using HeroIcons in iOS app
I am using HeroIcons (https://github.com/tailwindlabs/heroicons) in my iOS app. I have added all SVG files into Resource bundle and able to render the SVG using SwiftUI.
But the rendered icon looks blurry
This is the SVG configuration
And this is…

Peacemoon
- 3,198
- 4
- 32
- 56
9
votes
2 answers
tweak intensity of blur effect inside UIVisualEffectView in Swift
I'm using this code to create a blur effect inside my view:
let blur = UIVisualEffectView(effect: UIBlurEffect(style: UIBlurEffectStyle.Light))
blur.frame = CGRectMake(180, 10, 200, 750)
myView.addSubview(blur)
is there any way to tweak the…

Claus
- 5,662
- 10
- 77
- 118
8
votes
3 answers
WPF - Multiline TextBox text gets blurry while typing a long text
I have a textBox that grows vertically while typing. Unfortunately when I type a long text (for example a 3 line text) some PART of it gets blurry. What's more, when I prevent it from growing vertically and make it grow horizontally it works fine -…

Michal_Drwal
- 526
- 1
- 9
- 26
8
votes
2 answers
CSS and blurry pictures when scaled down
When I display a picture to its original size with HTML and CSS, the picture is just perfect (of course).
I expect it to become blurry if I try to display it at a size that is bigger than the original but not if the final size is smaller. And that's…

Baylock
- 1,246
- 4
- 25
- 49
8
votes
1 answer
iphone, when saving image with "renderInContext" to device, the image is blurry?
I'm using this code to render an image from view.
Then i am saving it to photo album.
The image is blurry?
Why? Is there a solution?
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer…

Shay
- 2,595
- 3
- 25
- 35
7
votes
2 answers
jQuery Animated Gaussian Blur
On the home page of a website I'm designing, I'd like the initial hero image to animate from blurred (gaussian) to sharp. I've looked around, and have been surprised that there's not a readily obvious jQuery solution for doing this. Am I missing…

Keefer
- 2,269
- 7
- 33
- 50
7
votes
2 answers
SVG file is blurry in Safari and mobile Safari
I wanted my logo to be in SVG format so that I didn't have to worry about resolution and it ever being blurred.
I just put the website onto the server, open it on my iPhone, and this is what I see: https://i.stack.imgur.com/pAJST.jpg
Messed around…

Jack Douglain
- 79
- 1
- 1
- 2
7
votes
3 answers
Vector Drawables sometimes become blurry
I am working on an existing app that needed some update and as soon as I replaced some png icons with vector drawables something very odd happens:
these vector drawables sometimes become blurry. I say sometimes because they are not always blurred.…

Pizzetto
- 81
- 7
7
votes
1 answer
Image deblurring on Matlab
Im new to MatLab. Been playing around and reading through the help guide but i can't seem to solve this situation.
I have removed the noise by using gaussian algorithm. That was successful but I've not managed to get the image to be clear, i've…

Harvin
- 179
- 2
- 12
7
votes
1 answer
Impress.js : texts and images look blurry
With Impress.js, my texts and my images look blurry.
See the next screenshot where CSS is disabled but Impress.js is enabled :
And now see the next screenshot where Impress.js and CSS are disabled :
Why are they blurry ?
This is my configuration…

GG.
- 21,083
- 14
- 84
- 130
6
votes
3 answers
android & libgdx - disable blurry rendering
i'm trying out libgdx as an opengl wrapper , and i have some issues with its graphical rendering :
for some reason , all images (textures) on android device look a little blurred using libgdx . this also includes text (font) .
for text , i thought…

android developer
- 114,585
- 152
- 739
- 1,270
6
votes
1 answer
SVG rendered into canvas blurred on retina display
I have an issue with SVG rendered into canvas. On retina displays canvas rendered as base64 url and set as SRC into is blurred.
I've tried various methods that was described in list below with no…

Gnato
- 319
- 3
- 13