How to resize for HD_1280 or 1920

Hi,
I'm shooting for animation.
Is it possible to batch resize my pictures so they are all cropped the same way.
I would like to crop them from the center of the image.
I don't want to resize to a corner because the framing will be off.
For example if I center a character and he walks off from the center of the frame I have to crop all the pictures from the center to maintain
what. If PSD crops to a corner then the whole scene is off.
I want to resize to 1280 X 720 or 1920 X 1080.
Maybe there is a better way of doing this?
Thank you,
AB

Ok. I didn't consider recording the crop.
That's good. Thanks.
As for the video software.
I guess most editing programs can just incorporate the image but I 'm using QTPro to make the sequence and then import into FinalCut for the final editing.
I'm capturing at 2352 X 1568 so it  gets quite sluggish in a video editing program.
Thats why I want to rescale before importing.
Since I have PSD extended I might try  putting it together there and see if it works better.
Sometimes the scenes have more than a few hundred pictures so it probably is to bulky for PSD
I'll try Batch cropping first..

Similar Messages

  • I can't figure out how to resize my picture for my home or lock screens.

    I can't figure out how to resize my picture for my home or lock screens. It shouldn't be his difficult. Any suggestions? I'm running the latest software. Thanks.

    whichever app store you are connecting to, hyou need a credit card with an address in that country. Also, itunes gift cards must be in local currency too.
    If you are in japan, you need to use the japan app store

  • How to resize a photo from CameraUI?

    Hi there,
    i really need som help here. I cant seem understand how to resize an still image taken with the camera. Here are the code so far(also with the upload part). I just need a thumbnail to be uploaded to the server, not the HQ-image. Any ideas?
              Simple AIR for iOS Package for selecting a cameraroll photo or taking a photo and processing it.
              Copyright 2012 FIZIX Digital Agency
              http://www.fizixstudios.com
              For more information see the tutorial at:
              http://www.fizixstudios.com/labs/do/view/id/air-ios-camera-and-uploading-photos
              Notes:
              This is a barebones script and is as generic as possible. The upload process is very basic,
              the tutorial linked above gives information on how to post the image along with data to
              your PHP script.
              The PHP script will collect as $_FILES['Filedata'];
              import flash.display.MovieClip;
              import flash.events.MouseEvent;
              import flash.events.TouchEvent;
              import flash.ui.Multitouch;
        import flash.ui.MultitouchInputMode;
              import flash.media.Camera;
              import flash.media.CameraUI;
              import flash.media.CameraRoll;
              import flash.media.MediaPromise;
        import flash.media.MediaType;
              import flash.events.MediaEvent;
              import flash.events.Event;
              import flash.events.ErrorEvent;
              import flash.utils.IDataInput;
              import flash.events.IEventDispatcher;
              import flash.events.IOErrorEvent;
              import flash.utils.ByteArray;
              import flash.filesystem.File;
              import flash.filesystem.FileMode;
              import flash.filesystem.FileStream;
              import flash.errors.EOFError;
              import flash.net.URLRequest;
              import flash.net.URLVariables;
              import flash.net.URLRequestMethod;
                        // Define properties
                        var cameraRoll:CameraRoll = new CameraRoll();                                        // For Camera Roll
                        var cameraUI:CameraUI = new CameraUI();                                                            // For Taking a Photo
                        var dataSource:IDataInput;                                                                                          // Data Source
                        var tempDir;                                                                                                                        // Our temporary directory
                        CameraTest() ;
                        function CameraTest()
                                  Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
                                  // Start the home screen
                                  startHomeScreen();
                        // =================================================================================
                        // startHomeScreen
                        // =================================================================================
                        function startHomeScreen()
                                  trace("Main Screen Initialized");
                                  // Add main screen event listeners
                                  if(Multitouch.supportsGestureEvents)
                                            mainScreen.startCamera.addEventListener(TouchEvent.TOUCH_TAP, initCamera);
                                            mainScreen.startCameraRoll.addEventListener(TouchEvent.TOUCH_TAP, initCameraRoll);
                                  else
                                            mainScreen.startCamera.addEventListener(MouseEvent.CLICK, initCamera);
                                            mainScreen.startCameraRoll.addEventListener(MouseEvent.CLICK, initCameraRoll);
                        // =================================================================================
                        // initCamera
                        // =================================================================================
                        function initCamera(evt:Event):void
                                  trace("Starting Camera");
                                  if( CameraUI.isSupported )
                                            cameraUI.addEventListener(MediaEvent.COMPLETE, imageSelected);
                                            cameraUI.addEventListener(Event.CANCEL, browseCancelled);
                                            cameraUI.addEventListener(ErrorEvent.ERROR, mediaError);
                                            cameraUI.launch(MediaType.IMAGE);
                                  else
                                            mainScreen.feedbackText.text = "This device does not support Camera functions.";
                        // =================================================================================
                        // initCameraRoll
                        // =================================================================================
                        function initCameraRoll(evt:Event):void
                                  trace("Opening Camera Roll");
                                  if(CameraRoll.supportsBrowseForImage)
                                            mainScreen.feedbackText.text = "Opening Camera Roll.";
                                            // Add event listeners for camera roll events
                                            cameraRoll.addEventListener(MediaEvent.SELECT, imageSelected);
                                            cameraRoll.addEventListener(Event.CANCEL, browseCancelled);
                                            cameraRoll.addEventListener(ErrorEvent.ERROR, mediaError);
                                            // Open up the camera roll
                                            cameraRoll.browseForImage();
                                  else
                                            mainScreen.feedbackText.text = "This device does not support CameraRoll functions.";
                        // =================================================================================
                        // imageSelected
                        // =================================================================================
                        function imageSelected(evt:MediaEvent):void
                                  mainScreen.feedbackText.text = "Image Selected";
                                  // Create a new imagePromise
                                  var imagePromise:MediaPromise = evt.data;
                                  // Open our data source
                                  dataSource = imagePromise.open();
                                  if(imagePromise.isAsync )
                                            mainScreen.feedbackText.text += "Asynchronous Mode Media Promise.";
                                            var eventSource:IEventDispatcher = dataSource as IEventDispatcher;
                                            eventSource.addEventListener( Event.COMPLETE, onMediaLoaded );
                                  else
                                            mainScreen.feedbackText.text += "Synchronous Mode Media Promise.";
                                            readMediaData();
                        // =================================================================================
                        // browseCancelled
                        // =================================================================================
                        function browseCancelled(event:Event):void
                                  mainScreen.feedbackText.text = "Browse CameraRoll Cancelled";
                        // =================================================================================
                        // mediaError
                        // =================================================================================
                        function mediaError(event:Event):void
                                  mainScreen.feedbackText.text = "There was an error";
                        // =================================================================================
                        // onMediaLoaded
                        // =================================================================================
                        function onMediaLoaded( event:Event ):void
                                  mainScreen.feedbackText.text += "Image Loaded.";
                                  readMediaData();
                        // =================================================================================
                        // readMediaData
                        // =================================================================================
                        function readMediaData():void
                                  mainScreen.feedbackText.text += "Reading Image Data.";
                                  var imageBytes:ByteArray = new ByteArray();
                                  dataSource.readBytes( imageBytes );
                                  tempDir = File.createTempDirectory();
                                  // Set the userURL
                                  var serverURL:String = "http://www.hidden_in_this_example.com/upload.php";
                                  // Get the date and create an image name
                                  var now:Date = new Date();
                                  var filename:String = "IMG" + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds;
                                  // Create the temp file
                                  var temp:File = tempDir.resolvePath(filename);
                                  // Create a new FileStream
                                  var stream:FileStream = new FileStream();
                                  stream.open(temp, FileMode.WRITE);
                                  stream.writeBytes(imageBytes);
                                  stream.close();
                                  // Add event listeners for progress
                                  temp.addEventListener(Event.COMPLETE, uploadComplete);
                                  temp.addEventListener(IOErrorEvent.IO_ERROR, ioError);
                                  // Try to upload the file
                                  try
                                            mainScreen.feedbackText.text += "Uploading File";
                                            //temp.upload(new URLRequest(serverURL), "Filedata");
                                            // We need to use URLVariables
                                            var params:URLVariables = new URLVariables();
                                            // Set the parameters that we will be posting alongside the image
                                            params.userid = "1234567";
                                            // Create a new URLRequest
                                            var request:URLRequest = new URLRequest(serverURL);
                                            // Set the request method to POST (as opposed to GET)
                                            request.method = URLRequestMethod.POST;
                                            // Put our parameters into request.data
                                            request.data = params;
                                            // Perform the upload
                                            temp.upload(request, "Filedata");
                                  catch( e:Error )
                                            trace(e);
                                            mainScreen.feedbackText.text += "Error Uploading File: " + e;
                                            removeTempDir();
                        // =================================================================================
                        // removeTempDir
                        // =================================================================================
                        function removeTempDir():void
                                  tempDir.deleteDirectory(true);
                                  tempDir = null;
                        // ==================================================================================
                        // uploadComplete()
                        // ==================================================================================
                        function uploadComplete(event:Event):void
                                  mainScreen.feedbackText.text += "Upload Complete";
                        // ==================================================================================
                        // ioError()
                        // ==================================================================================
                        function ioError(event:Event):void
                                  mainScreen.feedbackText.text += "Unable to process photo";

    1. Create a BitmapData of the correct size of the full image
    2. Use BitmapData.setPixels to create pixel data from your byteArray
    3. Make a new Bitmap, Bitmap.bitmapData = BitmapData
    4. Create a matrix with the correct scaling factors for your thumbnail
    5. Create a new BitmapData the size of your thumb
    6. Use BitmapData.draw to draw your image data from the Bitmap to the new BitmapData with the scaling matrix
    7. Use BitmapData.getPixels to create a bytearray from your thumb BitmapData
    8. save it
    You'll have to look up the AS3 reference to see how all these methods work.

  • How to resize my monitor resolution in OS X 10.5.8

    Hello I have a question I am new to mac and I was trying to resize my desktop resolution. I'm using a 720i TV utilizing the HDMI and using the convertor to make it DVI and for some reason when I use the 720 resolution its all off center and it won't let me resize it like it does in Windows but it works when i have it at 1280 x 960 problem is I don't want that resolution it doesn't look as good on my TV. I have tried everything and can't find any software that will allow me to do this. And I use the same monitor for my Windows machine and it works perfect PLEASE HELP

    Yeah..... I know that I want to know how to resize a resolution the 1280 x 720 doesn't show up right it's making everything go off the sides so I can't see everything on my desktop in windows my nvidia control panel would allow me to resize my monitor to fit any resolution i want to know how to do that on a mac

  • How to resize all pages -Acrobat 9 Pro Extended ? ?

    I came across a pre-existing pdf file of an old book of genealogy.  According to the front pages, it was 'Digitized by Microsoft', so I know nothing on how it was generated.  Total pages are in excess of 1,100.
    In viewing the pages, they are reflected as 2 pages to a view; not the book opened with the spine in the middle, but images side by side ... in numerical order ... and they appear as a normal sized 2 page for that view.  When I print out a page, by number, it also prints out in a normal size on an 8x11 inch sheet of paper.
    However, rather than print page by page on individual sheets of paper, I want to print out multiple pages, 2 to a sheet of paper.  In doing this, the images of the pages come up as 3x5 inch; thus not readable if printed without the usage of magnifier.
    Not that familiar with the program, but tried to do a resize process by setting some adjustments and then to a new pdf file.  It did not change that much ... and increased the file size dramatically.
    I am a novice to these processes.  Can someone advise how to resize the whole file, with images of pages side by side, so that when multiple print is used for 2 pages the size comes up closer to something like 5x7 inch each?
    Thanks

    Let me try it this way.....
    1.  The pdf file, when initially opened up, in the opening view shows 2 simotaneous pages side by side ... with hardly a divider between them.  This at this point has nothing to do with the print mode.
    2.  The book in question was 'Digitized by Microsoft' ... don't know if that makes any difference, but thought it would help to under stand that it was not created by the normal Adobe Acrobat method.
    3.  Now, when I go to the Print mode, from where I just viewed the 2-side-by-side pages, the initial view there, for 'page', is just 1 page ... not the 2 page view I just came from ... and it will print out this view in a full sheet version.
    4.  But, not wanting to print out 1130 pages, want to print multi-page as allowed under Acrobat options.
    5.  So choose multi-page and 2 pages and "Print to printable area"..
    6.  When this option appears in the print viewing window, the 'images' (presuming that to be the correct reference) are small, over the normal (roughly) 5 x 7 inch (each) for a 2-page print option.
    7.  With the 2-page print option, the images are only 3.5 x 5.25 inches ... rather than something like 5 x 7 inch ... which is difficult to read without a magnifier.  [Note:  This 3.5 x 5.25 is as indicated in Properties that the original 'Digitizing' did.
    8.  So, in essence, how can one change the default individual image size from 3.5 x 5.25 inch size, to something closer to 5 x 7 inch size ... so that each image fills in more of it's half of the 8.5 x 11 inch page being printed ... rather than the small size reflected in the attached jpg ?
    I've attached a jpg of the print screen, and one of the 2 page side-by-side 'default' view in Acrobat.
    Thanks

  • How to resize photos in iPhoto?

    Hi
    I can seem to figure out how to resize my photos so I can send them via email or just make them smaller in general. Any suggestions?

    What is your email client? If you use Mail, Eudora, Entourage or AOL then just select the photo you want to email and click on the Mail button. You'll be presented with a menu to choose the size of the file to attach to the email.
    If you are using a web based email you'll have to export the files to the Desktop via the File->Export->File Export menu option where you'll be able to set the file size and quality level of the files.
    See TD's treatis on file access on ways to access the photos for use outside of iPhoto.
    Do you Twango?

  • How to resize image in JSP using JAI ??!!

    Please help me how to resize an JPEG image from my JSP, could I use JAI lib ? how ?

    Hello,
    I had the same problem few months ago ( in that case i used Jimi instead of JAI).
    The answer to your question is: use the java class called "Image".
    Infact you can use JAI just for load or save to disk your image that you have to resize and then use the following code to resize the image :
    Image imgResized = img.getScaledInstance(100,1,Image.SCALE_AREA_AVERAGING);
    The object "img" is the image to resize and the object "imgResized" is the image resized with width equals to 100 and with a right height.
    I used Jimi just to save my image and i think that with JAI there is a method to do this.
    You can use JAI to load in memory your image too so you can avoid problem with MediaTraker class.
    I hope that this can help you.
    Cheers.
    Stefano

  • How to resize image in flash

    Hi guys any tips or advise on how to resize an image i know
    there are various tools but is there a tool in Adobe flash
    professional and how can I do it
    cheers

    In what way do you want to resize the image? Are you
    importing graphics that you want to resize when you import them at
    runtime? Do you want to resize the images to a specific size or
    relative to one imported image? Or do you want to resize one or
    more images for a specific purpose at runtime based on some user
    input? Or is it something else?

  • How to resize to fit paper size? I have Envy 7640 printer.

    I accidentally was able to resize a photo the other day to fit the paper.  Now when I want to do it, I can't figure out how to do it.    I have a Mac.  Thank you in advance.

    Hi , Welcome to the HP Forums! I understand that you are wondering how to resize to fit paper size, with your HP Envy 7640 on a Mac. I am happy to help! What version of the Mac Operating System are you using? If you do not know the Operating System you are using, please visit this website. Whatsmyos. What is the name of the program you are printing from? In the meantime, please see this article, OS X Mountain Lion: Scale a document to fit your printer’s paper, as I am sure the settings are universal between Mac OS X Operating Systems. Hope this works!  “Please click the Thumbs up icon below to thank me for responding.”

  • How to resize project without losing the image resolution?

    I am trying to resize a project that recorded in 1271 x 768
    px to 800 x 483 px. I did it by clicked 'Project' > 'Resize
    Project...'. But after resize, the resolution of the movie is not
    clear, became blur. How to resize the project so that I'll have
    clearer movie? Thanks.

    Hi obtis and welcome to our community
    Unfortunately, there is little you may do to avoid this. The
    best way to avoid it is to simply record initially at the size you
    need so you don't have to use the Resize function.
    Here's the deal. Captivate stores images in the project as
    bitmapped images. Otherwise known as "raster" images. Basically
    they are a mosaic that comprises the picture. Initially, all is
    well and is crystal clear. But when you scale down a raster or
    bitmapped image, you are simply moving all the picture elements
    (PixEls) closer together. They overlap and the computer will
    calculate new values for what color they should be. Depending on
    how much you are resizing, the clarity drop can be acceptable or
    horribly bad. The more you resize smaller the worse it gets.
    Hopefully this helps... Rick

  • Resizing for the web

    I belong to a forum that shares nature photos.  The requirement for posting is 1200 pixels on the longest side.  In my old program (Elements 6) I could resize and type in the pixel length I wanted.  In Elements 10 which I just bought, I am given the options when resizing for adjusting width and height in percent, inches, cm, mm, points, picas, and columns  -  but not pixels.  How do I adjust to 1200 pixels on the longest side when resizing for the web?

      Make sure constrain proportions and resample image are both checked.
    Then change the pixel box for the long side and the short side will change automatically.
    Alternatively click File à Save For Web
    Then set your dimensions and click OK (you also get a before and after preview) with save for web.

  • ??  How to resize in Photo Shop Express

    I've been on hold for two 30 minutes sessions to find out how to get out of Photo Shop Express.
    All I want to do is resize a picture. It comes up, but I can't figure out how to resize. So, I really want to
    get out of Photo Shop Express and go to another product unless someone can help. me.
    thanks

    Hi Ann
    Sorry for the difficulties.  In case it's not too late, here are some steps for accessing our online Editor's image resize tool:
    1. If you are already a member of Photoshop.com, sign in your account.  You can access you account at either www.photoshop.com or http://www.photoshop.com/tools/organizer
    2. If you are a member, and have not already uploaded your photo to you online account, please do so. Look for the 'Upload' button at the top right of the Photoshop Express Online Organizer (http://www.photoshop.com/tools/organizer).  Select your image, and click the Edit button at the bottom of the Window.
    If you are not a member, you can still access our online Editor at this URL:  http://www.photoshop.com/tools?wf=editor   Just go to this page and upload your photo to begin editing it.
    3. Once you have your image open in the Online Editor, find the 'Resize' button on the left next to our other editing tools.  Then choose the resize settings you like and click 'Save' when you're done.

  • How to resize pictures in iPhoto09 ?

    Hi there,
    How to resize the pictures in iPhoto09 ?
    The picture that I imported into iPhoto09 is too big for my liking. How can I resoze & make it smaller ?
    Thanks

    PT wrote:
    Perhaps it would be helpful to explain what it is you are trying to accomplish.
    Is it that you are trying to save drive space and want to reduce the file size of the photos? Or is it that you need to send the photos somewhere (upload, email, etc.) and again the file size is an issue? Or is it that you want to make a print and need to know how to print it out in the size you want:? Or do they simply look to big on your screen and you want to display them smaller?
    Patrick
    Thanks Patrick,
    My purpose is to edit the picture so that I bring them into iMovie09.
    When I placed them into iMovie09, they simply look to big on the screen and I need it to display smaller
    Thanks

  • Covers not resizing for thumbnail view

    Hi,
    How/when/where does the thumbnail png file for ADE get created? I have some epubs ebooks that are not displaying correctly. Instead of the cover being resized for the thumbnail, it is being cropped. On other books, however, it works fine. I can't see the difference in the actual html of the ebook. I did verify that it is the actual png file in the ADE thumbnails folder that is incorrect.
    Help?

    Not a problem with it sounding snippy.  The key bit for you situation is was that it was rendering it at the thumbnail size (90x130, iirc), and as you found out it if your HTML was making some bad assumptions (usually in the size attributes for the image element) that it would be rendering in a larger viewport, that would be causing the cropping.
    What I didn't know is if it was your authored content or not, because if it wasn't then the easier fix is to just replace the thumbnail image in the  DE Thumbnails Directory.

  • Resizing for the web in PS CC

    I am a photographer and using the upgrade trial to PS CC.  In a previous version of PS, I was able to resize images for my clients for web use via the following:  Image Size > and set with the following: Resolution 72 dpi, with scale styles, with constrain proportions, interpolation: bicubic.  How can I get the same/similar output with PS CC?  I see how to set scale styles, and assume 72 pixels per inch.  But what other settings?  FIT TO: custom or original size?  RESAMPLE: Bicubic Sharper (Reduction)?  Any other changes I should be making?  Thanks!

    I don't understand your problem.  Exactly what is it you can't do?
    I resize for web imagery all the time.  I'm not seeing any restrictions.
    By the way, I suggest you don't use Bicubic Sharper, but rather sharpen the image a bit heavily at the original resolution (or a resolution higher than the final result) then downsample the image with Bicubic.  That will yield a higher quality sharpness without as many edge artifacts.
    Here are a couple of quick examples of a high detail images done as I described:
    -Noel

Maybe you are looking for

  • Acrobat X Pro: Check for Updates Error 1007 Updates have been disabled by your system policy

    Because of another Acrobat problem (I won't go into here), today I uninstalled Acrobat Pro 10.1.9 and re-installed Acrobat 10.0.0. I thought I could get back to 10.1.9 by selecting "Check for Updates" after installation. My system is Win7x64 and I'm

  • Will SSL Security Flaw patch be available for IOS 6.1?

    I'm not able to upgrade to IOS 7 due to space constraints and need to find out if the forthcoming patch will be made available for IOS 6.1.3 as well.

  • Final Cut Express keeps quitting

    I can open Final Cut and movie clips. However, once I play one or mess with any clip I've opened, it will shut down. Sometimes it happens immediately and other times it will happen the second time I play a clip. I've already ensured that my color set

  • Start Up class

    Hi,experts 1. Im creating a a new project 2.I deleted a default from in .Net 3.I passed command line argument 4.I added a module with my project 5.now i want assign that module as start up file 6.but it is not showing my module in start list plz help

  • ZEN Style M100 Manual non readable

    Congratulations for this model it seems very ergonomic. But I cannot read the manual : [url="http://support.creative.com/manuals/download.aspx?nDownloadId=983&prodName=ZEN%20Style %20M%20User%20Guide%20Spanish">Link[/url]