Questions tagged [image-quality]
113 questions
1
vote
0 answers
Why is my sprite quality in the game window so much worse than my sprite quality in the editor and in the png file?
When I look open the image directly from the file or in the unity editor, it looks fine.
Sprites in editor
However, when I press the 'play' button and go into the game view, the quality gets a lot worse.
Sprites in Game Window
I don't think the…

Elan SK
- 117
- 2
- 11
1
vote
0 answers
Detecting upscaled images with BRISQUE features
My goal is to identify true 4K images from images that have been upscaled from a lower resolution with methods such as Bicubic, Billinear, Lanczos, EDSR and so on.
I have a dataset of 200 4K images that I have downscaled to 1080p and back to 4K…

J.W Ngo
- 66
- 6
1
vote
1 answer
Word Macro: Export high quality PDF (with images)
I import images into a Word file and export/save everything as a PDF file afterwards using this code:
ActiveDocument.SaveAs _
filename:=pdfpath, _
FileFormat:=wdFormatPDF, _
LockComments:=False, _
Password:="", _
…

Neph
- 1,823
- 2
- 31
- 69
1
vote
0 answers
Crop Buffered image without losing dpi in java
I am cropping the image by using the java buffered image. The problem is the cropped image is losing quality in terms of DPI. Say, for example, If the parent image has DPI of 200, the cropped image DPI is reduced to 96. Because of this, I am losing…

Arun Gowda
- 2,721
- 5
- 29
- 50
1
vote
0 answers
360* image stitching quality metric
I am working an 360 degree image stitching, I have taken few images and stitched using available software. My problem is I am not finding any parameter to evaluate the image stitching quality (in figures) performance. Can you suggest any image…
1
vote
2 answers
How do I take Cropped screenshot with Retina image quality in my snapshot implementation in swift
I am trying to take a screenshot of my UIView and Crop it, save it to my Photo library. As i am trying to do this there are 3 conflicts.
(1) - I want to take Screenshot with Blur in it, As blur filter never gets saved in the screenshot.
(2) - The…

AshishVerma
- 43
- 1
- 5
1
vote
3 answers
Android cropped image quality issue
I am trying to save an image as cropped from android and then show it in my app. I am using the code below, but when I try to view the image in my app the image quality is not good as in the attached image. Am doing anything wrong? Any help would be…

saner
- 821
- 2
- 10
- 32
1
vote
1 answer
Jcrop: How to overcome low resolution images after cropping?
I am currently working on a solution, where I crop an image to a rectangle using jcrop so I can use it as a texture for a 3D cube (in three.js)
AND I can save the cropped area as an image on the server.
The Problem here is, that the cropped image…

PLAYCUBE
- 795
- 4
- 14
- 24
1
vote
1 answer
Image quality loss when reassigning image to UIImageView
I am developing an application which can tint colors in an image and export it.
I have added 3 versions of an image asset to my Assets.xcassets folder.
These are 3 different sizes of the same image, namely:
image1.png image1@2x.png…

tiw
- 535
- 1
- 6
- 22
1
vote
1 answer
UWP: How do you decrease the quality of a selected image?
I have code that allows the user to select an image using file picker & I convert the image to a byte array so that it can be serialized. When viewing the collection of images, if I have too many, the app crashes & will not load. When I debug using…

Terry Bennett
- 125
- 1
- 11
1
vote
1 answer
How to resize images with maintaining quality
I am trying to resize image to 500x500 px. Using below code:
public static Bitmap ResizeImage(System.Drawing.Image image, int width, int height)
{
var destRect = new Rectangle(0, 0, width, height);
var destImage = new Bitmap(width,…

James
- 1,827
- 5
- 39
- 69
1
vote
3 answers
HTML image resize downscale bad quality
I have a development made.
I'm using 430px X 455px images
When I down-scaled image to 184px width:
- Google Chrome: looks perfect
- Firefox (37.0.1) looks very unfocused
- Internet Explorer (11.0.9): "sawtooth" look (very pixelated)
Why is this? Not…

Javier
- 395
- 3
- 18
1
vote
2 answers
really high resolutions become pixelated, as if the camera is zoomed in too much
I'm working on a Unity 2D project and making the levels at the moment.
For some reason even really high resolutions (higher than 1920x1080) become really pixelated. It's like the camera is zoomed in too much. My player is rendered at a scale of…

magna_nz
- 1,243
- 5
- 23
- 42
1
vote
1 answer
Using mogrify to decrease image size
I'm trying to use mogrify to decrease the quality of the image to ultimately decrease the image size but rather than decreasing it, the image size is increasing. I'm using the following command:
mogrify -quality 20% 1.png
The image size is going…

Noor
- 19,638
- 38
- 136
- 254
1
vote
3 answers
Javafx: How to set a scaled image as a node background
I have a simple JavaFX program that uses an image for the background on the main Pane. Currently I'm loading the image directly in my .css file:
.pane {
-fx-background-image: url('map.png');
-fx-background-size: 1000 800;
}
This works fine, but…

River
- 8,585
- 14
- 54
- 67