The use of interpolation to spatially stretch or squeeze an image by manipulating the underlying image data -- directly, or through API or ABI calls.
0
votes
0answers
3 views
Android: Unwanted Image stretching in ViewPager
After several failed attempts of implementing a simple sliding image gallery, I have finally implemented something that works close to the way I want it, following this tutorial: ...
0
votes
2answers
36 views
How do I make certain images have a certain width and not others?
I recently changed the width of my Wordpress site from 456px wide to 620px. Of course this has resulted in all of my images now not fitting to the new width. I discovered that by using the following ...
0
votes
0answers
31 views
CSS3/HTML5 image based navigation bar that scales
I'm trying to code the navigation bar shown here:
http://fedora-design.com/_images/P&G-Auto.png
So far, I have the background of the nav bar showing and scaling with the viewport properly. My ...
0
votes
0answers
24 views
AS3 EXACT_FIT Creative Work Around?
I want my background image to fit the screen of the device. I have tried the basic code below
BG.height = stage.stageHeight;
BG.width = stage.stageWidth;
This works however, I have to choose ...
0
votes
2answers
56 views
Scale a BufferedImage the fastest and easiest way
The task:
I have some images, I scale them down, and join them to one image. But I have a little problem with the implementation:
The concrete problem:
I want to resize/scale a BufferedImage. The ...
0
votes
3answers
33 views
Can iOS Retina images have odd dimensions i.e. 28 x 15 px?
We are currently working with a design who is supplying Retina images to us with odd dimensions i.e. 28 x 15 px which I believe is incorrect as when you divide it you get an odd number like 14 x 7.5 ...
0
votes
1answer
27 views
Website displaying green corrupted jpeg images on iPhone
http://imgur.com/a/UpbmC
Has anyone ran into this problem before? I seem to be getting corrupted images or bad rendering on Safari for iPhone while on Chrome it is fine. The website is ...
0
votes
0answers
23 views
Android - How to scale web pages to fit A4 or LETTER sizes?
I am writing a small printing application. I intend to support web-printing. Can someone please tell me how I can tinker with the webview content (or screen image) to fit a4 or letter sizes? When the ...
0
votes
0answers
25 views
Picturefill with min-device-pixel-ratio: 2.0 not working
I'm using Picturefull for this first time and I'm not sure if I'm understanding it correctly. If I use..
<div data-src="image.png" data-media="(-webkit-min-device-pixel-ratio: ...
0
votes
0answers
22 views
How to apply zoom in and out functionality on image in android(Only zoom functionality not drag with that)?
I need to zoom in and out on a image. I searched a lot of article, But all in both zoom and drag functionality showing at same time. I need only zoom functionality, so if any one can help me then ...
0
votes
0answers
25 views
Cocos2D: Is it more resource intensive to scale up a background image at run time or load a pre-scaled double-size image?
I have an ambient background image that is 1024x768. I'm using a CCSprite as follows:
_backgroundImage = [CCSprite spriteWithFile:@"background-hd.png"];
For the iPad Retina version of my game, I'm ...
0
votes
1answer
61 views
OpenCV: use homography for different image sizes
I calculate the homography matrix of an image using OpenCV's findHomography and then I warp the image using warpPerspective function. Now I want to use the same homography matrix for a scaled version ...
0
votes
1answer
45 views
PHP Obscured URL for Resized Images
We cache images in multiple sizes.
Image Information:
Original URL: http://www.example-store.com/images/some-image.jpg
Width: 120
Height: 150
Preferred Image File Name: image-file-name.jpg
So we ...
1
vote
1answer
77 views
creatScaled Bitmap low quality
hello guys i'm having a problem with scaling an image to square size. 612 * 612
first i'm getting the image as cache from the imageview and then i'm converting it to Bitmap image.
...
1
vote
2answers
165 views
responsive images inside a full width div
I have this markup:
<div class="girls" style="text-align:center; margin-top:100px">
<img src="images/1.png" />
<img src="images/2.png" />
<img src="images/3.png" ...
1
vote
1answer
67 views
Strange stability issues with Matrix scale/rotation in Actionscript
I have a Flash app where I am performing a scale and rotation operation about the center of _background:MovieClip (representing a page of a book). I have simple event listeners on the GESTURE_ROTATE ...
0
votes
1answer
175 views
Android: ImageView scale to screen width within a ScrollView
I'm quite new to android programming and I stumbled upon a problem with my layout.
At first, I had a Linearlayout with a textview, 2 buttons and a imageview scaled to fit the screen. Now I wanted to ...
0
votes
1answer
215 views
why are the top and bottom of my website's background image being cut off (full-screen image background)?
i'm having an issue with the top and bottom of an image getting cut off, on a website that uses a full screen background image. i initially thought that the padding: 0px and margin: 0px properties ...
0
votes
1answer
43 views
php upload class & smart resizing
I am using this class on my PHP project to resize pictures: http://www.verot.net/php_class_upload_docs.htm
What I am trying to achieve now is to have some sort of 'smart resize'; let me explain.
...
0
votes
1answer
63 views
Is there a high quality image scaling library that does not use Java2D API?
I need a high scaling Image API in Java. But the algorithm of Java are to simple. I have evaluate some libraries like thumbnailator. But all this libraries that I have look at only add a framework ...
0
votes
0answers
45 views
Universal App not detecting iPad images
I have an app which I'm converting to a universal binary.
The app uses a custom table view within a Tabbar controller which draws different sizes depending on the detected screenBound height.
It ...
0
votes
0answers
45 views
point to point Scaling Issues in RelativeLayout
I am trying to implement a map kind of thing. Hence i have used a Scroll View cum Horizontal Scroll View cum the inner most child, a Relative Layout Combo to get the effect of a 2D Scroll View.
I now ...
3
votes
1answer
122 views
How do I know what size to make retina images?
I'm trying to understand how to calculate just how much bigger to make images for 'Retina' quality screens. I understand that the general answer is just 'x2' but it's never explained why this is.
For ...
-1
votes
1answer
69 views
one finger image scaling / Cropping
I'm trying to implement one finger image scaling/Croping on iOS.
Similar to Kirby Turner's one finger rotation.
I'm looking for existing libraries or if you can help me with the code itself, it'll ...
1
vote
1answer
95 views
How to speed up loading images as small previews?
I have 3 or 4 image paths that I use to load an image so I set it to an imageview. Why does it take long? Or better asking is there a way to make it faster? At the end of the day I am loading to fit ...
0
votes
1answer
41 views
Fractal image compression and image compression in Office and similar programs
I have read that fractal image compression can be capable of reconstructing images, and then reconstruct them in any scale.
I have seen that programs like Word (97, 2000) can include images which ...
0
votes
1answer
85 views
iphone: Scale the image in table cell
I am using a UITableViewCellStyleSubTitle. I am trying to add thumbnails to my table cells.
UIViewContentModeScaleAspectFit does not seem to work for reasons unknown. I have seen a lot of answers in ...
0
votes
3answers
136 views
Scale many images on browser size (CSS / jQuery ?)
I have a little web project. On this page i have some images with the same size (360x270 pixel). I want to scale the images in the right size for the viewport of the browserwindow. A sample will ...
0
votes
1answer
151 views
CSS: Image-Scaling with Tumblr 'Astronaut' theme
I'm rather clueless with regards to CSS, and trying to use the free Tumblr theme 'Astronaut'.
Currently I'm trying to figure out how to scale images proportionally for the 'face' of the blog (which ...
0
votes
0answers
95 views
HTML Canvas scaling down = Aliasing
I've tried to scale down a geometrical image with a canvas using the scale() method but the result is highly aliased. For testing purpose I took an image from the internet and made a basic 25% ...
4
votes
2answers
73 views
opengl, textures have always the same size
I'm trying to apply a texture to a vertex array whit the following code:
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
...
1
vote
1answer
103 views
scaling object to match field of view
I am overlaying some clickable hotspots on top of a proprietary panorama viewer application in flash (as3), and I need to make sure that the hotspots scale according to the changing field of view as ...
0
votes
2answers
58 views
Scale an image by a single dimension (x OR y) given minimum dimensions
I know I could do this with a bunch of nested if statements, however I can't help feel like there's a more elegant way. It's really just a maths issue I guess, but I'm interested in pythonic answers ...
0
votes
1answer
112 views
Widget Layout with layout_weight and Images give diffrent height
I have problem with layout when I want have images with different width but this same height. When I use only images with this same width and height, layout_weight work properly. But when I add images ...
0
votes
1answer
119 views
Android, Java: Scaling .PNG results in low quality
I am creating this game for Android with Java. I am using this code: http://developer.android.com/training/displaying-bitmaps/load-bitmap.html for resizing Bitmaps, I am using .PNG format on all my ...
1
vote
3answers
110 views
Android ImageButton setMaxheight not having effect
I use a table layout to layout buttons using weights, the buttons get 0dip size or wrap_content and so they expand by their weight.
I'm trying to convert a button to ImageButton and set the image to ...
0
votes
2answers
84 views
Why can't i just calculate the screen dimensions and by that resize the image?
I found a lot questions and answers of people asking how to adjust the image to fit the device screen and i thought to myself- if i can get the device resolution, using
Display display = ...
5
votes
2answers
1k views
Android ImageView scale smaller image to width with flexible height without cropping or distortion
Often asked, never answered (at least not in a reproducible way).
I have an image view with an image that is smaller than the view. I want to scale the image to the width of the screen and adjust the ...
0
votes
1answer
174 views
Compress image, using imageScalr
I am using imagescalr for resizing images, but i also want to compress the images so that the size stays below 32kb(as ie 8 supports base64 strings upto 32kb). I am resizing the image like this
Map ...
0
votes
0answers
42 views
Scalable boxes positioned centered
I am looking for a solution to position several boxes (one image in each box) of different sizes and make them scalable all together. All of the boxes will be centered in the middle of the webpage.
...
0
votes
0answers
275 views
resize image without losing aspect ratio?
I am trying to display image in a image view in my android project. I am getting images from the internet. All images are of different size,some are lean, some are flat, some are square. I want to ...
0
votes
1answer
83 views
Canvas inline height and width attributes overridden with css styles. Is this is a bug?
I recently asked a question on how to draw an image larger than my canvas onto the canvas without cropping and save the image back into its original dimensions after performing some changes on it. I ...
2
votes
3answers
362 views
Responsive Image Grid Inconsistency in image sizes
I am creating a full width grid of images that use media queries to change how many columns of images there are. You can see a working demo here: http://vitaminjdesign.com/grid/
Using img{max-width: ...
2
votes
1answer
166 views
How do browsers handle image resampling when resizing an image in canvas?
Hi, I'm creating a video game using the canvas element and jQuery. Part of this requires drawing arched paths and circles. Unfortunately this creates subpixels and an antialiasing problem. No browser ...
0
votes
1answer
68 views
Why do my HTML5 rectangles appear zoomed in?
Following http://www.html5canvastutorials.com/tutorials/html5-canvas-rectangles/, I have drawn some rectangles side-by-side on a canvas. The problem is that they appear greatly zoomed in; at a zoom of ...
0
votes
2answers
93 views
Gallery of ImageViews: how to fix the height of the image?
Thank you for your help and sorry for the dumb questions...
Ok, I have a Gallery displaying different images (I use setImageResource(resId), the Images are jpgs in /drawables).
The images come in ...
0
votes
1answer
815 views
Tumblr: How to use high-res photos in TEXT posts?
since there is no answer ins similar posts at stackoverflow, I am posting this...
When I post a TEXT post in tumblr, my images get downsized. How can I use the HI-RES of the original photo I upload?
...
0
votes
3answers
45 views
How to vertically center img of unknown hight
Let me start from the illustration which presents the outcome I want to achieve:
http://jsfiddle.net/2DvF6/1/
<div id="controler">
<img id="i1" src="arrow1.png">
<img id="i2" ...
0
votes
2answers
261 views
How to resample an image to a smaller size (locally) using only javascript or jquery? [closed]
Does anyone know how to resample an image to a smaller size using only javascript or jquery?
I would like to shrink an image down to a certain size without it becoming pixelated. I have seen an ...
5
votes
2answers
712 views
How to resize an image with JavaScript / jQuery without pixelation like the browser does?
I'm making a javascript / jquery program for a webpage to let a user open an image file locally from their computer, and then the program resizes it to a 16 x 16 icon size and saves it as a data url.
...


