Advertising
advertising
related pastes to tag 'resize'
- 747991 - L0cky: php resize aspect ratio image
-
- if(($src_width - $dest_width) >= ($src_height - $dest_height))
- {
- $dest_height = ($dest_width/$src_width) * $src_height;
- }
- else
- {
- $dest_width = ($dest_height/$src_height) * $src_width;
- }
- 747988 - L0cky: php resize aspect ratio image
-
- /*
- Check which dimension has the smallest distance, making it
- suitable for a straight resize. The other dimension can then
- be padded to restore the ratio.
- */
- if(($src_width - $dest_width) >= ($src_height - $dest_height))
- {
- $dest_height = ($dest_width/$src_width) * $src_height;
- 691788 - Simple script to resize videos t: ffmpeg resize videos aspect ratio height width
-
- #!/usr/bin/php
- <?php
- // outputs the username that owns the running php/httpd process
- // (on a system with the "whoami" executable in the path)
- $cmdWidth = 'midentify '.$argv[1];
- $finalHeight = $argv[2];
- //var_dump($output);