Resizing a photograph for print (aspect ratio)

Hi, I am hoping someone can help me with something that seems like it should be very simple, but I can't seem to figure out.
When I import my pictures from my DSLR into Bridge and then open in Photoshop the image size is varies, but typical size is 16"x22" and I want to be able to print the full image as an 8"x10" without cropping or loosing any parts of the image.  Is there a way to do this?  When I try to simply decrease the image size, the measurements never come out to 8"x10", sometimes it actually gets larger and not smaller.  I have even tried resizing the canvas and that makes it worse.
Ideally once I get this figured out i would like to try to make it an action so that I can prepare multiple photographs at the same time.
Thanks :-)

Increase the ppi.
Use this formula:
inches X ppi = pixels
Knowning any two of the above values will give you the third. 
So 1200 px / 300 ppi = 4"
1200 px / 72 ppi = 16.66"
Luckily Photoshop will do the work for you.
Image>Image Size  Unselecting the box for resampling will fix the pixels so they do not change therefore no adding or subtracting pixels.
By editing the physical size the ppi will change - editing the ppi will change the physical size. Try it out, you will see they are tied together, one goes up the other must go down.

Similar Messages

  • Resizing a photo for printing

    I am trying to resize a photo for printing to a 8x10 as it still crops off the top and bottom when printing. I took this with my D3100. How can I do this? I have tried printing several times.

    Your image does not fit the 8x10 format - so it will always crop - probably not what you wanted to hear. But a couple of solutions for you:
    Print the image on a larger paper so that it will fit, you will end up with a border - but will fit or
    Resize the image in Photoshop - Image/Size to something like 9" high, that will automatically reduce the width of your image, but you will still end up with a border, but the whole image wil be there
    Hope this helps, and maybe next time you can frame the image in camera to ensure your subject fits in a 4x5 ratio (leave a bunch of headroom at top and bottom)
    Mike

  • 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.

  • Actions for converting aspect ratios

    Here is a little tip if you want to resize your camera images for a slide show.
    I needed to convert and resize my 3008 x 2000 RAW images to PAL Standard for a slide show.  I use PS CS3 and I was using IMAGE>Pixel Aspect Ratio to convert the file then IMAGE>Size to resize to 720 x 576.  I decided to create an Action to autoamte the process and when I opened up ACTIONS lo & behold Adobe have already created an Action for all the NTSC and PAL formats.
    All it takes is to open your image, select Actions and select the format you want, that is it.   All I need to do now is create a Batch File to automate a over 200 image files.
    If like me you use PSD files then they must be flattened first and the Action is not written for images in portrait mode, these have to be done through IMAGE>Pixel Aspect Ration and then IMAGE>Size  with the width and height transposed and Constrain Proportions unticked.
    Doug.

    Doug,
    I agree that Actions are the way to go in PS. Mine also change the Color Bit Depth Mode to 8-bit, as I am almost always working in 16-bit, when I process my Camera RAW files. Not sure about the included PS Actions, but in PS CS2, I have just written several that do all the pre-processing, and then do a Automate>Batch for entire folders of these images. I also will keep the files in PSD format, when I do the final Save_As.
    This ARTICLE covers most of my operations, using your workflow.
    Nice to know that PS installs with Actions that can do most of this. I never saw them in CS/CS2, but maybe just did not look, or perhaps Adobe has added them in CS3/CS4. Nice to know.
    Thank you,
    Hunt

  • 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

  • Editing two files together for proper aspect ratio output

    hello,
    i have 2 files that are 720 x 480 which i'll edit into one project playing together side by side.
    this will then show on a projector with a native resolution of 1280x800.
    i do not want to crop the sides of two source files by half, but to crop them by a lesser amount to make a wider pairing that will play well with the projector's 16:10 aspect ratio, with no black banding.
    to begin my project: 768x480 (same 16:10 ratio as the projector) is not an option to select as a project starting point. 1280x800 is also not an option, and although the crop is actually perfect in a 1280x720 project, i don't want fcpx to do the upscaling, and i believe the 16:9 aspect ratio would lead to black banding top/bottom when shown on the projector.
    i'm not sure where to begin, any advice would be appreciated,
    thanks.

    Unfortunately, FCPX does not offer any 16:10 project settings. The different resolutions offered for HD formats refer to pixel ratio rather than actual dimensions. A project in FCPX is going to be either 4:3 or 16:9. There are a couple of things you can try, but my recommendation would depend on what program will be used to output the movie to the projector (QuickTime?). The 1280x720 dimensions are the standard 720p resolution and is as close as you will get to your desired resolution. If you are worried about the banding that would occur when displaying a 16:9 file on a 16:10 projector, the easiest solution would be to use the media player to stretch the movie to fill the screen. If you have Compressor you could encode your FCPX output to your desired resolution, but you will still be stretching the image. If you want more assistance provide a little more info, are the soure files 4:3 or 16:9 for example, and I may be able to offer more advice if I know a little more.  

  • 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??

  • Tips for import aspect ratio (4:3 & 16:9 widescreen)

    I have spent several weeks importing video footage from various types of DVDs (old, new, PAL, NTSC, 4:3 and 16:9), and have encountered just about every aspect ratio problem known to Mac. Along the way, I have discovered a few things by trial and error, and wanted to share them with any other poor souls out there who are dealing with similar issues.
    Note that this does not, as far as I know, apply to camcorder footage.
    Please respect all local laws regarding copying of DVDs!
    Useful programs:
    • MacTheRipper (freeware)
    • Cinematize (you have to pay, but it's downloadable and not expensive) for processing and converting video footage into a format iMovie can understand (.mov files for video and .aiff files for sound)
    • Amadeus II (freeware) for processing and converting sound files
    • iMovie HD
    • iDVD
    If your aspect ratio is coming out wrong (stretched or squashed), try the following:
    • If you want to import just an excerpt, rip the entire DVD with MacTheRipper, then isolate the required excerpt with Cinematize & import into iMovie. This tends to work better than ripping only excerpts with MacTheRipper.
    • Import into iMovie all elements together (i.e. the sound .aiff, the video video.mov, and the combined file .mov). One or the other will probably be in the correct aspect ratio. This works better than importing just the .mov file by itself. Whatever you don’t need can be deleted later.
    • If you want to make a Widescreen project, do this first (choose ‘DV Widescreen’ when creating the project). Then create a separate project in ‘DV’ (not ‘ DV Widescreen’) format. This option is available only when creating a new project in iMovie. Then import the 4:3 video (all elements together, as above) into the DV project. Lastly, copy the 4:3 video clip ('copy' in th Edit menu), close the new project, open your Widescreen project and paste the clip (see iMovie The Missing Manual (Pogue) page 261 ‘Grabbing Clips From Other Projects’). It should appear properly pillarboxed and looking like 4:3!
    • In iMovie/Preferences/Import, there's an option 'Automatic DV Pillarboxing and Letterboxing' which you might need to fool around with. It may solve some, but not all of your problems!
    • A tip about Themes in iDVD: They may appear in 4:3 even if your project is 16:9 widescreen. I have an old DVD player which played the DVD I burned with the theme stretched. When I played the DVD on my computer, however, it recognized the different aspect ratios (4:3 for the theme, 16:9 for the video) and played them correctly. I suspect that a modern DVD player would do the same.
    Good luck, and happy movie-making!

    Connect two camcorders using a 4-pin-to-4-pin FireWire cable. Press Play on one and Record (..in VCR mode..) on the other.
    However (..but I haven't tried it, and it's a bit too late tonight to plug two camcorders together; maybe tomorrow..) I'd guess that the 16:9 will be transferred as 16:9 ..I don't know if it'd be possible to force the 2nd camcorder to crop it as 4:3.
    However, two other points: Dan reminds us that you can always crop 16:9 to 4:3 just by creating a mask, and Bob Whatsisname? ..Hudson, of course!.. shows how you can unsqueeze squashed 16:9 using QuickTime Pro.

  • Resizing Screen Shots for Print

    Hello,
    I have been tasked with capturing screen shots in order to print them in a manual. I used PrtScr and saved them as a .TIFF. I know there are problems with this kind of printing, and I was hoping to learn the "right way" since I will have to do this quite often.
    I have read in profession book and magazine printing articles that they re-create the screen shot because screen shots just don't print well, so I am not expecting miracles. I just want to get a process in place so these screen shots can look the best they can without re-drawing them or something.
    So when I opened the screen shots in Photoshop they are 96dpi and the pixel dimensions are 1122x871. I would like to reduce the pixel dimensions by 1/3 as they are too large, and increase the resolution, but I am pretty sure that won't do much. Plus the screen shot looks blurry and unsharp mask doesn't fix it much.
    Any help with this process would be appreciated.

    To me it seems a screen shot at 1100+ pixels and printed in a small manual could end up with the user interface elements printing so small that they could be difficult to see in the final print.  As an example, consider how big the menu being shown will be a print at, say, 4.5" width of both of these screens:
    Some other things to consider:
    Along the same lines as the above, you might want to turn up the Windows display scale factor.  Windows 7 provides settings in the Control Panel\Appearance and Personalization\Display dialog.  At 150% the characters and UI elements are made up of more pixels.
    Consider also turning off ClearType font smoothing as these will only make the letters in prints seem fringed with color - not normally a good visual.
    -Noel

  • Graphic for web , aspect ratio 16/9 to be displayed in any monitor

    i have to realize an animation 15 sec as intro for a web page, what is best preset in motion to wirk with hdv? dvdpro?
    and what is the right deliver format for web? ( web page maker asked me an AVI i don't have in compressor that extension, i am supplying an h264)

    hi,
    work in any preset you like. It depends on what footage you are using if any. You will just want to make sure its set to anamorphic so it will be 16 x 9.
    When you deliver you can choose what size ( ie width and height in pixels) to output at.
    As has been discussed here recently avi is a container for many different flavours of codec. I would ask the web page man to be more specific ( and not to choose an avi style but thats my opinion ). Compressor doesnt save as this so you will have to save as some other format and then convert with a someother software. Unless there is a quicktime extension like Perian or flp4mac that handles it?
    hth
    adam

  • Adapt app runtime for diferent aspect ratio

    as I can scale and position the sprites of a stage and that they are in an area defined by the screen size (the image of serious background constant) but to adapt the sprites within a frame or area that would be the screen size.
    The algorithm would be:
    - Detect screen size
    - Create an area to locate the position and size of the sprites
    They can help me with this I'm trying to adapt a workable app to suit 1920x1080 (1.7)  960x640 (1.5)  without the sprites are stretched.

    They can give me a hint of this.
    Regards

  • Sequence Aspect Ratio for HD

    I am transferring HD video from AVCHD into FCP 6.0.4, and I need to know what the correct setting is for the aspect ratio (in the sequence preset editor). The footage is captured 1920x1080 at 30p. I plug that all in, but the only choice for plain HD at 16:9 is at 1440x1080. If I want to select 16:9 it's called HDTV 1080i???
    Can someone help me understand why there is not a setting for HD 1920x1080 in that window? Is it normal for me to have to select 1440x1080? Even though all the other settings are at 1920x1080???
    Also, do i have to check anamorphic 16:9?
    Thanks in advance!

    I'm sorry, I'm a bit confused.
    this time I set up my session/sequence to be for 1440x1080, transferred the media into the session. When I drag my first clip into the Canvas - the FCP pops up a window saying that the clip and the sequence don't match. I tell it to correct it - and it puts it back to the 1920x1080 - HDTV 1080i setting.
    What am I doing wrong? Should I be converting it differently?
    And which is correct - anamorphic or no???
    Thanks

  • The (new) Premiere pixel aspect ratio is wrong for my PAL DV cam footage

    I've had a Sony TRV-950E DV-cam since 2003. I've been shooting DV PAL in widescreen.
    I just bought Elements 12 to edit my footage, and discovered that the pixel aspect ratio for D1/DV PAL Widescreen has been updated to 1.46 (old value 1.42).
    The theory behind this change is that video recorded on 720x576 is slightly wider than 16:9 and that the 16:9 portion is 704x576.
    Unfortunately this is not correct for my footage! I've captured the video from my DV-cam (by firewire) and opened it in Premere and it is streched to be shown as 1050x576.
    So I did a test:
    I filmed a steady shot of a perfect circle and captured the video from the camera and opened it in Premiere. The pixel ascpect ratio 1.46 makes the display 1050x576.
    The question is: Am I seeing this displayed as a perfect circle now?
    This can be tested:
    I make a picture of a perfect circle in Photoshop (square pixels) with size 1024x576. I imported this picture into the Premiere project, and match the two circles: The filmed one, and the Photoshop one.
    They DO NOT match! The one on the video is slightly stretched in width.
    So then I stretch the Photoshop picture in width to become 1050x576. I then import this picture into the project. And now I have a perfect match between the circles!
    This means that my DV camera actually records a 100% 16:9 picture on all the pixels 720x576 - and not a slightly wider picture with the 16:9 part being in 704x576 (which is the reason for the change in pixel aspect ratio from 1.42 to 1.46).
    I have some HD scenes that I want to import (and downscale) into my SD project also, and I also have a lot of still pictures.
    Unless I can change the setup i Elements to the correct ratio 1.42, these stills and sqare-pixel-video (HD) should ideally be streched from 1024x576 to 1050x576 to match (become equally stretched as) all the SD footage.
    How do I solve this?
    I just bought Elements 12 three days ago.
    (I just tried opening the captured video in Windows Movie Maker - and that program must use pixel aspect ratio 1.42 since the video is diplayed correctly as 1024x576 with a perfect circle)
    Regards,
    Tom from Norway

    Tom
    After much thought and exploration and experimentation, I have come to the conclusion that there is no practical purpose for doing anything other than importing your media into the project and editing/exporting. I find no distortion in doing so, be it in the video samples that you posted or in still models that I created for the pixel aspect ratio 1.422 vs 1.4587 for D1/DV PAL Widescreen.
    If you have not already, please read the following about the Adobe DV Widescreen Pixel Aspect Ratio change from 1.422 to 1.456.
    Please start in the first link which gives some get subsequent links in it
    http://forums.adobe.com/thread/673877
    http://www.mikeafford.com/blog/2009/03/pal-d1-dv-widescreen-square-pixel-settings-in-after -effects-cs4-vs-cs3/
    Also, you may find the following article on square and non square pixels of interest. It uses the PAL DV Widescreen 1.422 pixel aspect ratio in its discussion.
    http://library.creativecow.net/articles/gerard_rick/pixel_madness.php
    Aside from the explanation for the rights and wrongs of the matter, this is what I actually observed taking your PAL DV AVI Widescreen  and PAL MPEG2.mpg Widescreen  into the same Premiere Elements 12 Windows PAL DV Widescreen project. Along with your video files were still images that I created in Photoshop Elements 11 Full Editor:
    1024 x 576 document with a red circle on Layer 2 of the Layers Palette
    1050 x 576 document with a red circle on Layer 1 of the Layers Palette.
    The red circles were superimposed in creation. The difference in the pixel dimensions between the two are evidenced by Layer 1 content peaking through on the left and right.
    The gpsot readout for pixel aspect ratio for each of the videos was
    a. Your PAL DV AVI 720 x 576 Widescreen = 1.422
    b. Your PAL MPEG2.mpg 720 x 576 Widescreen = 1.422
    Each of the Photoshop Elements documents (circles) saved as .psd files 1050 x 576 pixels.
    When all were taken into Premiere Elements 12 project manually set for PAL DV Widescreen, they looked like the following, no display of distortion.......
    PAL DV AVI Widescreen 720 x 576 (now the pixel aspect ratio in Premiere Elements Properties was shown as 1.4587, not the 1.422 seen in gspot before import)
    PAL MPEG2.mpg Widescreen 720 x 576 (now the pixel aspect ratio in Premiere Elements 12 Properties was shown as 1.4587, not the 1.422 seen in gspot before import)
    Edit Menu/Preferences/General with check mark next to "Default Scale to Frame Size" was in effect.
    As for the red circles stills (1050 x 576 to equate to the square pixel version of 720 x 576 widescreen) did not distort when brought into the Premiere Elements 12 Edit area monitor which is established by the PAL DV Widescreen project preset with the pixel aspect ratio = 1.4587.
    The jpg version of the Photoshop Elements document (.psd) 1050 x 576 pixels (square pixels) looked like:
    And, when this Timeline was exported Publish+Share/Computer/AVI with the DV PAL Widescreen preset, there was no distortion in the export. It looked undistorted as it did before export.
    So, unless I am overlooking a key point here, I cannot see a reason why you cannot use the video sources that you presented for sampling as weil as stills with the 1050 x 576 pixel dimensions.
    The only time I see any distortion possibilities is if you use a player that does not recognize the 16:9 flag that stretches the 720 x 576 to 1050 x 576 for display after encoding.
    Trying to convert Premiere Elements 12 which uses the 1.4587 pixel aspect ratio for PAL DV Widescreen into a Premiere Elements 7 which uses the 1.422 pixel aspect ratio for PAL DV Widescreen is up hill in spite of creative thinking on your side.
    Please review and let me know if you are seeing another different from what I am reporting with the samples that you posted.
    Thank you.
    ATR

  • Photo  Aspect Ratio Problems.

    Hi Folks,
    Am needing some advice from all you oracles out there lol. I use PSE 7, when I print my photos I prefer to use the standard 3:2 ratio (6x4, 7x9, inch for example). When I use my crop tool on Elements 7 the photo ratio is different. Is it possible to change this preset ratio to my preferred setting and ho do I do it.
    Thank you
    Nevyn

    Hi,
    Yes, you can you the Custom ratio option in crop tool.
    1. In Organizer, select the image, and click the Fix tab /button in the side bar
    2. Select Crop tool
    3. In the resultant dialog, select 'Custom Ratio' in the Aspect ratio
    4. In the textboxes below the Aspect ratio dropdown, input your desired ratio.
    5. The selection box over the image resizes itself to the specified Aspect ratio.
    6. Increase or decrease the size of the selection box according to your requirement. This will change according to the specified Aspect Ratio.
    Thanks/ Tarun

Maybe you are looking for

  • EMail-Adapter failed

    Hi, I use the blog from Michal to configure a dynamic email adapter (/people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address) So far so good. I can map the email adress I wanted and also receive a email, but in

  • Unable to set Answers from Java Script

    Hi, After user selects the answer for a particular question, i am able to get the selected answer using below Java script. var cp = document.Captivate; alert(cp.cpEIGetValue("m_VarHandle.cpQuizInfoAnswerChoice")); Based on some user info, i want to s

  • No Internet conection!

    Since 24 days I have no Internet conection! I have conection by Airport to another computer. Since 24 days I have tried to solve this problem, but I didn´t manage. I tried it several times with the diagnose of Safari. I asume the problem must be solv

  • The license configuration data for adobe no longer usable

    What more can I do with: The license configuration data for adobe (Photoshop, Illustrator etc) is no longer usable. I have tried the License recovery download all 3 times...

  • LIS inbound interface & mystics

    Hi All! Can anybody explain me what is matter? I was creating LIS inbound interface. The system suggested me event and function group. I generated the interface and pointed out the place for saving in request - personal Z-package. Function module was