Scaling Images

I have just installed Illustrator 10 onto a Lenovo T60 laptop with winxp professional. I am able to open existing illustrator files, but I cannot edit the images. Meaning I cannot scale them up or down. I have the same problem when placing a new image into a new document. When I click on the selection tool then click on the edges of the image the arrow does now change to allow me to scale the image. The layer is not locked. What am I missing.

FAQ #6

Similar Messages

  • Scaled image doesn't appear

    Hi, can someone tell me why the scaling of the image does not work in the code below.
    I making a board game application with these inherited JLabel components used to display each players piece on a background created using an inherited JPanel. The image is correctly displayed on the JPanel at the correct location.
    The problem I'm encountering is that when I attempt to scale the image used the scaledInstance method it doesn't appear on the board but appears perfectly if I use the default image (comment out the scaled instance part of the line).
    I've tried downscaling as well increasing size, in case the image is too large and putting absolute values in but to no avail.
    Any help would be appreciated.
    Thanks
    package UserInterface;
    import java.awt.*;
    import javax.swing.*;
    public class PieceIcon extends JLabel
        //Create new image with the piece (symbol) chosen by the player
        public PieceIcon(String symbol,int pNum)
            playerNumber = pNum;
         pieceImage = new ImageIcon("./Images/"+symbol+".jpg").getImage().getScaledInstance(10,10,Image.SCALE_DEFAULT);
            // above line works if scaled instance part removed, even though scaled image smaller
            setOpaque(false);
        public void paintComponent(Graphics g)
           super.paintComponent(g);
           g.drawImage(pieceImage,boardPos[0][(MainFrame.getPlayer(playerNumber).getCurrentBoardPos())],
                                  boardPos[1][(MainFrame.getPlayer(playerNumber).getCurrentBoardPos())],this);
        private Image pieceImage;
        private int playerNumber;
        private static int[][] boardPos = (set of relative positions here, not displayed to make post easier to read)

    bump

  • Scaling image files for Slide presentation in Keynote

    I have had great problems importing and scaling images for Keynote presentations with approx 500+ images. Having tried to adjust the image to fit the full screen the scaling results in unacceptable pixelation. I seem to have solved this now by batch processing my image files and saving them as PDF files. These are then imported from the Aperture Library as iPhoto wont recognise the PDF file format!
    It's a pity that Keynote has so many restrictions for use in Slide/music presentations, having seen incredible professional results with Pic2exe (which unfortunately at present is not available in Mac format - tho the Win exe file will run I am told).

    Please tell us what you are really trying to do!!
    You know like dumb stuff like where are the images from? What's their resolution? If you';re using Aperture you can't be a newbie. 
    You can achieve incredible professional results in Keynote, but you need to know how it wants to work.
    Kelly is right. This is not just a ***** session but a place to get real help from real people.
    Silly things like Image Placeholders will make your life much simpler. etc.

  • Black background when scaling images with transparent background

    I am implementing Zooming functionality for reports which have some icons. I am trying to scale icon by scaling its image. But the problem I am facing is that the icons have transparent background and the scaling puts a black background in place of transparent. Is there any way to maintain its transparency or better yet, Is there anyway to put a white backgound instead of the black one that is created by default ? Here is my code
         public static Icon getScaledIcon(Icon icon){
             if(icon instanceof ImageIcon){
                  Image outImage = ((ImageIcon)icon).getImage();
                      return new ImageIcon(getScaledImage(outImage));
             }else{
                  Image outImage = new BufferedImage(icon.getIconWidth(),
                            icon.getIconHeight(),
                            BufferedImage.TYPE_INT_ARGB);
                    JComponent comp = new JComponent(){};
                    icon.paintIcon(comp, outImage.getGraphics(), 0, 0);
                    return new ImageIcon(getScaledImage(outImage));
        public static Image getScaledImage(Image image){
             image = image.getScaledInstance((int)(image.getWidth(null) * getScale()),
                           (int)(image.getHeight(null) * getScale()), Image.SCALE_SMOOTH);
            return image;
        }I haven't done much image manipulation , so I would really appreciate any help or advice.

    I have also not done much of image work. But I guess you could achieve your functionality of showing scaled image in the screen by not scaling the image and show it, instead scale the image in paint method by calling g.drawImage giving the height and width. But use high resolution images so that scaling is good.
    If you do in this manner, you could give any colour you want as background to fill the transparent area or leave it as such.
    Regards,
    techece.

  • Is this a way of scaling images?

    Hi,
    I've got a few questions regarding image scaling and need some advices on whether my method is correct or to throw away as quickly as possible...
    I've defined all my website images in "ems" so that they rescale when the user zooms in/out the page or decreases/increases the font. I thought this would be good for accessibility purposes (?).
    There are 2 tedious things with that system:
    1. the image dimensions must be computed in ems,
    2. the image dimensions depend on the text font size used on the page.
    If I change the page font size but want to keep my images as they were previously displayed, I need to go through these calculations again. It very quickly gets seriously annoying.
    I found one way of avoiding this: I define font-size:1px for each image. The great thing is that since I have body {font-size:100%}, it turns out that when the image has font-size:1px, then its dimensions are the same in pixels or ems. I mean that if I want to display my image with width:50px and height:10px, then I just need to specify width:50em and height:10em. Or at least the result is close enough not to be seen different to the naked eye. This only is useful if I am not modifying too much the page font size, e.g. font-size:0.95em to font-size:1.05em. So I thought this is great! But... there always are associated problems.
    Problems found so far:
    1. This only works if applied to the image, not its container (e.g. a floating div), so that the font-size doesn't propagate to any child element, e.g. a caption below the image.
    2. If the image is inside a div that is floated, then I need to set a width for that div and this width needs to be calculated with respect to the normal page font size, not my 1px—if this makes sense. If I were to change my image dimension, then I'd need to change this width too.
    3. It works fine with IE and Firefox, but no Safari and Opera.
    Hence the following questions:
    - Is this method totally absurd (as it probably sounds after my description) and/or infringing some basic rules?
    - Is there anything simpler?
    - Why doesn't it work in Safari or Opera?
    I'd be very grateful for any comment on this. Having started HTML and CSS only 1.5 month ago and not full time, I have no feeling at this stage whether this is a correct or acceptable way of thinking or not...
    Emilie

    - Is this method totally absurd
    Yes. Scaling images is very easy. Unless all your images are the same width, you will need to create an attribute selector for each image, but the principle is the same for each one.
    Let's say you have an image called mypic01.jpg, which is 600px wide.
    Remove the width and height attributes from the <img> tag. This displays the image at its normal size.
    Create the following style rule:
    img[src$="mypic01.jpg"] {
      width:50%;
      max-width:600px;
    This makes the image 50% of the size of its parent element, but ensures that it never grows bigger than its maximum size. Just use the image name in place of "mypic01.jpg", and adjust the correct value for max-width.
    The only drawback is that this won't be supported by IE6, which will simply display the image at its normal size. If it's important to support IE6, change from an atttribute selector to an ID selector like this:
    #mypic01 {
      width:50%;
      max-width:600px;
    Add the ID to the <img> tag:
    <img src="mypic01.jpg" alt="my scaling image" id="mypic01" />
    IE6 will ignore the maximum width, but will scale the image to 50% of the size of the parent element.

  • TIFF SCALED IMAGE QUALITY

    HI,
    I am scaling a scanned image to fit into my application screen.
    But the scaled image quality is very bad.
    I am using the following code to scale the image.
    PlanarImage im0 = JAI.create("url", new URL (sURL));
    Interpolation interp = Interpolation.getInstanceInterpolation.INTERP_BICUBIC);
    ParameterBlock params = new ParameterBlock();
         params.addSource(im0);
         params.add(0.4F); // x scale factor
         params.add(0.4F); // y scale factor
         params.add(0.0F); // x translate
         params.add(0.0F); // y translate
         params.add(interp); // interpolation method
    /*Create an operator to scale image1. */
    JAI xx = JAI.getDefaultInstance();
    Map hints = new HashMap();
    hints.put(RenderingHints.KEY_RENDERING,RenderingHints.VALUE_RENDER_QUALITY);
    hints.put(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    RenderedImage image2 = xx.createNS("scale", params,new RenderingHints(hints));
    ANy idea helpful,
    Thanks,
    Ram

    If you need to scale down your image from a factor smaller than 0.5, do the reduction twice, using factors that when multiplied give 0.4. For example, first reduce it using 0.8 then reduce the result using 0.5.
    Weird, but should work. I've heard that reducing images in JAI with factors < 0.5 yield poor results.
    Rafael

  • Improving scaled image quality

    i am a newby in scaling images issues.
    i am scaling an image with the following code, but the resulting quality is not satisfying comparing it with the scaled image done with paint shop pro (for example).it is not as sharp as the good one.
    is there a better way to scale the image with a higher quality.
    Image image = getImageFromDatabase();
    Image newImage = image.getScaledInstance( iw, ih, Image.SCALE_SMOOTH );
    //iw = resulting width
    //ih = resulting height
    thanx for your help.
    marc

    If you need to scale down your image from a factor smaller than 0.5, do the reduction twice, using factors that when multiplied give 0.4. For example, first reduce it using 0.8 then reduce the result using 0.5.
    Weird, but should work. I've heard that reducing images in JAI with factors < 0.5 yield poor results.
    Rafael

  • Scaling images and text in indesign CC

    Indesign CC (MAC 10.8.4)
    Hi, I'm a long time user of indesign and I'm having a real problems with scaling text and image boxs. Can't believe I'm asking having to ask this question, it's such a basic function!!
    If I use cmd or cmd+shift none of the content scales.
    Is there a new check box or a preference I need to change?
    Thanks in advance!

    There's no change in the way scaling works in InDesign CC. Cmd+Shift-scaling adjusts the content with the frame.
    Things to try out: (1) Restoring your preferences. (2) Looking for applications that conflict with the shortcuts. (For example, I found the password protector 1Password conflicts with InDesign.)

  • Ease in/out for a scaling image?

    I have an image with a keyframe on the first frame and one on the last, and I have the image scaling up on the last frame. I'm not happy with how CS6 is scaling the image up, I would like to have it do it smoother. I right click on the last keyframe and choose both Ease in and also try Ease out, though I am not seeing much difference. Which option should I be using, and are there any other options I should look into?
    Thanks.

    As others have stated, one can adjust the Interpolation of the Keyframes. Initially, all Keyframes will be Linear, and often, some form of Bezier Interpolation is preferable. The Ease Out (first Keyframe), and Ease In (last Keyframe) are really just Presets, and will do a "smoother" job with the Interpolation. As Steven points out, one has more options, and one of those, say Auto Bezier, might be better, and also offer the user more control - it just depends on what one wants. PrPro offers a great deal of control with regards to Keyframe Interpolation.
    Good luck,
    Hunt

  • Not scaling images in drop zone

    Hi,
    For some reason when I drop an image into a drop zone in iDVD 6, it will not scale the image so a large chunk of the image is cropped off. Since the image I need to use has some text on it, I'm trying t resize it to fit in an external editor, but no luck as of yet.
    Any help would be greatly appreciated.
    Many, many thanks,
    David

    David,
    I know I used to have the problem you described back in the iDVD 4 (or earlier) days, but I just did some more checking.
    The article Selecting the portion of a movie or image that appears in the drop zone at http://docs.info.apple.com/article.html?path=iDVD/5.0/en/258.html says (in part): When you drag a picture or movie into a drop zone, the aspect ratio of the image is preserved and it is scaled larger or smaller until the top, bottom, left, or right edge of the image meets the edge of the drop zone. You can move the image to choose which portion of the image is visible in the drop zone.
    The article was written for iDVD 5 but when I 'fired up' iDVD 6 and tried some 5 megapixel images in the drop zones of several themes, everything worked as advertised in the article.
    What theme are you having problems with?
    F Shippey

  • Firefox distorted large, scaled images

    Hi everyone,
    I have a problem with Firefox 3.5.5-1 (it persists in 3.6b5 from AUR) when zooming large images that extend beyond the screen.
    Using this random test image: http://homepage.mac.com/tribe3/.Pictures/test.jpg my browser produces a correctly scaled partial image while loading it: but when its finished it switches to a completely distorted version of a part of the image: .
    If I zoom in and display the image in its original size everything is fine.
    Another problem that may relate to this are some small images (i.e. logo) on youtube .
    I tested it with a new user, so it is not dependent on any addons or profile settings.
    I am using the radeon driver with an x1800 mobile.
    Does someone know whether firefox uses some library/non-mozilla code to display images and rescale them? Then I could test whether this is actually a bug with firefox or maybe some driver/X/etc. issue.
    I searched and found no directly related problems and no similar bugs at the mozilla bugtracker, so maybe I should open a bug there. I think however that it is somehow related to my Arch install, as my Ubuntu 8.10 install does not suffer from this (using older Xorg/driver versions however).
    Any hints on this problem? Anyone experiencing the same?

    For the scaling problem, actually there is no solution yet.
    If i wasn't wrong, in the past (years ago) mozilla pointed to a cairo issue.
    Last edited by kokoko3k (2010-06-15 15:22:41)

  • Scaled images within a HBox

    My goal is to create a list containing image thumbnails side by side. The images are created dynamically as is the list.
    private function createThumbsList(imageUrls : Array) : void {
        var list : HBox = new HBox();
        list.height = 50;
        this.moduleContext.displayContainer.addChild(list);
        for (var i : Number = 0; i < imageUrls.length; i++)
            var img : Image = new Image();
            img.source = imageUrls[i];
            img.percentHeight = 100;
            img.addEventListener(MouseEvent.CLICK, function(event : MouseEvent) : void {
                // show fullsize image
            list.addChild(img);
    The thumbnails are scaled to the height of the list. Although the images' content width is scaled too, their control width remains unscaled. Thus there are heavy spaces between the thumbnails.
    How to solve?
    I learned there are properties "width" and "contentWidth" and you only have to do:
        img.width = img.contentWidth;
    But nothing happened when I added this after list.addChild(img);. I guess it's too early in the control's life cycle and "contentWidth" is not calculated yet, right? When is the right moment for the command? Or is there a workaround, e.g. usage of another container control instead of HBox?
    Thanks,
    Steffen

    hi,
    If you use a loader  image.load() then you can calculate the aspect and set the width correctly in the load complete event. I don't have time at the moment to look at an mx based solution but the following example allows you to load images but the renderer calculates the width based on the list height.
    http://gumbo.flashhub.net/pagedrop/  source included.
    David

  • How to turn off [Scaled] images in photoshop

    I found this solution once before, but for the life of me can't now.  In photoshop, while editing, my images are of the correct resolution.  But when I save them they are squeezed on the left and right.  I know this is because the "scaled" feature is enabled in photoshop.  How do you turn this off?
    se

    This is just a guess but since you are editing a YouTube video frame, the pixels are not square and PS has automatically set a non-square viewing mode.  This is useful if the frame you are editing will be going back into the video, but not useful if you want to save it as a still image.
    There are several Pixel Aspect Ratio options on the View menu.
    Here is someone with the same question in 2005:
    http://forums.adobe.com/message/6257869#6257869

  • Why cannot PS/CC save re-scaled image?

    Why can't Photoshop CC, after scaling an image down, save it?
    Error message claims it cannot find the file, even though it is on screen and just opened from it permanent folder.
    NOTE:
    It will save after other image processing, but so far repeatedly balks after re-scaling.
    Bruce Hinton

    Bruce Hinton wrote:
    Asus Maximus IV mobo, with i7-2700K CPU, 16 Gb RAM, PS CC current version running in Win 7Pro x 64, latest SP and updates.
    Does little to resolve what balks is?  I would not think an I7  16GB windows 7 pro PSCC would have any problem yet you state yours balks whatever balks is I believe you just have no idea what a balk is.
    Photoshop is also not a file editor there is no file on your screen what is on screen is your composite view of an open document.
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    There are two current versions of CC and CC 2014 versions 14 and 15 of PS...
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Adobe Photoshop Version: 2014.1.0 20140730.r.148 2014/07/30:23:59:59  x64

  • Resizing/scaling images

    Hi All,
              I am integrating Google Maps using BSP..  I have custom icons being displayed on the map as markers. I have a requirement where in this marker has to be scalable. Scaling/resizing images is possible using Vector Images using Walter Zorn Java scripts http://www.walterzorn.com/dragdrop/dragdrop_e.htm . But its getting complex as I have dynamic images and numerous images to be placed.. Can this be done in my scenario?
    Is there any other option for scaling / resizing images dynamically?

    Hi,
    the simpliest is to use a javascript framework like jquery plus a crooesponding plugin like imagefit.
    Check out google via 'jquery scale images'.
    Best regards, Stefan

  • Mail is scaling images that are attached

    For some reason, when I drop an image from my web site (or desktop), mail is scaling the image down. I've confirmed that it's not just a preview problem by opening the image from the mail in Preview also by emailing it to myself.
    Is there some setting somewhere that got set that controls this?
    Other machines I have don't do it.

    when you are composing a message and drop an image onto it you get a small scroll button "image size" in the lower right corner of the mail composition window. use it to set the image size to "actual size".

Maybe you are looking for

  • Awr questions

    Hi, I have some questions related to AWR: 1) In AWR there is a section on "SQL ordered by Sharable Memory" . I am not clear what is the meaning of sqls ordered by sharable memory? and and how that information could be used for a tuning oppertunity? 2

  • Zen Vision M (30gb) - as Unknown Device??

    Hi all, I had a problem this morning when I plugged in my Zen Vision M to my computer this morning. Normally when the player plugs in, the screen shows that it's docked. But today, instead of showing the 'docked' screen, it displays the menu when the

  • 10.6.8 Netboot - "Still waiting for root device"

    Hi all, I am having trouble with one particular 10.6.8 Netboot image that is hosted on a Mac Pro running 10.5.8 Server.  (The main 10.5.8 Server is currently hosting about 15 other Netboot and Netrestore images that work with no problem.)  I built th

  • Airport express, Airtunes, flashing amber

    I picked up a new Airport Express this week. I bought it for the sole purpose of streaming iTunes from the iMac in the den to the home theater unit in the living room or the stereo in the shop. I have no need for wireless internet or wireless connect

  • What version of jDeveloper to be used for AS 10.1.2.0.2

    Hello All, I would like to use the BPEL 10.1.2.0.2 on Application Server 10.1.2.0.2 for holding the BPEL workflows. now what vesrion of jDeveloper can I use to develope and deploy the BPEL processes and where can I download it from. Thanks Krrish