resize

jQuery - dynamic div height equal to the height of the whole window

i am using the code found here http://stackoverflow.com/questions/1443465/jquery-dynamic-div-height <script type='text/javascript'> $(function(){ $('#center').css({'height':(($(window).height())-162)+'px'}); $(window).resize(function(){ $('#center').css({'height':(($(window).height())-162)+'px'}); }); }); </script> no...

Resizing HTML images breaks ratio

The image of the card on my site (bottom right) displays differently in Chrome and Firefox. In Chrome, its ratio is preserved, but the ratio is twisted in Firefox. How can I apply a constant resize of the image itself, cross-browsers (basically do what now happens for Chrome) ...

c#: How do I determine if the ScrollBar for a Scrollable control is currently displayed?

Title says it all...is there a way for me to check if the Scrollbar for a control is currently displayed or not? I want to use it so I can determine how to size the children of the Scrollable control, which is somewhat dependent on whether or not the ScrollBar is displayed (the Scrollable control can be dynamically resized). ...

Resizing Image from a decoded ByteArray

I am trying to display a bytearray as a resized image. The Image is displaying correctly, but the sizing is off. Let me explain. First I have the image data encoded so I need to decode the image data // Instantiate decoder var decoder:Base64Decoder = new Base64Decoder(); // Decode image data decoded.decode(picture.data); // Export data...

C# Auto Resize Form to DataGridView's size

I have a Form and a DataGridView. I populate the DataGridView at runtime, so I want to know how do I resize the Form dynamically according to the size of the DataGridView? Is there any sort of property or method? Or do I have to determine the size myself and update accordingly? ...

Resizing an image in cm C#

I have an requirement that asks for an image with 10 X 6,88 cm. I know that I can't simple convert from cm to pixels, cause one pixel size depends on the user display resolution. I would like to know if there is a way to resize an image to have that size in cm. (I need to keep the image extension also. e.g.: can't convert it to a pdf or ...

vector.resize function corrupting memory when size is too large.

what's happening is i'm reading encryption packets, and I encounter a corrupted packet that gives back a very large random number for the length. size_t nLengthRemaining = packet.nLength - (packet.m_pSource->GetPosition() - packet.nDataOffset); seckey.SecretValues.m_data.resize(nLengthRemaining); In this code m_data is a std::vector<...

WPF : Automatic controls sizing

Hellow. I'd like to know if there were a kind of automatic control sizing in WPF. I mean, a way to auto size element regarding to the user's screen resolution, without having to define it in the code. thanks. ...

How to resize jpg file by PHP?

It's now 925*1139,I want to change it to 90*110. ...

Image resize quality (Java)

Hi, I have an open-source app which uploads photos to Facebook. To save bandwidth, the photos are automatically resized before uploading (Facebook imposes a maximum size limit). A few people have complained about the photo quality, and in fact you can see the difference (see this issue for some demo images). So my question is, what is t...

Best resize and or crop logic

Hey guys, I've come across this a few times and thought it would be good to put it out there. What's your best image resize and/or crop logic. The idea being that some method is called with a target image, dimensions and a crop flag - this would return or save off or whatever the desired image. Mine is below. Converted from VB to C#...

Delphi: SetLength() on argument of type "array of TObject"

I'm trying to resize an array of a certain class passed as an argument, e.g. procedure Resize(MyArray: Array of TObject); begin SetLength(MyArray, 100); end; However, this raises an error "E2008 Incompatible types". Is it true that you can't do this (I've seen rumors, but no official documentation) or am I doing something wrong? ...

Can I zoom into a web page like IE or Firefox do, using programming?

Simple - I have a layout that is 800 by 600. When I press Ctrl and +, it zooms in and looks wonderful. I want to know if there's a CSS/Javascript way to do the same? Without the user having to do it (because users will not do it and see the small layout). Same question was posted by someone http://stackoverflow.com/questions/826708/set...

Resizing div after iframe change src...

So I automatically resize my iframe based on content height as follows: <iframe name="main" id="main" src="main.php" frameborder=0 scrolling="no" onload="this.style.height = main.document.body.scrollHeight + 5; this.style.width = main.document.body.scrollWidth"> However, I also use a link to change the src (utilizing target if anyone...

Should I resize my loaded images when switching to full screen in Flash

I have a swf that loads images from my server and resizes them to fit the 800x600 stage size. The original images are stored at 1024x768 max pixels. The user can press a button to go into fullscreen mode. What should I do to show the images at the best quality? a) should I resize the loaded images to their max size (1024x768) b) do I n...

no resizable in popup window dont work in firefox

i try to open new window with javascript window.open func, and add 'resizable = no' parameter, in ie its work , but in firefox it allow to resize how can i block it in firefox ? thanks. ...

iPhone get image width and size

hi all, i am new to iPhone. i want to get the height of a image. so i can set the frame of UIImageview accordingly. Please suggest how can i get the original size(width and height) of image. ...

IE8 Leaving space for Unneeded scrollbars

My page is a 3 column design with a header. It renders nicely in IE6 and IE7 (as far as i know). I use javascript to size certain elements of the page, to fit the browser window. On IE8 however, it tries to leave spaces for scrollbars, even when they are not rendered, resulting in a jumping effect when you resize (Page alternates between...

Resize an Uploaded Image in Silverlight 3

Hi, I'm trying to resize an image in Silverlight 3 that has been submitted by a user via the OpenFileDialog control. I can grab the contents of the file and put it into a WriteableBitmap object and then display it on the screen just fine into an Image control. The Image control will even resize it to fit the size of the image control for...

How to build a dynamic resize-able Flash player

Morning stackers! So my question today isn't dealing with any code, but how to go about this the correct way from the start. I have a video player built to a static size (max: 800x600) which I'll have to re-code every time I need it to be a different size. What I need it to do in the near future is dynamically resize itself and all the ...