Placed image scaling problem

Hello,
just need one advice from the gurus out here.
i have placed few images in adobe indesign , now after placing image in indesign if i scale the image to 102 or 103 or 105% will it effect printing quality in offset printing ??? i mean i am increasing the size by 1% or 2% or 4% will it effect printing ? becuase scaling in photoshop is going to take lot of time because i have 1500 different products and all have different scaling issue so i thought of scaling bit more in indesign itself, please advice.
regds
Chako

If you know what line screen you're printers is using then you can calculate your minimum PPI.
The general rule has been to multiply the LPI x 2 = ppi | Which a lot of people take to assume that the LPI will be 150 in most cases, and that's where the 300 ppi for images originates.
But in truth different mediums would use different line screens, like newspapers, magazines, high-end art books etc. And the x 2 rule is a safe play, but it really should be 1.41 (or 1.5 to keep  it simple).
Newspapers generally at 85 - 105 lpi
127.5ppi to 157.5 ppi
Magazines generally around 133 - 150 lpi (some high end magazines may even use 175lpi)
199.5 ppi to  225 ppi
Art books - high end printing etc around 175 - 200 lpi.
262.5 - 300 ppi
But as a rule of thumb it's best to keep your print images at 300 ppi for printing - but you can go lower, check with your printers as to what they recommend if you really need an image to go below 300 ppi for printing.
But the next time your printer tells you that your images are 250ppi and not good enough for printing you tell him that his halftone cells are rotated 45 degrees and that a2 + b2 = c2

