resize

How to resize a Farseer body, along with it's joints and connected bodies ?

I'm using FarSeer and XNA. Is there an easy way to resize or scale a FarSeer body ? Thanks. ...

App Engine Cropping to a Specific Width and Height

I need to resize and crop an image to a specific width and height. I was able to construct a method that will create a square thumbnail, but I'm unsure on how to apply this, when the desired thumbnail is not square. def rescale(data, width, height): """Rescale the given image, optionally cropping it to make sure the result image has the...

Resizing an Icon to correctly fit in a ScrollPane corner button

Hi, I would like to add java's default questionIcon to a corner button in a Scrollpane, however the image doesn't fit correctly (since the button is very small). What should i do to make the icon fit correctly? Here is the code, It works, so you can try it out and see for yourselfs the problem :) import javax.swing.*; public class Co...

Silverlight resize textbox according to text size

Hi, I'm using Silverlight 4 and I want to create a childwindow with a TextBox, that the TextBox's width will be constant and it's height will be resized according to the size of the assigned text. Any ideas how can I do it? ...

Css and J-query menu cuts off due small page size.

Hello, my problem is that my menu which is designed using css and jquery is having some problems. Whenever I hover on the menu a long sublist drops down, it is ok for the bigger page size but it gets cut off whenever displayed on a small page. ...

Need help with layout (jQuery)

I already have this layout created using CSS, but its plagued with issues in IE6 and 7. So I'd like help recreating this layout using jQuery (and jQuery Only) for max compatibility. The only difficult part is the vertically and horizontally resizable (on browser resize as well) content area. Edited to add: I need to use jQuery for res...

Unable to resize JButton

I'm Stuck with how to resize the third button to became the same size like the other two and place it on the bottom. class ControlFrame extends JFrame implements Runnable { JButton jb_inc = new JButton(); JButton jb_zero = new JButton(); JButton jb_dec = new JButton(); ControlFrame() { super("Control Frame"...

how to resize image from url and make the size of the image smaller

Hello all, I have a joomla website with the virtuemart module. What I have are images and thumbnails which are hosted on a other domain. Virtuemart gives me 2 options: 1 - browse for image, a thumbnail will be automaticly created 2 - enter a URL for a image which is external hosted, this option doesn't have a resize option The way ...

Combine onload and onresize (jQuery)

$('.content .right').width($(window).width() - (480)); $(window).resize(function(e) { $('.content .right').width($(window).width() - (480)); }); Is there a better way to rewrite this more compactly? I want to call the function onload as well as on resize. Thanks! ...

jquery window resize help please

Hi i am using : $(window).resize(foo()) to detect when the window is resizeing... the foo() works fine but it only fires foo() after the resize has finished so it's not while resizeing. is there a way to make the resize smoothly. maybe a cancelBubble could be something to do with it but im not familiar with it. any help is appricii...

jquery window resize help please

i have this script below that will resize the ".content" on window resize it works fine but the only problem is that it jerks it waits until the resize has finished and then resizes the ".content" is there a wait to smooth the resizing that it resizes while the window resizes? javascript function foo(){ //e.cancelBubble = true; ...

How to resize a d3d application from an external application. (C#)

I'm trying to resize a d3d window from an external application, from my application. I can resize the window, but the d3d engine still thinks its 1024x768 or w\e res your running at. I was thinking a DLL inject, but how would i go about resizing the window. I did some research and i'm pretty sure i need to change the BackBufferWidth an...

Flash image upload with mandatory crop?

Anyone know of a Flash file (image) uploader that will force a user to resize and/or crop their image BEFORE uploading it? To then upload it as well. Basically, I don't want my server processing the image resize/crop. I want to specify a target aspect ratio and have the user resize and crop their image to make it fit. I've seen croppi...

How to generate a thumb image?

I have a folder of about 20000 images, and I need to generate thumb images for them. What's the fastest way to do this job? I know I can do it using some image resizing libraries. But I am wondering maybe there's already a tool or code snippets that could do this job. ...

JQuery: Detecting a Browser Resize

I am using this script from snipplr, How would I set it so the container div is 100px less than the newWindowHeight height, like -100 or something. <script type="text/javascript" charset="utf-8"> $(document).ready(function(){ //If the User resizes the window, adjust the #container height $(window).bind("resize", resizeWindow); function...

Win32 GUI flickering on resize

I have a Win32 GUI program with a tab control, each tab having a list view control. There is massive flickering whenever the window is resized. I've tried the following things: Handling WM_ERASEBKGND in the main wndproc and returning TRUE. No effect. Filtering out all WM_ERASEBKGND messages in the event loop. No effect. Setting the WM_...

android: quality of the images resized in runtime

I want to show images using drawBitmap() method. But before I want to resize it according screen dimensions. I have a problem with quality of result image. You can see screenshots and test code below. How can I resize images in runtime with a good quality? Thank you for solutions. Original image: Result screenshot on device: import...

Setting a custom control's aspect ratio

Is there a way, using XAML (and possibly Template Bindings) to keep a control's width in a certain proportion to its height? I would like for my control, at design time in Blend, to always scale evenly. ...

Please explain Ext-GWTs layouting (and resizing) model to me

I cannot seem to get my head around how to do a proper layout in Ext GWT that responds properly to resizes. I assume that I can declaratively specify layouts, put my components in them, and let the library take care of the rest; I just haven't figured out how yet. What I really don't want to be doing is writing resize handlers for my co...

wpf resize complete

So I need to procedurally generate a background image for a grid, it only takes .1sec. So I can wire into the SizeChanged event, but then when you resize the chart, it goes and fires the even maybe 30 times a second, so the resize event lags out signifigantly. Does anybody know a good way to wire into the resize event and test weathe...