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

JavafX - Dynamic ImageView Set Default Size

I have an ImageView which I have configured so that it is resized to fit its parent AnchorPane with the two following lines of code (both the AnchorPane and the image are…
Ivar Eriksson
  • 863
  • 1
  • 15
  • 30
0
votes
1 answer

Tkinter: Creating a static frame size inside a pre-existing frame window

I have an app that has a frame which houses a gridview of information regarding product data. I want frame3 to have a static window size with a scroll bar. The scroll bar, not implemented yet, will allow the user to scroll down to see the remaining…
Miggy
  • 63
  • 2
  • 8
0
votes
1 answer

CSS: How to enlarge a child div of a div and set two images to top and bottom fixed when resize screen

I'm using bootstrap and I have some html like this:
0
votes
2 answers

@media Query Working in IE, Firefox, and Edge, but not Chrome

I have created a media query to shrink a div's (#example in this case) padding if the screen width goes below a certain point. See the example below. @media screen and (max-width: 733px) { #example { padding-left: 90px; } } This query works…
pi905
  • 25
  • 8
0
votes
0 answers

Looking for a better solution than CONSTRAINED_RESIZE_POLICY?

Hello I have a JavaFX tool with a TableView in it. This view has a lot of columns. At the moment i set the column resize policy to "CONSTRAINED_RESIZE_POLICY". It's fantastic that every column is always on the screen and if I resize the window…
user2878195
0
votes
1 answer

Resize a swing component based on resizing of the tool

I am developing a swing UI where I need to change the size of the textArea when the tool goes full screen or someone manually does a resize.. I am using netbeans GUI builder so obviously everything is in the GroupLayout. My current GUI has lets say…
Himanshu Gupta
  • 77
  • 1
  • 1
  • 9
0
votes
1 answer

How to improve performance of JQGrid when trying to resize it after loading?

I am having JQgrid this way,
$(function () { …
user1660325
  • 747
  • 4
  • 20
  • 35
0
votes
1 answer

Source page doesn't resize with iframe height changes

I'm using a simple JavaScript code to resize an iframe based on the content being loaded (it's all in domain). However i'm getting the situation where; when the iframe resizes for a page with a lot of content that requires scrolling on the source…
coltras
  • 27
  • 4
0
votes
1 answer

CSS: How do I arrange 3 elements into columns with the middle element filling in between them?

I have 3 elements I want to arrange into columns. I want the left and right elements to stay fixed widths and align to their respective edges of the page, but the middle element I need to fill in the space between them. How do I do this?
Hamster
  • 557
  • 2
  • 7
  • 12
0
votes
1 answer

How to get the width of a text view in an action bar?

I have an action bar with a title. Another string is added dynamically to the action bar. I have tried using OnSizeChanged and addOnLayoutListener to resize the action bar title according to the length of the string added latter.The action bar title…
0
votes
1 answer

Align JPanels with JTable columns

I've created an additional header consisting of JPanels for a JTable. Each JPanel should be as wide as the corresponding column of the JTable below. This works if widths are fixed. However, I want the JTables columns to be resizeable with the…
user4591830
  • 35
  • 1
  • 7
0
votes
2 answers

Array-based Stack using c#

I already implemented method to implement Push, Pop, Peek on an array-based Stack. But i'm stuck at the method to return the size of the stack and implement dynamic resizing as I dont understand what is "dynamic resizing" is. Please help!
Ho My Ha
  • 13
  • 5
0
votes
1 answer

Truly responsive percentage image resizing independent of the container

OK so I am looking for truly responsive percentage image resizing that is independent of the container. In other words I want to resize the image relative to it's own size. The reason is so I can dynamically resize all images on a page for smaller…
Netspud2K
  • 1
  • 2
0
votes
2 answers

Refresh WPF Grid layout upon removing elements at runtime

I have a wpf application in which I am using a wpf grid and adding/removing controls dynamically to it. Adding controls is fine but upon removing they disappear from the grid but left the vacant place in them, which I want to be occupied by filled…
Manvinder
  • 4,495
  • 16
  • 53
  • 100
0
votes
1 answer

iOS - Problems dynamically resizing tableviewcell

I know that there are many potential answers to this question on here already but 99.995% of all the answers so far that I have seen use sizeWithFont, which is now deprecated. I have one tableviewcell that I am dealing with here so it should be…
cspam
  • 2,911
  • 2
  • 23
  • 41