Similar Messages

  • Image scaling problem with object handles

    Hi,
    I am facing scaling problem.I am using custom actionscript component called editImage.EditImage consists imageHolder a flexsprite which holds
    image.Edit Image component is uing object handles to resize the image.I am applying mask to the base image which is loaded into imageholder.
    My requirement is when I scale the editImage only the mask image should be scaled not the base image.To achieve this I am using Invert matix .With this
    the base image is not scaled but it  is zoomed to its original size.But the base image should not zoomed and it should fit to the imageholder size always. When I scale the editImage only the mask image should scale.How to solve this.Please help .
    With thanks,
    Srinivas

    Hi Viki,
    I am scaling the mask image which is attached to imageHolder.When i  scale
    the image both the images are scaled.
    If u have time to find the below link:
    http://fainducomponents.s3.amazonaws.com/EditImageExample03.html
    u work with this component by masking the editImage.If u find any solution
    for scale only mask ,plz share the same.
    thanks,
    Srinivas

  • Image scaling problem

    Hello,
    I have been trying to scale an image to create a thumbnail. The thumbnail image size is around 200*200. The thumbnail is to be rendered on a web browser. My code is:
    public static byte[] getScaledImage(InputStream imageData) throws IOException {
           Image origImg = ImageIO.read(imageData);
           int origImgHeight = origImg.getHeight(null);
           int origImgWidth = origImg.getWidth(null);
           int newImgHeight /*determined by custom logic*/;
           int newImgWidth /*determined by custom logic*/;
          /* code for determining newImgHeight and newImgWidth  keeping the aspect ratio */
           origImg = origImg.getScaledInstance(newImgWidth, newImgHeight,
                                               Image.SCALE_AREA_AVERAGING);
           BufferedImage bimage = null;
           bimage = new BufferedImage(origImg.getWidth(null), origImg.getHeight(null),
                                      BufferedImage.TYPE_INT_RGB);
           Graphics g = bimage.createGraphics();
           g.drawImage(origImg, 0, 0, null);
           g.dispose();
           ByteArrayOutputStream os = new ByteArrayOutputStream(10);
           ImageIO.write(bimage, "jpg", os);
           return os.toByteArray();
    }The calling method is:
    FileCopyUtils.copy(ImageUtils.getScaledImage(lobHandler.getBlobAsBinaryStream(rs, 1)),
                                          imageContent);here imageContent is the http response's outputstream.
    Now the problem is the resulting image displayed on the web page becomes distorted. I first thought that this is due to the thumbnail size. But the scaling done by gimp does not distort the image.
    I have also tried this:
    BufferedImage thumbImage = new BufferedImage(newImgWidth, newImgHeight, BufferedImage.TYPE_INT_RGB);
           Graphics2D graphics2D = thumbImage.createGraphics();
           graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
           graphics2D.drawImage(origImg, 0, 0, newImgWidth, newImgHeight, null);instead of using getScaled instance.
    What could be the problem? This is a problem I need to solve immediately. So I am at a loss. Please help me here.

    Try scaling your source image like this:
    import java.awt.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ScalingToSize {
        int W = 200;
        int H = 200;
        int SCALE_TO_FIT  = 0;
        int SCALE_TO_FILL = 1;
        private JPanel getContent(BufferedImage image) {
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(5,5,5,5);
            gbc.weightx = 1.0;
            panel.add(wrap(image), gbc);
            panel.add(wrap(scale(image, SCALE_TO_FIT)), gbc);
            panel.add(wrap(scale(image, SCALE_TO_FILL)), gbc);
            return panel;
        private BufferedImage scale(BufferedImage src, int style) {
            int type = BufferedImage.TYPE_INT_RGB;
            BufferedImage dest = new BufferedImage(W, H, type);
            Graphics2D g2 = dest.createGraphics();
            if(style == SCALE_TO_FIT) {
                g2.setBackground(UIManager.getColor("Panel.background"));
                g2.clearRect(0,0,W,H);
            double scale = getScale(src, style);
            double x = (W - scale*src.getWidth())/2;
            double y = (H - scale*src.getHeight())/2;
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            at.scale(scale, scale);
            g2.drawRenderedImage(src, at);
            g2.dispose();
            return dest;
        private double getScale(BufferedImage image, int style) {
            double xScale = (double)W/image.getWidth();
            double yScale = (double)H/image.getHeight();
            return (style == SCALE_TO_FIT) ? Math.min(xScale, yScale)
                                           : Math.max(xScale, yScale);
        private JLabel wrap(BufferedImage image) {
            ImageIcon icon = new ImageIcon(image);
            return new JLabel(icon, JLabel.CENTER);
        public static void main(String[] args) throws IOException {
            String path = "images/cougar.jpg";
            BufferedImage image = ImageIO.read(new File(path));
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ScalingToSize().getContent(image));
            f.pack();
            f.setVisible(true);
    }

  • Strange problem with image scaling when placed

    I'm currently running InDesign CS6 from the Creative Cloud, and it's version 8.0. I have a PC and am running Windows 8.
    I am experiencing a really odd problem when placing images, and it only recently (within the last two weeks perhaps?) has developed. I do ebook production for a publisher. I have an InDesign template (INDD file really, but "blank" and ready to be filled in, and as such I refer to it as a "template") that I use, and the cover for the book goes on the first page. The document is set to pixels as the ruler measurement, and the pages are 650 pixels wide by 800 pixels tall. The margins are all set at zero. The cover images are sent to me as JPEGs and always have the same size: 72dpi setting and 500 pixels wide by 750 pixels tall. This is chosen to be about the size of the full screen on most ereaders, or close enough to be so.
    So when working on a new book, I put my cursor in the blank line that is set up to take the cover as an inline image. I do control-D to place, select the file, and hit enter. This SHOULD place an image at that location that is 500 pixels wide and 750 pixels tall when looking at the InDesign page rulers. Instead, InDesign insists on placing this image at 50% scaling, so that it is only 250 pixels wide by 375 pixels tall. And in the link info panel, it shows the actual PPI as 72 and the effective PPI as 144. It does this no matter how many preference changes I try (including the ones under file handling and the import setting options).
    The strangest part is that if the file is just a tiny bit different than 500x750 @72dpi, then there is no problem. For example, if I open the JPEG in Photoshop and change the image settings to 500x750 @73dpi, then InDesign places it at 100% scale like I want. If I change the image to 499x749 @72dpi it also gets placed in InDesign at 100% scaling. I've tried this with various new INDD documents with settings in pixels, inches, or picas as the ruler amounts, and with different page or margin sizes (just in case the problem is with my template). I get the same result no matter what.
    It appears that InDesign somehow thinks that any image that is exactly 500x750 @72dpi should be scaled at 50% when placing it into an InDesign file. Has anyone else run across this? Is it a bug or something I'm doing wrong? I've been doing this exact procedure for over a year, first with CS5 and now CS6, and I've never had this happen until just recently. I suppose it COULD be an accidental change in settings or preferences. But if it is, I cannot figure out how to change it back.
    UPDATE: I installed the 8.0.1 update and it did not resolve the issue. I also tried more image options. It looks like this scaling to 50% upon placing ONLY happens when all three attributes match this: 500x750@72dpi. All of the following modifications to the exact same image placed in the exact same spot in the exact same document resolved the issue:
    501x750@72dpi
    499x750@72dpi
    500x751@72dpi
    500x749@72dpi
    500x750@71dpi
    500x750@73dpi
    But of course, I don't want to have to modify every cover image I'm sent in order to prevent this scaling issue.

    I just tried this and got the same results (CS6, 8.0.1, on WinXP SP3). One other tidbit: the same 500px × 750 px @ 72ppi image saved as TIFF instead of JPEG worked correctly (at least for me). I haven't tried any other image formats yet.
    This sounds like a good candidate for an official bug report: http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    -Bill

  • Problems with image scaling

    I'm facing a real problem with image scaling
    I've used several algorithms but it all has defects but the most common thing is the out of memory error after several enlargments...
    does any one know a solution...
    note:
    I've used several packages to do so,but I'm looking for a solution from the jdk itself
    JAlexscorpio

    Did you take into account that the getScaledInstance() -method creates a completly new Image?
    So if you use it like in
    ImageIcon icon1=new ImageIcon("Blah.gif");
    ImageIcon icon2=new ImageIcon(icon1.getImage().getScaledInstance(400,400,SCALE_FAST);
    you will end up with 2 different Images which have their own data and memory requirements.
    even if you use something like
    ImageIcon icon1=new ImageIcon("Blah.gif");
    Image i=icon1.getImage();
    icon1.setImage(i.getScaledInstance(200,200,SCALE_FAST));
    You will need enough memory to store the data for the original image, as well as the data for the scaled
    version of the image, at least for the time that it take the JRE to create the scaled version. You never know when the garbage collector kicks in to delete you old data so it could be that this takes some time and until
    that moment your memory is not available. If your now doing several of the scaling operations, and there is no chance for the garbage collector to do its work, you will run out of memory.
    I hope that might help, if not feel free to post again

  • Problem with photoshop automatically resizing placed images

    Hi,
    I have PS6. I have images that are 144x100 px. When I use file>place ps resizes the image to 108x75. I can't figure out how to make ps quit resizing my pictures. Anybody know?
    Thanks

    When Pasting, Dragging, copying and placing an image Photoshop will copy all of the image being duplicated original pixels to preserve the image pixel quality the image quality.  If the receiving document has a different DPI resolution the image may look a different size in the  receiving documents because of the number of pixels added to the document that has a lower or higher dpi resolution.  If the image is being placed in if the image pixels exceeds the receiving documents canvas size. Photoshop may scale the smart object layer to fit within the canvas that depends on the users Photoshop's preference.  All of the images original pixels are still there in the embedded object.   In my Photoshop Collage Scripts  I always transform all placed images to 100% size  incase Photoshop scaled the placed image.  For you can not get the scale percent Photoshop used.  Once I know I have the image at 100% size I can use the layer bounds to get the actual number of pixels there are in the placed image.  Once I know that I can calculate the scale I need to use to resize the image to fit the area being populated in the collage template.   Once resized I center it into place and mask off any excess image pixels.

  • Placed Image problem solved

    Both my colleague and I had problems with Adobe Illustrator CS5:
    Problem:
    1) AI refuses to "Place" external images.
    2) Any existing AI documents with extant placed images now refuses to show them. The bounding boxes are there, but no images.
    Solution:
    Delete or remove the "FontExplorer X for Illustrator CS5.aip" plugin from the Adobe Illustrator > Plug-ins folder and all will be fine again.

    Geoff,
    Thank you for sharing.
    There has been another report of FontExplorer disturbing Illy recently.
    We shall try to remember.

  • Add Strokes to Placed Images in Illustrator

    Hi All,
    I'm having a problem to add a stroke "frame" around my tiff image in Illustrator. My image is a "traced picture" from Photoshop. I used the following technique:-
    Technique: Use an Effect
    Choose File > Place and select an image to place into Illustrator document.
    Choose File > Place and select an image to place into Illustrator document.
    The image is selected. Open Appearance panel and from the Appearance panel flyout menu, choose Add New Stroke.
    With the Stroke highlighted in the Appearance panel, choose Effect > Path > Outline Object.
    However, the result I got was the stroke around the image NOT the frame around the image.
    How do I  achieve it. Any help and tips are greatly appreciated. Thanks in advance.

    Technique #1: Use a Mask
    This technique requires Illustrator CS3 and works only when your keyline will be rectangular in shape.
    Choose File > Place and choose an image to place into your Illustrator document. You can either Link or Embed the image. Once you've chosen the image, click the Place button.
    The image is selected (if your image already exists in your document, select it now), so if you look in your Control panel at the top of the screen, you'll see a button labeled "MASK". Click on it. This creates a mask at the exact bounds of the image.
    Press the "D" key for Default. This gives the mask a black 1 pt stroke attribute. Adjust the stroke per your design needs.
    NOTE: An additional benefit to this method of using a mask is that you now have the elements in place to simulate a "frame and image" paradigm like InDesign. Once you've created your mask, you can decide to "crop" your image by double clicking anywhere on the photo. This will put you into Isolation Mode. Now click on the frame edge and resize at will. When you're done, double click outside the image to exit isolation mode and continue working. This method works wonderfully when you're using the Selection tool (black arrow) and have the Bounding Box option turned on (in the View menu).
    Technique #2: Use an Effect
    At first, it may seem that applying a keyline with the use of an Effect is a tedious process. But we all know that once we've applied an effect, we can store it as a Graphic Style, at which point applying our keyline will become a single click. Go ahead, ask me why Adobe doesn't ship Illustrator with such an effect as a default setting in the NDPs (New Document Profiles). Go ahead, ask me why Adobe doesn't allow us to assign keyboard shortcuts to styles like InDesign does. I don't have answers to either of those questions (sorry). But let's get on with the styles, shall we?
    There are two separate effects that we can use, and each provides a different benefit.
    Choose File > Place and select an image to place into your Illustrator document. You can either Link or Embed the image. Once you've chosen the image, click the Place button.
    The image is selected (or if your image already exists in your document, select it). Open your Appearance panel and from the Appearance panel flyout menu, choose Add New Stroke. We can't see the stroke yet, because all we have is an image. But we'll change that in short order.
    With the Stroke highlighted in the Appearance panel, choose Effect > Convert to Shape > Rectangle. Check the Preview button, select the Relative option, and set both the Extra Width and Extra Height to zero (0). (Be careful not to press Tab after you enter the second value, or it will switch back to Absolute.) Click OK to apply the effect. Style the stroke attribute to match your design preference.
    Now make this easier to apply in the future. With the object still selected, open the Graphic Styles panel and click the New Graphic Style button at the bottom of the panel. Give the style an appropriate name. If you then add this style to your NDPs, it will be readily available in all new files that you create.
    Add Strokes to Placed Images in Illustrator | CreativePro.com

  • My InDesign program is printing my placed images lighter than illustrator.

    I am trying to print a colour logo in Indesign with black type on my inkjet printer.  The colours are appearing fine on screen and so is the black but when I print everything is washed out.  I tried just printing a black box and it appears black on screen but in print it is grey.  I have tried changing the preferences Appearance of Black to rich and accurate but that did not make a difference.  Do I need to do anything in color management I am using Indesign CS2.  How can I solve this problem?

    Acrobat worked, thanks for that advice.   I set my Convert to Profile under the Edit Menu to  Color
    Match RGB.  That helped a little bit but it is not printing like the
    pdf.  I would like to get this problem resolved. I normally use
    illustrator most of my work.  But I would like to have InDesign working
    properly as I need it to do other jobs.
    Take Care,
    Jen
    Take Care,
    Jen
    Date: Fri, 14 Aug 2009 14:24:47 -0600
    From: [email protected]
    To: [email protected]
    Subject: My InDesign program is printing my placed images lighter than illustrator.
    Jen,
    This is a problem that you have no time to fool with, correct?
    When printing from InDesign and all looks hopeless, export to PDF and print from the PDF.
    Why?
    I don't know for sure but it seems all printers made recently accept PDF better than straight from InDesign. It could be the printer driver and it could be InDesign but you don't have time to mess with it now. Wait for some free time to sort it out, but for now output to PDF and print from Adobe Reader or Acrobat.
    >

  • InDesign Crashes while placing images on document.

    Hi All,
    I am facing problem and i am stuck at this point.
    I download an image in a folder and place it in graphic box using IImportExportFacade's ImportAndLoadPlaceGun method it is working fine, but when i delete placed image from folder then it becomes as missing link after that if I download the same image at same path and try to place in another graphic box using same above API then indesign get crashed.
    What is problem Any idea?
    Please help me if anyone having same isuue i need to fix it urget.
    Thanks in advance.
    Regards
    Tahir.

    Does it happen in other files withthe same image(s)? How about in a new user?

  • Newly placed images not showing up and Text Styles not previewing correctly

    I was playing around with defining new text styles and they
    looked OK in Dreamweaver but when previewed in browser everything
    was in Times. I deleted all the pre-set styles trying to fix the
    problem out why when I realized now newly placed images don't show
    up in preview, but old images will. I can copy and paste an
    existing image and it will show, but not if I place it new. When
    trying to Manage Site, I kept getting a "Home page is not on
    this...." message. Please help me figure out what I have
    done!!!

    >Home page is not on this...
    Several possibilities spring to mind the first of which is
    you haven't
    defined your site properly or at all
    >previewed in browser everything was in Times
    a link to your stylesheet has an incorrect path
    >realized now newly placed images don't show up in
    preview,
    they should, defined site again?
    If you have a URL we could see the code?
    If not can you post the code here, otherwise these are all
    guesses
    Jo
    "chas0616" <[email protected]> wrote in
    message
    news:esa2uh$h4d$[email protected]..
    >I was playing around with defining new text styles and
    they looked OK in
    > Dreamweaver but when previewed in browser everything was
    in Times. I
    > deleted
    > all the pre-set styles trying to fix the problem out why
    when I realized
    > now
    > newly placed images don't show up in preview, but old
    images will. I can
    > copy
    > and paste an existing image and it will show, but not if
    I place it new.
    > When
    > trying to Manage Site, I kept getting a "Home page is
    not on this...."
    > message.
    > Please help me figure out what I have done!!!
    >

  • Strange stiching white lines in placed images...

    Hi,
    I'm having some problems with Illustrator CS2.
    When i place a .PSD file (1 layer, photo, transparent background) with 300 dpi / CMYK 8bit into my main page, i get these strange stitching white lines over the image.
    Not only that, but after working on my arrangement some more, if i click my placed image, i notice how Illustrator has sliced it into 2 or more parts..
    This is annoying, since getting those white stitching lines doesn't really make me safe for print, and also bothers me that Illustrator slices the image into 2 or more parts without asking or confirmation.
    Anyone knows how i can fix this problem?
    Thanks,
    John

    Hi,
    I'm having some problems with Illustrator CS2.
    When i place a .PSD file (1 layer, photo, transparent background) with 300 dpi / CMYK 8bit into my main page, i get these strange stitching white lines over the image.
    Not only that, but after working on my arrangement some more, if i click my placed image, i notice how Illustrator has sliced it into 2 or more parts..
    This is annoying, since getting those white stitching lines doesn't really make me safe for print, and also bothers me that Illustrator slices the image into 2 or more parts without asking or confirmation.
    Anyone knows how i can fix this problem?
    Thanks,
    John

  • Placing images in Illustrator for print ready files

    I'm designing a brochure in Illustrator that contains several logos and photos.  (Yes, I know, Illustrator... I've read several forums and know that InDesign may be a better program for this, but I completely underbid this project and really need to stick with something I know for cost efficiency.)
    I need to resize several images in Photoshop to place in Illustrator and I'm wondering if I should save them as CMYK jpegs, or tiffs, etc.  I need the file to be the smallest it can be for upload to the printer.  I need the basics on different file types and their pros and cons.
    Also, when I'm sending out the proof to the customer, any tips on saving the pdf so the images aren't too blurry and the file is still sendable?
    Please help!!  Any other information or tips on how to prepare my file as a print ready would be great.  I love to learn and really need some great resources.
    Thanks!

    How many pages are we talking about?  The key to file efficiency is Placing images at their final size, so you are on the right track.  Let me try to help...
    "I need to resize several images in Photoshop to place in Illustrator and I'm wondering if I should save them as CMYK jpegs, or tiffs, etc.  I need the file to be the smallest it can be for upload to the printer.  I need the basics on different file types and their pros and cons."
    -Do not save as JPG.  The compression artifacts will show up in print.  Just Place CMYK .tiffs or .psd's without sizing in Illustrator.  Another thing to keep in mind is "Linking" the image files instead of "Embedding" them.  You have a little more control saving your page files as EPS before creating the final PDF.
    "Also, when I'm sending out the proof to the customer, any tips on saving the pdf so the images aren't too blurry and the file is still sendable?"
    -There are a few different ways you can create a PDF viewable as a softproof.  You could send the final as a Standard PDF using defaults.  Don't forget to embed the fonts and leave color unchanged.  What I do is Export > RGB TIF @ 150ppi > Open the .tiff in Photoshop and Save-As Photoshop PDF with a JPG compression of 8.  You could do that for each page and then reassemble using Acrobat for one assembled, final PDF optimized.
    "Please help!!  Any other information or tips on how to prepare my file as a print ready would be great.  I love to learn and really need some great resources."
    -Get Adobe's Print Publishing Guide.  It has enough information in it to help you wade through all of the disinformation out there.  Get in touch with a couple of local print shops and have them take a look at your files.  Good shops can spot problems and give you some handy tips.  Not all shops will take the time, so finding one can be tricky. 
    Thanks!
    -You're welcome.  Let us know how it all shakes out.

  • Placing images i have created in with corel photopaint

    Have a problem placing images created in corel photopaint software into a muse website. None of the corel; images apear only images created with microsoft. At presnet only images created with microsoft come up when i try to place an images in to a website with muse software.

    No offense, but seriously read up on web design. Web image formats are PNG, JPEG, SVG and GIF. Beyond that, Adobe apps may support generic image formats liek BMP, TIFF and a few others and convert the monce you publish the pages, but it's simply unrealistic to assume Adobe would the native image format of a competing vendor such as Corel's PhotoPaint files...
    Mylenium

  • Image Scaling Bug?

    I've been working with flex for a few weeks now, and I've
    come across this odd behavior in the Image class. The livedocs
    state that the default value for the scaleContent property of an
    Image object is 'true'. This is the case, and when setting the
    width or height of my image it scales correctly. The problem is
    that the container that holds the object only scales with the
    explicitly set value and leaves the other as its original size.
    The following code is a small testcase to show the behavior
    in action.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Style>
    .test {
    cornerRadius: 0;
    headerHeight: 0;
    borderThickness: 1;
    dropShadowEnabled: false;
    borderStyle: solid;
    backgroundColor: #333333;
    borderColor: #ff0000;
    titleStyleName: "myTitleStyle";
    </mx:Style>
    <mx:Box styleName="test">
    <mx:Image source="glassdoor.jpg" height="32"/>
    </mx:Box>
    </mx:Application>
    You'll have to replace the image name with one that you
    provide, and set the height to something smaller that the image's
    height to see the effect. The box's red border shows that it
    realizes the image is 32 pixels in height, but doesn't seem to know
    what to do with the implicitly scaled width. Any ideas? Am I doing
    something wrong, or is this a bug? Since the box normally conforms
    to the size of the object inside it, I would have expected it to
    shrink on both parameters to continue hugging the outside of my
    newly-scaled image.

    The problem is that when the Box asks the Image for its size
    it can only report the explicity set height. When the Image tag
    loads its source it scales it to make the size you set (32 high)
    but doesn't change its width - it is the Image and not the Box that
    is causing what you see. The Image won't shrink to fit the image
    loaded. Try adding horizontalAlign="center" to the Image and see if
    the loaded source floats in the middle.
    Using horizontalAlign and verticalAlign on the Image tag
    aligns the actual image within the Image tag space. For example, if
    you have <mx:Image width="100" height="100"
    horizontalAlign="center" verticalAlign="middle" /> and you load
    in a 300x600 image, the image will be scaled to 50x100 and be
    centered within the 100x100 area of the Image tag.
    In general, if you cannot give an explicit size, give a
    minWidth or minHeight, so the measurement phase of the Flex
    component layout cycle has something to work with.

Maybe you are looking for