Change print dimensions and resolution without resampling

This question was posted in response to the following article: http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1fef992ca12e28aa8015-7 ff0.html

My original image is 494x278 pixels (rectangular shape). I want it to be 361x369 (more square) to upload for a header picture in a website. How do I do this? Thanks.

Similar Messages

  • How to change print size and DPI setting in Aperture

    If I import a raw image from my camera (D2X) to Aperture and print the image at about 8"x10" through Aperture, it prints at about 300 DPI, if I change to size of the same image to 12"x18", in Aperture, it prints the image at about 166 DPI. I do not believe there is a way to change this in Aperture.
    My question is, can I open the image at 8"x10" in PS, change the size and resolution to 12"x18" and 300 DPI then save it, open it again in Aperture and print it. If I do these things, will the image printed in Aperture still be 300 DPI and how can I check it to see if that is the case?
    I have not been able to find the DPI setting anywhere in Aperture to confirm that it is what I want or need.

    "You can make the pixels bigger by making the image larger but you can't add any more pixels without running some kind of interpolation filtration like GenuineFractals or a recomputation like bicubic."
    Thank you for your explanation and that brings me exactly to the point of my question.
    Can I interpolate my original NEF raw image after conversion by Aperture to a much larger image for print using something similar to what Photoshop does with it's bicubic smoother or as is done in genuine fractals or must I go out of Aperture and back if I want to print with Aperture. I am hoping you will tell me that Aperture is or will be capable of interpolating an image to a larger one with more than just the pixels supplied by the camera. I do not belive that these are not enough by themselves to print a quality image in a much larger size.
    I may be wrong, but I believe that it is somewhat common practice to interpolate an image to get a greater resolution printed image at a size larger that what is possible with a resolution provided by the (D2x in my case) DSLR camera.
    Or is this just a tempest in a teapot. In other words, will I be able to take the image out of the D2x (12.5 megapixels) and print a 13x 19" image with the same quality in Aperture (uninterpolated but enlarged) as an interpolated image in PS or Genuine Fractals and then in PS?
    Thank you

  • Pixel dimensions and resolution

    When designing for an iphone4 we set up the canvas to 640x960 pix, but we discussed if we should define the resolution to 326ppi, as described in the iphone tech spec.
    When the pixeldimensions are defined - why does a pixelbased program like Fireworks ask for resolution? I should think that only non-pixel based output wanted definition of dimensions and resolution.
    Can you help?
    Nina Storm

    Yes. Go ahead with the reccomendations for PPI for iphone. Dimensions are merely the height and width of the image. Those are independant of resolution. Fireworks default resolution is 72 PPI. Since PPI doesn't affect the exported file size, it doesn't matter, at least for web pages displayed in a browser, if you use 72 PPI or 500.

  • Change refresh rates and resolution on another computer

    Hi, am i able to use a LAN cable from Computer A and connect to computer B then change B's refresh rates and resolution? for example from 800x600 to 1024x768 then change refresh rate from 60Hz to 75Hz. please advice thanks.

    Hi Trig,
    Thanks for your post and I hope your well today.
    There are two parts to this - in my mind:
    1. Changing Screen Resolution Programmatically From LabVIEW
    2. Use VI Server to remotely call a VI i.e. Computer A calling VI on Computer B which then runs the VI mentioned in 1. 
    1. 
    This link is a dev zone article which has code for programmatically changing the screen resolution
    http://zone.ni.com/devzone/cda/epd/p/id/1429
    Try it out. 
    2.
    VI Server
    The NI Example Finder contains some expamples for this.
    Building VI Server Applications
    http://zone.ni.com/reference/en-XX/help/371361E-01/lvconcepts/building_vi_server_applications/
    If you could provide more details, maybe versions of LabVIEW etc then maybe we can help you some more - have you got some code yet? And did you have any thoughts on how to do this?
    Another method I have consider is:
    Using a tool such that runs an exe or script which alters the resoltion.
    Then using the cmd (comand line) or in LabVIEW System Exec.vi to run the exe (via VI Server). 
    How To Change Your Screen Resolution From A Command Line
    http://desktopfeedbag.wordpress.com/2007/12/27/how-to-change-your-screen-resolution-from-a-command-line/
    Hope this helps, 
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How do I get printer margins and resolution

    How do I get printer margins and dots per inch for the so-called default printer that is attached to my computer (and possible the less critical paper size)

    Thanks for your trying it. I learned from you that prinJob.pageDialog() sees the physical limitations on the margins.
    I found in the docs: "When creating a Paper object, it is the application's responsibility to ensure that the paper size and the imageable area are compatible".
    It seems that most of this stuff is the program telling the printer.
    I want the printer to tell the program two critical sets of data: the minimum margins and the resolution.
    Thanks again, I really appreciate your efforts, and learning one more thing.
    Here is my try. Sorry about the long lines.
        PrinterJob prinJob=PrinterJob.getPrinterJob();
        PageFormat pgFmt = prinJob.defaultPage();       
        System.out.println("old iW="+pgFmt.getImageableWidth()+" iH="+pgFmt.getImageableHeight()+" iY="+pgFmt.getImageableX()+" iX="+pgFmt.getImageableY());
        PageFormat newPgFmt = prinJob.pageDialog(pgFmt); //min: l=.226(16.272pt),r=.273,t=.25(18pt),b=.25 so wid=8.0(576pt), hgt=10.5(756pt)
        System.out.println("new iW="+newPgFmt.getImageableWidth()+" iH="+newPgFmt.getImageableHeight()+" iY="+newPgFmt.getImageableX()+" iX="+newPgFmt.getImageableY());
        Paper pap = newPgFmt.getPaper(); //pageDialog() seems to get the physical printer correctly approx agreeing with MSWord
        System.out.println("pap wid="+pap.getWidth()+" hgt="+pap.getHeight()+" iX="+pap.getImageableX()+" iY="+pap.getImageableY()+" iW="+pap.getImageableWidth()+" iH="+pap.getImageableHeight());
        pap.setImageableArea(0,0,72*8.5,72*11.0); //this allows programmer to set it incorrectly
        System.out.println("pap wid="+pap.getWidth()+" hgt="+pap.getHeight()+" iX="+pap.getImageableX()+" iY="+pap.getImageableY()+" iW="+pap.getImageableWidth()+" iH="+pap.getImageableHeight());
        newPgFmt.setPaper(pap);
        System.out.println("new iW="+newPgFmt.getImageableWidth()+" iH="+newPgFmt.getImageableHeight()+" iY="+newPgFmt.getImageableX()+" iX="+newPgFmt.getImageableY());

  • How to change document dimensions and scale image proportionally?

    Hi there,
    I've created over a hundred files in Photoshop for placement in a book I'm making with software provided by the printer that uses templates of set sizes. My big mistake was to make all the files in Photoshop at A4 size (21cm X 29.7cm) whereas the template page size is 8 x 10 inches. (I know, really dumb on my part not to double-check this vital statistic!).
    If I change the document dimensions via Image > Canvas Size, the images (which are all printed articles, not photos) are cropped, which is useless.
    Rather than create 100 new files using the correct page setup dimensions, changing the image dimensions in the old file, copying and pasting it into the new (10" x 8") file, can anyone suggest a simpler way? I don't mind doing this manually, but ideally I'll be able to do it in the existing file rather than creating a new one.
    Many thanks in advance,
    Andrew
    My specs are:
    Photoshop CS4
    Mac OSX 10.5.8
    4GB RAM
    150GB free disk space

    Hi Mike,
    Thank you very much for this. I am a novice at certain things in Photoshop and making actions is one of them. However, I will learn how to do it as I can see it will make my life easier.
    I'm confused by one thing. The other answer to my question (see thread) says to turn Resample Image "off". You say to turn it on. Which is it? I didn't really understand the other advice or the terminology (e.g interpolate).
    Many thanks again,
    Andrew

  • Print size and resolution

    When I select various image sizes using the Print Image function, how does Aperture change the resolution and/or number of pixels in my Aperture version to produce the printed image?  I assume it keeps all pixels and fits them to whatever image size I select, thus varying the resolution, but I'm not sure about that.  Thanks.

    Here's a couple more:
    http://www.ideas-training.com/PDFs/UnderstandingResolution.pdf
    http://www.luminous-landscape.com/tutorials/understanding-series/und_resolution.shtml

  • How change video dimensions and aspect?

    Im having trouble using FCP to change a video that i have from a 4:3 to 16:9... the video was converted and turned out 4:3... how can i change the video dimensions or bring it back to 16:9??
    thanks
    much appreciated.
    Ben

    Click on a clip. Under the Motion tab, & then under the Distort tab, go to Aspect Ratio. Try 33.33, 0 & -33.33 until it looks right & fill the screen properly. If you have to change a lot of clips, you might be able to use the Remove Attributes option. I'm not very good at explaining these things..but maybe this will help.

  • How do you change the image size and resolution in photoshop everytime I change the width the height changes my measurements will not stay

    Can someone assist me with changing image size and resolution.  each time I change the width the height changes and vice/versa?

    There's a chain link between width and height. The point is to keep the aspect ratio the same, otherwise your picture would get stretched.
    You click on the chain-link to shut that off and you can adjust width and height separately.
    Also could you give us your version of Photoshop, what OS you are running it on (Windows 7 for example) and what exactly you want to do with your document?
    Resolution is the print term for how many pixels will be printed on an inch of paper. It doesn't apply if your image is intended for screen viewing.
    Gene

  • Image size and resolution question.

    Is an image at W 48.667 x H 32.444 inches at 72 res the same as an image that I could convert in photoshop to 300 res and then the with "Resample Image" clicked off would be W 11.68 x H 7.78 at 300 res for printing purposes? I'm asking this questions because after exporting 200 images from Lightroom 1.4, putting them into an wedding album I realized the images were not at 300 res but the first size listed above. I'm trying not to have to rebatch and have to put them back into the album. I sent the question to NAPP and got this back"
    "If you do the math you'll see that the answer is "no."
    48x72=3456 pixels; 32x72=2304 pixels
    11.68x300=3504 pixels; 7.78x300=2334 pixels."
    I did the math and it comes up to 5760 vs 5830. Pretty darn close. So would an image printed out with both settings print the about the same quality or am I missing something?
    Thanks
    Bob

    Bob's question is a common one. And one of the first that most of us struggled to understand. Let's see if I can shed some light to help clarify the matter.
    o The image starts out with a given number of pixels from the camera, scanner, or whatever was its source. The resolution only matters when it comes time to print the image.
    72 dpi was once a common resolution for displaying on a computer monitor. Today 90 dpi is more common monitor resolution.
    o Let's assume that the image is 3504 x 2336 pixels (which I got from his size @ 72 dpi).
    o In "image size", if you do _not_ have 'resample image' checked, all you are doing is _rescaling the image. The image resolution is whatever you enter ...
    For example, if you enter 360 dpi -- the native printing resolution of many Epson printers -- you get a print size of 9.733 x 6.489 inches
    o Let's say you want to print this image at 360 dpi in portrait on 13 x 19 inch paper with a one inch border on the sides. That would make the short dimension of the image 11 inches and the long would work out to 16.5.
    To do that you need to _resample_ the image to change the size. More pixels will be made. The resolution stays at 360 dpi. So check the 'resample image' box.
    After resampling to get the print size and resolution you want, the pixel dimension goes to 5960 x 3960 (from 3504 x 2336). Those new pixels came at a price, but that is a matter for another thread and a lot of personal bias.
    Hope that helped.
    P.S. The answer to your question, Bob, is yes. With resample off in PhotoShop, your original images should have gone to 11.68 x 7.787 inches @300 dpi.
    In looking at the rest of your original post, it seems that the export didn't work the way that you wanted. Do I read right that the images turned out to be 11.68 x 7.787 @ 72 dpi? Can't help with that as I don't do Lightroom.

  • Circular and oval cropping at set size and resolution?

    I know how to use the M tool to create circles and ovals and i know you can set that to certain dimensions, but that doesn't do everything I need.
    How do you crop circles and ovals out of a photo, at a set size (for example, a 1 inch circle ) at a set resolution for printing?  What I need to do is crop circular and oval images out of a photo, say at 250 dpi, then paste them onto a blank white page for printing.
    So if I've got let's say a photo that's 14x10 inches at 300dpi, I want to be able to go in, crop out an oval or circle, with as much or as little of the photo that I can or want to, setting that automatically to a certain dimension and dpi, then paste it into a blank white page I've already created at that same d
    When finished I'd have maybe 20 or 30 images on a page that I can flatten all the layers and print.
    I can't find a way to set size and resolution with anything other than the regular square crop tool.

    You can make an action and use it as one step automation to achieve that on an initial selection.
    Step by step instructions:
    With the Elliptical Marquee Tool, make the desired selection on a image.
    Open the Actions panel (Window > Actions (Alt+F9), from its menu at the top right or corresponding buttons at the bottom, choose New Action, and in the dialog that appears press the Record button.
    From the Image menu, choose Crop.
    From the Selection menu, choose Inverse (Ctrl+Shift+I)
    Press the d key on your keyboard to reset the foreground/background color swatches.
    Press Ctrl + Delete keys on your keyboard to fill with white.
    From the Image menu, choose Image Size (Ctrl+Alt+I), make sure the Resample Image is checked, and in the Document Size section enter the desired dimensions and resolution and press OK.
    In the Actions Panel press the Stop Recording button.
    Now you can copy or drag the image to another image.
    For the next image make the oval selection, go to the Actions panel, select the actions you created above, and press the play button. You can also create a keyboard shortcut in the action's property accessible by double clicking the action.
    The creation of this action assumes that in the final image you will be composing oval images on white background without overlapping their rectangular bounding boxes. If you plan to overlap them then the action must be modified to make the image a transparent layer and delete outside the oval instead of filling with white.

  • Changing ppi changes pixel dimensions but not document size?

    I have an image that is W=4.375 H=6.124 at 355 ppi the pixel dimensions area under Img > Image Size indicates it is W=1553 px H=2174
    When I change the resolution to 72 px it is only changing the pixel dimensions and not the document size. I'm confuesed.
    1. What is the difference between pixel dimensions and document size?
    2. Is the document the same physical size regardless if I make it 200 ppi, 150 ppi or 72?
    Thanks.

    Let me see if I understand all of this:
    - If I change the resolution the print dimension will stay the same, though what is it actually doing to the image if I increase the resolution, though it still is the same print dimension? I am guessing you can not just add pixels to a given size image and expect it to print better.
    - If I change the dimensions, the resolution will change because there will be either more pixels for a smaller area or fewer pixels for a larger area, depending on how I size it.
    Thanks.

  • Understanding dimensions and issues w/ Bridge

    So I'm super new to Illustrator and I'm trying to wrap my head around some basic things and I'm an idiot because I'm just not getting it. What I'm trying to do actually is create a properly sized file to upload to Zazzle, if you're familiar with the site. I downloaded one of their guide files in the 5x7 size to play around with but they don't have one for the posters which is what I want to create. My problem is that while their guide file shows in Adobe Bridge with dimensions as 5x7 inches and 1400x1000 pixels at 200 PPI in the RGB color mode, but a similar file that I created from scratch with inches being the unit shows in Bridge with no value for the inches dimensions, the PPI, or color mode and with a value of pixels at 504x360. Why is there a difference? How the heck do I get 200 PPI? Why are all these values missing from the file properties in Bridge and why are the pixels so small? I've tried it the other way around and created a file using pixels as the units and entered 1400x1000 pixels but once it's created if I switch my Rulers to inches they show the size being almost 20x14 inches - what the? Either way, any document I create is missing those file property values in Bridge.
    Here are my settings when creating a file (I choose the Basic RGB profile first then change the dimensions and raster effects):
    Now here is how the Zazzle guide file's file properties look in Adobe Bridge:
    Then here is how the file properties of the file I created from scratch looks:
    It'd be really nice to figure out how to create a file that looks the same file property-wise and dimensions-wise as the Zazzle guide file. Why am I getting this wonky behavior in Bridge? What am I doing wrong?

    Thanks Jacob. Let me ask you this, can you create a raster image but it still be in the .AI file format? If so, how?
    I think I kind of get what you're saying, but I feel like everyone is telling me I can't create a white elephant even though I'm standing right next to one. Their 5x7 guide file is 1000x1400 pixels and it's an .AI file not exported as whatever - how is that possible?
    Here is the link to the recomended sizes for all their products:
    http://zazzle.custhelp.com/app/answers/detail/a_id/85/~/recommended-image-sizes-and-resolu tion
    Here is a link to the guide files:
    http://www.zazzle.com/mk/custom/guidefiles
    Here is a link to download my white elephant of a file:
    http://asset.zcache.com/assets/graphics/z2/mk/custom/guideFiles/AI/invitation_5x7_vertical .ai
    How do I recreate that file?

  • Best size and resolution to design album cover?

    now, from what I understand, the dimensions of a cd album cover are 800 by 800 pixels.........but would it not be a better idea to design it with bigger dimensions and high resolution then scale down to proper size when done?
    what dimensions and resolution would you recommend designing for best results?

    800 by 800 is too low and too small for that.
    Have a look at this tutorial: http://www.shutterstock.com/newsletter/155/How_to_Design_a_CD_Cover_Using_Photoshop-2.html
    Mainly the following:
    CD booklets and covers tend to be around 4.75 inches by 4.75 inches. As such, you will want to create a new document in Photoshop with those dimensions... For print, you would obviously want to use a high resolution (300dpi)

  • Changing text dimensions/proportions

    Hi
    I'm new to Live Type so forgive me if this is a daft question. I'm currently working my way through the excellent tutorials on the Live Type Central website and as yet, haven't found what I'm looking for.
    Is there a way in Live Type to be able to select a whole text (word) and 'squash' or elongate the word – something similar to the Adobe Premiere Elements ‘Titles ‘ editing function where you can select the whole word and use the mouse to change the dimensions and proportions of the text. Also like an MS ‘word art’ function I guess.
    Also while I am on, can anybody recommend the best place to get additional templates, Live fonts etc. I see that Live Type Central offer expansion packs but they seem a bit pricy if you opt for a few packs.
    Thanks in advance for any assistance.
    Craig

    Regarding the single word. If you drag your mouse over all the letters to select it you can alter its size with the Scale slider in the Text tab of the Inspector.
    You may be able to alter the aspect ratio of the letters with the x and y parameter sliders in the Attributes tab.
    The x and y sliders are locked together so to use one independently click the lock icon to the right to unlock them.
    You may also find that the letters move too closely so you can readjust that with the Tracking slider.
    Message was edited by: Ian R. Brown

Maybe you are looking for

  • Sound issues in bfvietnam

    I can hear sound in vietnam, the shooting , the explosions, and the music peopel play from their mp3's. But i run into a problem where i will see someone shooting right in front of me and there will be no audio or at times there will be an explosion

  • Capturing 16X9 video

    I have a professor at the University where I work who brought me several miniDV tapes with video shot in 16X9 Widescreen. This is a first for me, as I have never captured 16X9 footage. I remember when I used Adobe Premiere in the past you would be gi

  • HTTP_RESP_STATUS_CODE_NOT_OK-503

    Hi Experts, please look into my below HTTP_RESP_STATUS_CODE_NOT_OK with status code 503.plz find the error description. xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">   <SAP:Category>XIServer</SAP:Category>   <SAP:Cod

  • Photoshop CS4 wont work unless Vista Visual effects are turned off.

    Hey guys, having a problem with PS CS4 here. Okay normally when I load photoshop after anywhere from a couple minutes to half an hour it starts to kind crash, all the graphics go crazy, and noise is everywhere, and its imprinting on other windows inc

  • How can I get Illustrator to automatically resize the font to a designated page width?

    I want to be able to type lines of text and have Illustrator automatically change the font size so that it fits that width of the page exactly, even if on one line there are 8 words and on another line there are 2 words - I want the big and small let