Resizing Image and Not Keep Aspect Ratio

Is there a free program to resize images and not keep the original aspect ratio?
I need to resize loads of images to 100x100 pixels and have tried Image well and IResize yet they do not seem to have an option to not keep the original aspect ratio.
Thank you
20" Intel 2GHz Core Duo imac, 2GB Ram, 250 GB HD    

Hi, Downsize does not seem all that great according to reviews. Why not see if you can buy PS E' 3 mac -- maybe ebay/amazon (if I remember I only paid about $70 for PS E3) As PS E4 just came out I'm sure someone has PS E3 for sale. You will then have no problems completing your image resizing.
2 other questions for you..are you using the Mac side of your intel or Windows?
if your using the Windows side I can let you have PS 6 (PC) ..freegratus.

Similar Messages

  • Idvd not keeping aspect ratio when burning dvd

    Ok, what I am doing is creating the project in Final Cut, exporting using quicktime conversion (everything up to this point is 16:9) then I go to iDVD and what I need is a dvd that has no menus at the front or the end of the project, and it plays upon start. So I go to iDVD >file>onestep DVD from movie>select movie then insert dvd and it burns, But it burns it as 4:3, not the 16:9 I saved it as. I see nowhere to change this setting. Am I limited to only doing 4:3 projects with this type of dvd?

    I'm very surprised that if you followed the references I gave you, you are still having problems.
    Another solution is to use something called Anamorphizer that sets the file's widescreen flag so that it is recognized as anamorphically squeezed widescreen.
    Get Anamorphizer at http://homepage.mac.com/sith33/FileSharing34.html
    Make sure Quicktime 7 is open before you try Anamorphizer. (NOTE: You MUST use Quicktime 7 and NOT Quicktime X)
    Place a copy of your movie clip in a new folder and drag that clip over the Anamorphizer icon. This should create a second file in that folder that start with Anamorphic- This is the reference movie you drag-and-drop into iDVD. Note that your clip in that folder (which is the movie the reference movie points to, must not be moved or deleted).
    What I do is air projects on our local school board channel and just realized that idvd changes my 16:9 to 4:3 when doing the idvd> file>one step dvd from movie option.
    BTW, how does the DVD play in your computer? There may be an issue with the school board channel playback.

  • Merge pages and keep aspect ratio

    How can I  merge 10 20x200 mm pages into one A4 size (297 x 210 mm) and keep aspect ratio?
    i.e:
    Page 1
    <-- 20cm -->                                                                                                     |
      XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX          2cm
                                                                                                                            |
    Page 2
    <-- 20cm -->                                                                                                     |
      XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX          2cm
                                                                                                                            |
    Page 3
    <-- 20cm -->                                                                                                     |
      XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX          2cm
                                                                                                                            |
    Page 4
    <-- 20cm -->                                                                                                     |
      XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX          2cm
                                                                                                                            |
    Page 5
    <-- 20cm -->                                                                                                     |
      XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX          2cm
                                                                                                                            |
    How can I merge / print into one A4 page that would look like:
    XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX
    XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX
    XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX
    XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX
    XXXXX    XXXXX   XXXXX   XXXXX   XXXXX   XXXXX   XXXXX
    thanks

    multiple page option in your print dialog will keep aspect ratio but not same scale if you use different page sizes in your original pdf.
    here a few free imposition options
    http://www.imposeonline.com
    http://wiki.scribus.net/canvas/PDF,_PostScript_and_Imposition_tools
    http://www.noliturbare.com/pdf-tools/simple-imposition
    http://thekeptpromise.com/FreeApps.html
    http://www.iconus.ch/fabien/products/cbeng/cbeng.html

  • Resizing image and looks bad afterward

    So image manipulation in java is not my bag. I wrote a program to help save me time with my photography, the idea was that I could point it at a directory and then it would read all the files in that folder that are jpgs and resize them to blog ready sizes. This works really well cept the final images that are produced are not of same quality as say when I used GIMP to resize to the same size/aspect ratio the quality is much different. It looks like its a problem with setting my type perhaps to an only 8bit file? Maybe I am wrong, also goofed with the compression stuff (found code online) to turn the compression to 0 (i.e. no compression)...still no avail. Some code I am using:
        public static BufferedImage scaleImage(BufferedImage image, int imageType,
                     int newWidth, int newHeight) {
                 // Make sure the aspect ratio is maintained, so the image is not distorted
                 double aspectRatio = (double) image.getWidth() / (double) image.getHeight();
                  if(newWidth==-1)
                       newWidth=(int)(newHeight * aspectRatio);
                  if(newHeight==-1)
                       newHeight = (int)(newWidth / aspectRatio);
                 // Draw the scaled image
                 BufferedImage newImage = new BufferedImage(newWidth, newHeight,
                         imageType);
                 Graphics2D graphics2D = newImage.createGraphics();
                    //I admit little clue as to what im doing with the rendering hints.
                 Map map = new HashMap();
                 map.put(RenderingHints.KEY_INTERPOLATION,
                 RenderingHints.VALUE_INTERPOLATION_BILINEAR);
                 map.put(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY);
                 map.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                 RenderingHints hints = new RenderingHints(map);
                 graphics2D.setRenderingHints(hints);
                 graphics2D.drawImage(image, 0, 0, newWidth, newHeight, null);
                 return newImage;
        then the call to it looks like:
    public BufferedImage processLandScapeImage(BufferedImage img)
                  int width = Integer.valueOf(theHeight.getText()).intValue(); //my desired width
                  return scaleImage(img, BufferedImage.TYPE_INT_RGB, width, -1);
             }So this is close, the files dont look bad but alas... they still aren't the same quality. Should I post a sample of what I get with GIMP and what I get with my little program?
    Thanks to anyone who has some pointers...
    -Shane

    If you don't care about the original source BufferedImage, then you should be able to draw the image onto itself in an incremental fashion. That would avoid the use of intermediate images and consequently not throw the OOM.
    Also note that the code in that article has a slight hiccup. If you specify you want higher quality and targetWidth > w || targetHeight > h, then you'll get an infinite loop. So it needs to be structured slightly different (indeed, the intermediate images should probably be flushed since they're being draw to and from at least once).
    I didn't realize such a task was so non-trivial.If you're not worried about the speed, then I guess the trivial good-result way would be to use Image#getScaledInstance with the area average parameter. It's not so much that it's too slow for normal consumption (it isn't), it's just that the Graphics way is so much faster.
    GIMP probably uses a more sophisticated resampling technique like Lanczos or something.

  • Keep aspect  ratio?

    Hi,
    I created custom component(polygon) in Flex Builder, compiled and added to my add-ons.
    I got my custom component on stage in Xcelsius.
    I would like to keep aspect ratio of my custom component during resizing?
    Please check Spreadsheet Table component. Spreadsheet table and resize handlers keeps aspect ratio during resizing.
    How can i accomplish this?
    My thoughts:
    I could do this by adding mouse down and mouse move event to stage area. When user starts resizing component(mouse down pressed, mouse move dispatched) I could just simply calculate and change component minWidth and minHeight.
    Can I add events to stage area? If yes what kind?
    [Mariosh | http://mariosh.com]

    I agree it would help productivity if there were a "sticky" setting on the crop selections.
    In the meantime (assuming Adobe will eventually change this) you can use Synchronize or Copy Settings to apply a crop ratio to multiple images.
    There are a couple minor glitches/bugs using this approach :
    After synching, the crop size on the toolbar shows "Custom" rather than the actual ratio you set. I think it should display the chosen ratio, as it does when you choose a setting from the list.
    If you copy/paste, the ratio improperly shows "Original", and the list also shows "Original" checked. But the crop frame tool on the image correctly shows the pasted crop ratio. I've found you have to go back to grid view and return to develop to set it properly. Confusing, at best.

  • How to keep aspect ratio for different sized resolutions?

    If I have a 1280 x 800 resolution widescreen moniter, and I have this fullscreen game that likes to run in 800 x 600 but I don't like the way that the game stretches across the whole widescreen moniter. The only way for me to keep everything in a good aspect ratio is to put my resolution at 1280 x 800 but the game doesn't like that.
    Would there be a way to set it so that the 800 x 600 resolution is set to have the correct aspect ratio rather than being stretched across the widescreen?  ie, so it looks like a square with black spots on both sides.
    I heard that a modeline generator would be the thing I want, but I'm not sure how I should go about this stuff. If you have any reading on it, please give it to me.

    Thank you very much. I never thought to look in the BIOS.
    There wasn't an option to keep aspect ratio and stretch but I was able to center it rather than stretching.
    Now my framebuffer boot up got centered, I need to find out how to make the framebuffer bootup be 1280x800 rather than 1024x768. This should be simple, but the guide in the sample menu.lst only gives square-y resolutions.

  • How can one convert a picture to 1080 pixels in height at 72 dpi and retain the aspect ratio?

    How can one convert a picture to 1080 pixels in height at 72 dpi and retain the aspect ratio?

    The ppi has nothing to do with this. It will stay at whatever it is.
    Go to image>resize>resize image, turn ON Resample image and enter 1080 for the height, making sure to leave constrain proportions turned on. Don't mess with the ppi setting.
    If the image is set to another ppi setting, then after you're done with the above, go back into that window, turn OFF resample image, and set the ppi to 72. PPI only affects the inc/cm measurement.

  • I'm trying to retouch an image and I keep getting a message "you must option-click on the image to define a source point"  I ca't seem to get anything to work.  What is option-click?

    I'm trying to retouch an image and I keep getting a message "you must option-click on the image to define a source point"  I ca't seem to get anything to work.  What is option-click?

    leonieDF wrote:
    but always with the  (⌥) sign.
    Not always true. I have the wireless keyboard and the symbol is not on it (just looked at an old Apple wireless keyboard andit to doesn't have the symbol on it).

  • When I attach images to an email they show as the image and not an icon.  Is there a way to make the attachment an icon?

    When I attach images to an email they show as an image and not an icon.  Is there a way to have them attached as an icon?
    When I send attachments this way some people can't save them.   They can see them but not save them.
    Any ideas?

    They are received as attachments, i.e. icons. What you see is the real image on your disk, and only if small enough to be displayed. Otherwise, they are small icons inserted in the text.
    Additionally, when you place an image in the message, you will find an option in the lower right corner, otherwise absent. Use it, if need be.

  • Downloads Low resolution images and not the high resolution as it did in 08

    'm using iPhoto '09 , unfortunately iPhoto only downloads the low res images and not the high resolution images. This makes it pretty much worthless, since the low resolution images are really bad in iPhoto. There was not any problems with Iphoto in the past Thank You

    What do you mean by "downloading"? There are a couple of ways to get image file out of iPhoto:
    1 - select the thumbnails and drag them to the desktop. This will give you copies of the latest version of each photo.
    2 - select the thumbnails, use the File->Export->File Export menu option. Depending on how you configure the export you will get the original, the latest version and/or a reduced size copy that you determine.
    3 - select thumbnails and use the Share->Send to DVD. This produces a mini library of the photos you've selected which include the original files, thumbnail files and any modified/edited file. This method is intended for use on computers that are running iPhoto.
    Which method are you using?

  • Is there a way to do a spelling quiz in captivate using images and not questions as reference.

    Is there a way to do a spelling quiz in captivate using images and not questions as reference. Specifically i want have blank lines underneath an image, where the user looks at the image and types the correct letters to fill in the blank. For example a picture of a dog, with this _ _ _ underneath for the user to fill in, or in some cases perhaps having them fill in the vowel like so "d_g".I must have audio with this , as the students will be able to listen to the audio sound out the word phonetially to help them be able to type it!
    Appreciate any advice! Cheers!

    Hello everybody!
    This widget is great!! Thank you for that!!
    I searched for something like that earlier and made an other workaround:
    http://forums.adobe.com/message/1912430#1912430
    The Javascript did not work in my test. I brought to the "if you reach this slide" feature but it failed.
    Regards,
    Markus

  • Stretching images while retaining their aspect ratio..?

    Hello,
    I'm looking for a method that will allow me to resize an image (div background or regular img) to fit as tall and wide as the container allows, while retaining the image's native aspect ratio.
    The method I'm currently using is :
    #bg {
        height:100%;
        width:100%;
        position:fixed;
        left:0;
        right:0;
        top:0;
        bottom:0;
        padding:0;
        overflow:hidden;
        z-index:-1000;
    #bg img {
        height:100%;
    <div id="bg"><img src="/images/image0.jpg" /></div>
    However, this method only seems to work when the body is the container, and will only keep one of the two axis within view. I can specify either height:100% or width:100%, but not both because that will skew the images natural aspect ratio.
    What I'm trying to accomplish is to block off 100 pixels at the bottom for navigation, 300 pixels on the right of the viewport for a text column, and leave the rest to be filled by an image that would stretch as much as the space allows (again, while retaining its aspect ratio).
    Your suggestions are welcome!

    Hello
    First of all, you should never use dreamweaver option to modifie an image. Always use the appropriate programe to resize your image ( Photoshop or illustrator). Even if the web standart are 72 dpi you might never know what is the format of your image, and by stretching too much or downscaling it's size too much you will .. well.. have a low result.
    Next : why do you want to keep a zone for navigation ?. Background by default cover everthing, and if you put your navigation on top of it, it will cover the background and make it invisible at that spot because your navigation will be on top of it.
    Anyway What you want to do is first define exactly the maximum size of your Bg minus the zone you want to keep blank. Then put the bg and use option like Margin-right, margin-top to force the image to be where you want it to be.
    Margin-bottom: 100px for exemple.
    You can achieve that in your CSS setting i believe.
    Hope this help.

  • Resizing et moving Components with aspect ratio constraint

    hi all
    i m creating a GUI application and i need to manipulate components in an internal fram .
    thoose components must be moved and resized with the mousse with the constraint of aspect ratio keep
    thx for your help

    real thxno problem morfus
    Don't know whether you've come up with anything, but I got bored and implemented it. Resizeable has been changed so now you can set an aspect ratio on it, either an angle or x and y lengths
    package tjacobs.ui;
    import java.awt.Component;
    import java.awt.Cursor;
    import java.awt.Dimension;
    import java.awt.Point;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    //For testing
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    * tjacobs.ui.Resizeable<p>
    * Makes a component resizeable. Does not work if there's a layout manager
    * messing with things<p>
    * <code>
    *  usage:
    *                 Component c = ...
    *                 new Resizeable(c);
    *                 parent.add(c);
    *  </code>
    public class Resizeable extends MouseAdapter implements MouseMotionListener {
         int fix_pt_x = -1;
         int fix_pt_y = -1;
        Component mResizeable;
         Cursor mOldcursor;
         private Double mAspectRatio;
         public Resizeable(Component c) {
              mResizeable = c;
              c.addMouseListener(this);
              c.addMouseMotionListener(this);
         public void setMaintainAspect(double x, double y) {
              setMaintainAspect(new Double(Math.atan2(y, x)));
         public void setMaintainAspect(Double angle) {
              mAspectRatio = angle;
         public void mouseEntered(MouseEvent me) {
              setCursorType(me.getPoint());
         private void setCursorType(Point p) {
              boolean n = p.y <= WindowUtilities.RESIZE_MARGIN_SIZE;
              boolean s = p.y + WindowUtilities.RESIZE_MARGIN_SIZE >= mResizeable.getHeight();
              boolean w = p.x <= WindowUtilities.RESIZE_MARGIN_SIZE;
              boolean e = p.x + WindowUtilities.RESIZE_MARGIN_SIZE >= mResizeable.getWidth();
              if (e) {
                   if (s) {
                        mResizeable.setCursor(Cursor.getPredefinedCursor(Cursor.SE_RESIZE_CURSOR));
                        return;
                   mResizeable.setCursor(Cursor.getPredefinedCursor(Cursor.E_RESIZE_CURSOR));
                   return;
              if(s) {
                   mResizeable.setCursor(Cursor.getPredefinedCursor(Cursor.S_RESIZE_CURSOR));
                   return;
         public void mouseExited(MouseEvent me) {
              if (mOldcursor != null)
                   ((Component)me.getSource()).setCursor(mOldcursor);
              mOldcursor = null;
        public void mousePressed(MouseEvent me) {
              Cursor c = mResizeable.getCursor();
              Point loc = mResizeable.getLocation();
              if (c.equals(Cursor.getPredefinedCursor(Cursor.SE_RESIZE_CURSOR))) {
                   fix_pt_x = loc.x;
                   fix_pt_y = loc.y;
                   return;
              if (c.equals(Cursor.getPredefinedCursor(Cursor.E_RESIZE_CURSOR))) {
                   fix_pt_x = loc.x;
                   fix_pt_y = -1;
                   return;
              if (c.equals(Cursor.getPredefinedCursor(Cursor.S_RESIZE_CURSOR))) {
                   fix_pt_x = -1;
                   fix_pt_y = loc.y;
                   return;
         public void mouseReleased(MouseEvent me) {
              fix_pt_x = -1;
              fix_pt_y = -1;
         public void mouseMoved(MouseEvent me) {
              setCursorType(me.getPoint());
         public void mouseDragged(MouseEvent me) {
              Point p = me.getPoint();
              int width = fix_pt_x == -1 ? mResizeable.getWidth() : p.x;
              int height = fix_pt_y == -1 ? mResizeable.getHeight() : p.y;
              if (mAspectRatio == null) {
                   mResizeable.setSize(new Dimension(width > 1 ? width : 1, height > 1 ? height : 1));
              else {
                   //do something
                   double distance = Math.sqrt(width * width + height * height);
                   width = (int) (distance * Math.cos(mAspectRatio));
                   height = (int) (distance * Math.sin(mAspectRatio));
                   mResizeable.setSize(new Dimension(width > 1 ? width : 1, height > 1 ? height : 1));
         //For Testing
         public static void main(String args[]) {
              JPanel jp = new JPanel();
              JButton jb = new JButton("hello");
              JButton jb2 = new JButton("hello2");
              jp.setPreferredSize(new Dimension(300,300));
              jp.setSize(300,300);
              jp.setLayout(null);
              jp.add(jb);
              jp.add(jb2);
              jb.setSize(20,20);
              jb.setLocation(2,2);
              jb2.setSize(30,20);
              jb2.setLocation(30,10);
              new Resizeable(jb);
              Resizeable r = new Resizeable(jb2);
              r.setMaintainAspect(30, 20);
              JFrame jf = new JFrame();
              jf.add(jp);
              jf.setDefaultCloseOperation(jf.EXIT_ON_CLOSE);
              jf.setLocation(100,100);
              jf.pack();
              jf.setVisible(true);
    }

  • Resizing custom component with fixed aspect ratio in designer

    Hello,
       I have a custom component that can have a fixed aspect ratio depending on certain property settings and I would like to know if there is any way to make the component resize in the designer in the same manner that the XCelcius built-in spreadsheet table component does?
      It is possible to workaround this somewhat by correcting the width or height of the component after resize, XCelsius sees the change and stores it correctly but sometimes the IDE "remembers" the old value. For example if the component changings its own height programmatically in response to a property and then, while keeping the current component selected, the user resizes the width XCelsius sometimes tries to put the old height back even through it has the correct height saved in the XLF and works fine when compiled.
      Is there a way to properly notify XCelsius IDE of a programmatic width/height change in the component itself in response to a property change?
    Thanks

    The SDK does not support reszing a component using a fixed aspect ratio.
    Do not set the width and height of your component directly. You can set the initial size when dropped onto the canvas using the measure function...
    A better approach is to let the user size the component on the Xcelsius canvas.
    And instead of rendering directly in your add-on, move that code into a child renderer. Then use your aspect ratio to calculate the max size the child renderer can be to fit in the component. Then center your child renderer in the component. That is what I did when I created AnyMap.
    |--------------------------------|
    | component on canvas            |
    |--------------------------------|
    |  |--------------------------|  |
    |  | centered child renderer  |  |
    |  |--------------------------|  |
    |  |                          |  |
    |  |                          |  |
    |  |                          |  |
    |  |--------------------------|  |
    |--------------------------------|
    Regards
    Matt

  • Resize flash movie while maintaining aspect ratio?

    Hey all,
    We have created an extremely content heavy .swf file (1900 x
    1400) for a presentation that runs full screen on a monitor at a
    screen resolution of 1900 x 1400. I think that was the
    resolution... I've been away from the project for a while and I
    can't remember. anyways....
    now we need to shrink the .swf down to a more reasonable size
    so that we can make a cd rom out of it. Probably needs to be shrunk
    to about 800 x 600. Is there an easy way to shrink the .swf in
    flash from 1900 x 1400 to 800 x 600 while maintaining aspect ratio
    and keeping all items on stage?
    I sure hope so! I'd hate to have to recreate the entire
    thing! It was a HUUUGE project with a ton of content.
    Thanks in advance for any help or suggestions!!!!

    Hey all.... I am just now working on this project.
    I've created my .fla file and I'm trying to load a .swf into
    an empty movie clip. It didn't scale down like I want it to and it
    was still appearing as the normal size file. So I added the
    container._height = 500; and container._width = 800; When I added
    the width and height the .swf inside the empty mc container
    disappeared!!!!! Any idea why???
    Here is my code:
    stop();
    this.createEmptyMovieClip("container",
    this.getNextHighestDepth());
    loadMovie("hlhuntyears.swf", container);
    container._width = 800;
    container._height = 500;
    container._x = 0;
    container._y = 0;
    I export it as an .exe since its going to be a cd rom and
    when I double click the .exe to run it I get a blank screen. But
    when I take out height and width it shows up but not to the correct
    scale. The original file (hlhuntyears.swf) is 1440 x 900 and when I
    run the .exe I can only see a tiny piece of it. Can anybody help??
    please??

Maybe you are looking for

  • Is multiple project export possible ?

    it would be nice to be able to set multiple projects up for Media Browser Export ! perhaps an apple script or an automator script . i have a couple projects ready to render in Large and Medium size ! but its time consuming and it is a waist of time t

  • Losing video quality when placing in timeline....??

    I'm having a problem with this bunch of videos.... when I import them they appear full quality in the viewer and everything looks fine, but as soon as I drag them onto the timeline (using any method....overwrite, replace, any of them) the quality get

  • ARD 2.2 and RealVNC 4.1.1 question

    Hello everyone, I have ARD 2.2 on my Powerbook and RealVNC 4.1.1 (Free Edition) installed on my PC desktop. I have tried several time to connect from my Laptop to the PC desktop using ARD but I couldn't, it said "Connection failed" on my laptop. Ther

  • Site doesn't show up in ie!

    Hi! I hope someone can help me.  I have been making websites for a little while and been mainly using free css based templates to get my designs started.  For the first time I decided to start from scratch using one of Dream Weavers standard template

  • Another messed up iPod...

    ok ive read the forums and believe me i dont want to flood it with another one of these posts but ive honestly done everything i can to try to fix my ipod so here goes. I recently bought a brand new computer and upon hooking my ipod to it the thing s