Tagged Questions
1
vote
1answer
115 views
bad quality after rescaling/resizing bitmap
i'm having Quality issue after rescaling bitmap
i load The images from assets so decoding them have to done by Stream
here is my method
InputStream is = getAssets().open(lol.get(zpositions));
...
0
votes
0answers
99 views
losing image quality by getDrawingCache() android
I am new to stackoverflow, so I am sorry for any spelling mistakes or anything.
I have a CMS, where I have uploaded the images of greeting cards. In my android app, I download those cards using ...
1
vote
3answers
300 views
Low quality image android development
I made a photoshop image 480x2500 which I want to put in one of my activities.
But, after installing the .apk, the image has low quality. I really tried everything I found on google, without results. ...
1
vote
1answer
277 views
how can I improve image quality for printing?
I am working on fixing a problem in a program (ReportGenerator) which seems to be an issue with the printed report, either being extremely poor quality or much too large.
This project involves the ...
1
vote
1answer
2k views
save an image as a bitmap without losing quality
I had a problem of printing quality and I described it in this link :
enter link description here
I tried many different solutions that helped other guys with similar prob but they don't work for me ...
1
vote
1answer
1k views
how to improve printed text quality after using “graphics.DrawString”?
I have a problem with my text quality after printing ! it's not smooth and antialiases!
This is the story :
I create a graphic from a bitmap (Graphics.FromImage(MyBitmap)) and I think it's the start ...
0
votes
1answer
1k views
How to increase Bitmap quality?
In the app I'm working on, a button opens the camera. When you take a picture, that picture is loaded into the app as a Bitmap. The pictures are very pixelated. How can I increase the quality of the ...
1
vote
2answers
458 views
Android - Losing the quality of PNG image OnDraw
I have picture (particle picture, not moving, just single png), I preapared on photoshop, when
On Android device, when you click the screen particle picture shows up, it is a bitmap on a sufraceview ...
1
vote
1answer
1k views
Android bitmap quality issues
In my app, the bitmap is drawn as if the color is some lower quality type. If i load up the background image using the gallery app, it loads just fine and does not look like it's super low quality. ...
0
votes
2answers
112 views
Low quality image into a label
I'm trying to pass an image showing to the user a countdown. For this, I'm using a separate thread where I'm checking when the countdown timer should be started, and when so, I draw an image for every ...
1
vote
3answers
735 views
Image Quality problems using Canvas and canvas.scale(Scale, Scale);
I am having Image Quality problems using Canvas and canvas.scale(Scale, Scale); they look exactly like the following:
android: quality of the images resized in runtime
I believe I have read all the ...
12
votes
6answers
11k views
Quality problems when resizing an image at runtime
I have a image file on the disk and I am resizing the file and saving it back to disk as a new image file. For the sake of this question, I am not bringing them into memory in order to display them ...