Questions tagged [dynamic-resizing]

Dynamic resizing usually refers to on-the-fly resizing by a web server. This feature reduces development time and webmaster overhead by eliminating a common pain point in web development.

Dynamic (server-side) resizing can be difficult to implement properly. Image scaling is an inherently resource-intensive operation, and should always be coupled with a thread-safe caching system. File access synchronization can be difficult when dealing with large files and long 'open' times.

A correct implementation should

  • Not allow photos to be accessed that would not normally be publicly accessible.
  • Cache image results to

Dynamic image processing libraries by platform (With a URL API)

Ruby

PHP

ASP.NET

This may not be a complete list - Feel free to add any library that is missing.

70 questions
0
votes
1 answer

Panel to be autopositioned inside a canvas in Flex

I am developing a flex screen, in which i have a canvas, above to that there will be a button, by clicking that button we can create panels dynamically.My problem is if a panel was manually dragged and kept in the position where new panel to be…
0
votes
2 answers

How to set the size of JTextPane according to the size of JPanel?

I want to set the size of the JTextPane according to the size of the panel so that when i add other panels, it changes accordingly. But it just gives a small text pane in the center and when i add some text, it's size changes accordingly. JPanel…
UsamaMan
  • 695
  • 10
  • 28
0
votes
3 answers

Javascript and CSS Dynamic-Width Float Glitch When Resizing

I've got a snippet of code working fairly well thus far, but there's a small glitch that needs to be worked out. The goal is to have two items next to each other where one is a fixed width and the other fills the remaining available width within a…
tedgrafx
  • 11
  • 3
0
votes
1 answer

header containers expand/contract with images

I've been trying to tackle this for awhile and been ignoring it but now I gotta get it fixed. See, when the window is resized, whether larger or smaller, I want teh header area to proportionately change sizes with header image so it looks clean on…
WASasquatch
  • 611
  • 2
  • 8
  • 23
0
votes
1 answer

How do I resize a path already closed on an HTML5 canvas?

I have a quadratic curve rendered on a canvas. I want to animate it by means of window.setInterval and changing it's dimensions (note not simply changing it's scale) thereafter. How do I retain an editable reference to the path after calling…
user1561108
  • 2,666
  • 9
  • 44
  • 69
0
votes
1 answer

CSS/JS Dynamic Width & Font Size

I have a client site with a navigation feature that has been very tightly designed (and not by me): It consists of an unordered list, with three DIVs in each list item:
0
votes
1 answer

Imagemagick conditional resizing

I want to shrink the images only if they are bigger than the size 300X100 dimension, for example: If image is 250X200 dimension I want it with 250X100 dimension If image is 420X90 I want it with 300X90 If height or width are greater than 300X100 …
MadhuB
  • 97
  • 2
  • 3
  • 11
0
votes
2 answers

Using jquery, dynamically and proportionally resize an img

The problem: To make an image inside a plugin resize dynamically (H&W, proportionally) inside a div that gets shorter on window resize (there are essentially three areas: Top - static, bottom - static, middle - dynamic) with width:100% and top:#px…
Adam
  • 1,022
  • 3
  • 13
  • 30
-1
votes
1 answer

How to get an Applet in a table-row to size dynamically

I need to insert an applet into a table-row and get that table-row's height to dynamically resize according to the browser's window size. If I put fixed values for width & height in the td-tag, it shows the applet fine, but I need to be able to…
slashmais
  • 7,069
  • 9
  • 54
  • 80
-3
votes
1 answer

dynamic resizing of iframe for cross domain servers without access

My object is to remove the scrollbars of an iframe for cross domain servers, which I don't have access to. Page A has an iframe which displays contents of an external server The content is not fixed, its height changes with time so I can not fix…
1 2 3 4
5