Trouble scaling pictures.

I'm having trouble scaling my pictures for wall paper. When I make the picture smaller, it bounces back to its original size.

I was wondering that too. Haven't seen anybody else post about it. Hope somebody has an answer.

Similar Messages

  • I am having trouble downloading pictures to my MacBook Pro os 10 from my iPhone 7 and a samsung galaxy 3 and also an evo htc

    I am having trouble downloading pictures to my MacBook Pro os 10 from my iPhone 7 and a samsung galaxy 3 and also an evo htc

    When you have kernel panics, the pertinent information is in the panic report.
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A panic report has a name that begins with "Kernel" and ends in ".panic". Select the most recent one. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    If you don't see any reports listed, but you know there was a panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.

  • I Am having trouble email pictures from Elements 11 .

              Hi everyone I am having trouble send pictures from Photoshop Elements 11. I did it before I don't why not working.  Could you help me .
                                                                                      Anna Marie

    Hi,
    If you get to the point of seeing the message ready to send and then click on the send button, do you see an uploading message?
    For an image that you have just emailed, go to the Information panel on the right hand side and look at History - does that end with an emailed message?
    Most errors I have seen have occurred before the email is actually sent.
    It could be a problem with the Adobe server but I have just managed to send myself an image.
    The other possibility is that the email is being blocked by a spam filter somewhere.
    Brian

  • I'm having trouble importing pictures from the internet....when I drag the picture to the icon, it gives me the option to import all duplicates. Even when I click "NO", it STILL imports every picture I have imported AGAIN, including the new one! WHY??

    I'm having trouble importing pictures from the internet....when I drag the picture to the icon, it gives me the option to import all duplicates. Even when I click "NO", it STILL imports every picture I have imported AGAIN, including the new one! WHY??

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • I have an apple ipad air and I'm having trouble selecting pictures on Facebook and when I open my music and select a song it plays the song two songs about it in the list

    I have an apple ipad air and I'm having trouble selecting pictures on Facebook and when I open my music and select a song it plays the song two songs about it in the list

    Two songs above it In the list sorry

  • I am having trouble sending pictures in text messages to anyone whether its a iphone user or not. Anyone know why? It just keeps saying not delievered

    I am having trouble sending pictures in text messages to anyone whether its a iphone user or not. Anyone know why? It just keeps saying not delievered

    Had the same problem a while ago. Call your mobile operator and they should guide you. It is some numbers that varies from each phone operator...

  • Having Trouble Downloading Pictures on Windows XP Computer to 5th Generatio

    i am using a windows xp computer & i'm having trouble downloading the pictures from my computer to the ipod.
    any help would be appreciated.
    thanks,
    bob
    e-mail: [email protected]

    In what way are you having trouble? Are you getting error messages of any kind or is it just general information on adding pictures that you need? For general information have a look at the tutorial: Transferring Pictures to Your iPod

  • Has anyone had trouble saving pictures on their iphone?

    Has anyone had trouble saving their pictures on their iphone 4S?  Recently I cannot save anything, nor can I edit or share. 

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Problem with scaling picture

    i got this little programm which opens an image. now, unfortunatelly almost all pictures are to big to fit in a frame. therefore i tryed to scale it. for some reason i get this outofmemoryerror. i have absolutely no clue how i could solve this problem.
    my code:
    the frame:
    public class ImageFrame extends JFrame {
        ImagePanel impanel = new ImagePanel();
        Container c = getContentPane();
        public ImageFrame() {
            super("ImageFrame");
            setSize(500,500);
            setLocation(300,300);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            c.add(impanel);
            setMenuBar(new MyMenuBar());
            setVisible(true);
        class MyMenuBar extends MenuBar {
            public MyMenuBar() {
                Menu m ;
                MenuItem mi;
                m = new Menu("File");
                mi = new MenuItem("Open");
                mi.addActionListener(new ActionListener(){
                    public void actionPerformed(ActionEvent e) {
                        impanel.openImage();
                m.add(mi);
                add(m);
    }the panel (with the error):
    public class ImagePanel extends JPanel {
        Image image;
        Insets insets;
        String file;
        public void setFile(String file) {
            this.file = file;
        @SuppressWarnings("static-access")
        @Override
        public void paintComponent(Graphics g){
            if (file!=null) {           
                Graphics2D g2d = (Graphics2D) g;
                if (insets == null) {
                    insets = getInsets();
                ImageIcon icon = new ImageIcon(file);
                image = icon.getImage();
                Image scale = image.getScaledInstance(400, -1, image.SCALE_SMOOTH);
                //HERE I GOT THE ERROR! WITHOUT THE LINE ABOVE THE PROGRAMM WORKS.
                g2d.drawImage(scale, insets.left, insets.top, this);
            repaint();
        public void openImage() {
            try{
                String Filename = openfile();
                if(Filename!=null) setFile(Filename);
                repaint();
            } catch(Exception ex){}
        String openfile(){
            FileDialog fd=new FileDialog(new Frame(),"File Select");
            fd.show();
            String fullpath=fd.getDirectory()+fd.getFile();
            fd.dispose();
            return fullpath;
    }hope someone can help me out here. thanks in advance.

    gianni88 wrote:
    thanks, i moved the repaint() into the actionPerformed part. is that a better place?
    where could i go with the scaling part? what is the reason why i get this error?I claim you can get away with no repaints:
    code:
    1. Read the image
    2. rescale it. Here is a good article: [http://today.java.net/pub/a/today/2007/04/03/perils-of-image-getscaledinstance.html]
    3. Set this to be the icon on a JLabel that is already in your GUI:
    imageLabel.setIcon(new ImageIcon(rescaledImage));Done!

  • Scaling pictures in print mode - Lightroom

    Hi all!
    Merry Christmas from Denmark!
    I have a problem rescaling the pictures when i use the presets in print mode. I figured the CMD key for moving the picture in the frame, but I haven't figured out how to scale the photo inside the frame - not scaling the frame!
    Can it really be, that the only solution is to go in develop mode, and scale the picture there?
    Hope some of you know the answer for this question!
    Thank you in advance
    -Daniel

    Hi guys!
    Thanks for your replies!
    An example of where this feature would be highly appreciated is when i have 3 photos in a 3, 2x2 squares and a want to place the photo in left box, a little bet left, instead of the actual picture, the middle one complete in the middel and the 3rd a little bit placed to the right inside the preset, or to upscale a portrait and only see the eyes for example - with cropping the pictures to that.
    Hope it made sense to you - i find it a little hard to explain.
    I guess its not possible :-)
    -Daniel

  • Has anyone had trouble scaling photos when trying to set a wallpaper?

    Since updating to iOS 7 I've been unable to scale my pictures when trying to set them as either the lock screen or home screen wallpaper. It will only set as the largest zoomed-in setting possible and I can't get the photo to a more scaled back size. When I shrink it with my fingers, it simply reverts back as soon as I let go and before I can press Set.

    Hey nytekit,
    Sounds like that is due to the parallax of the wallpaper, and one solution would be to Reduce Motion:
    You can stop the movement of some screen elements, such as the parallax of the wallpaper behind home screen icons.
    Reduce motion. Go to Settings > General > Accessibility and turn on Reduce Motion.
    via: Reduce onscreen motion
    http://help.apple.com/iphone/7/#/iph11d9baf58
    Welcome to Apple Support Communities!
    Cheers,
    Delgadoh

  • Option to keep aspect ratio when scaling pictures

    If I place a picture object on the report and change the size or scaling I woul like to have an option to keep the original aspect ratio. I've seen other products that have this feature. I use the ole object with a graphic location value (from DB field) so different pictures may appear based on data. Unfortunately the original pictures are not all the same size so pictures end up skewed when trying to fit.

    I meant for this to be in feature request thread. Not sure how to move it there or atleast delete it.

  • Having trouble importing pictures to iPhoto 6 from Canon SD400

    Have never had trouble in the past, but recently switched to a newer iBook and upgraded from OS 10.3 to 10.4.4. Now pictures are no longer importing properly to iPhoto. iPhoto keeps closing. Also, when I try to play existing videos I took with my camera in QuickTime, it also closes.

    Xan_Reeves:
    Welcome to the Apple Discussions. First I suggest the following:
    1 - boot into the system install disk and in the first window after the language selection window go to the Utilities menu and and run the repair disk routine, i.e. Repair Disk button. Then boot back into the iBook and repair disk permissions with Disk Utility (this time from the Disk Utility on the iBook).
    Now, download and instal the latest Quicktime (7.1.3) updater and the 10.4.8 COMBO updater followed by another repair of disk permissions with Disk Utility.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • Adobe Photoshop CC has trouble rendering picture

    I am running windows 7 64 bit and Photoshop CC 64 Bit.   After upgrading from PS CS6 to PS CC I have encountered issues with Photoshop CC correctly rendering pictures that worked just fine in CS6.  The issue appears to be in how I have my graphics card set up in preferences.  I have a Radeon HD 7770.    The Adobe web site says this card is Supported.  The problem is intermittent.  Out of 10 times I open the same picture 60% of the file openings will not be rendered correctly.  The issue shows as black grouping of pixels in various locations of the picture.  Under the preferences option in the performance window I typically have run with the Advanced option set.  I backed off to Normal but the issue continued.  I then changed the option to Basic and the issue occurs less frequently.  After a lengthy discussion with Adobe support they said I needed to change my graphic card.  This is an expensive solution.  Is a new graphic card my only option?

    Updating the driver and associated software appears to have fixed the problem.  My computer vendor said my video card drivers were current?  The pictures now display correctly consistently.  I will continue to monitor.  Thank you for your help.

  • Why am I having trouble sending pictures through text message?

    Why am I unable to send a picture through text message?  I have an iphone 4s. This never happened with my iphone4. I am about to switch and give my preteen my upgrade and take my old phone back. This was a waste of money. This is with both people who have Iphones and people who don't. (IM and regular text). I can randomly get one to go through, but it usually gets to about 90% and freezes. I can usually upload photos to Facebook. This is such an elementary function for a phone!!!!

    1. you should contact your phone carrier as they handle all messaging.
    2. Are you provisioned by your carrier for MMS?
    3. if you are have you gone into settings to make sure that MMS is turned on.

Maybe you are looking for