How to proportionally scale one side of a photo more than the other?

Does anyone have any suggestions as to how to scale one side of an image more than the other? I've tried Content-Aware scale but it always yields ugly results. Any help is greatly appreciated.
Peter

Hi Peter
I thik the main problem is the amount of the side of the column showing is making the right column appear larger.
I would therefore suggest moving part of the right side of the image slightly to the left.
You need to be careful in distorting the image as it will show up in the perspective on the floor.

Similar Messages

  • How do I make one account's home folder visible to the other?

    How do I make one account's home folder visible to the other? Also, when I begin to delete an account, it asks if I want to either delete its home folder, keep it in the users folder, or save it in a disk image. I want to be able to see it from my remaining account once I delete it, so if I leave it in the users folder, would I be able to see all the files (right now I can't

    Use terminal to add ACL to the account,
    at the prompt:
    sudo chmod -R +a "<user> allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,file_inherit,directoryinherit" /User/<user_name> #yep, all that goes on one line!#
    #Replace <user> with the user name that you want to have file/folder privileges#
    #Replace <user_name> with the account you want to process#
    example:
    sudo chmod -R +a "sue allow list,add_file, .... deletechild,readsecurity,file_inherit,directoryinherit
    /User/joe
    #sue now gets full access to joe's files and folders#
    to remove:
    sudo chmod -R -a "sue allow list,add_file, .... deletechild,readsecurity,file_inherit,directoryinherit
    /User/joe
    You can add as many users as you want! Just lather, rinse repeat. That is how I share my itunes
    directory with the ones I want to share it with.
    That's the simplest way. ACL permissions overrule posix permissions.

  • Qosmio X300 - one Geforce 9800 GTS runs hotter than the other

    Hi.....Does anyone have a clue why 1 of my 2 gfx cards seems to be running alot hotter than the other? I would assume they would both be roughly the same temp. This is an example...Nvidia Defaul @ 1680x1050
    512MB GeForce 9800M GTS (Toshiba) 63 C
    ForceWare version 186.42
    512MB GeForce 9800M GTS (Toshiba) 49 C
    ForceWare version 186.42
    256MB GeForce 9400M G (Toshiba) 56 C
    ForceWare version 186.42
    SLI Disabled
    When i exited playing F1 2010 yesterday, one of the cars was 90C and the other about 58C......Im sure that isnt right. !!!!
    Also i see that it says SLI disabled....again i dont understand this, as i thought my rig automatically switched to SLI mode when needed.
    These temp readings was taken from the program speccy.
    My laptop is a Toshiba Qosmio X300-15U....running windows 7 ultimate 64 bit. 4gb ram. Q6600@2ghz.
    Any help would be really apprieciated.
    Thanks

    Well i'm sorry you've had such clueless replies to your question.....if i had a cent for everytime a "regular" toshiba contributor says "use compressed air" or "only use Toshiba display drivers blah..blah`.....i'd be a very rich man!
    The simple reason why only 1 of your 9800m gts cards is hot is because it is the only card being utilised in most games especially recent ones like F1 2010.
    You see the toshiba graphics driver you have installed on your Qosmio is nearly 2 years old-and it doesn't contain any SLI profiles for games that have been released after this driver was created (mid 2009).
    Just because you have 2 Nvidia GPUs in the laptop it does not mean that they are being utilised everytime-in fact it is totally dependent on having an SLI profile for specific program/game within the driver itself.
    If you open the Nvidia control panel and go to advance settings/manage programs you can scroll down a list of sli profiles for programs installed on you machine and also view a complete list of all profiles within the driver.
    It is possible to add you own sli profiles on this screen by browsing for a games executable and adding it to the list of preinstalled profiles.
    However in my experience this rarely,if ever, produces much of a performance increase and can sometimes cause instability-and is no substitute for Nvidias own SLI profiles.
    So.. the only way you can gain an SLI boost in games is by having the latest driver with the latest profiles....but wait i hear you say..
    Toshiba haven't updated the driver for our laptop since 2009!!!
    Yes thats the massive downside of owning a gaming laptop especially one as unique as Qosmio x300-just see my post in the Gaming forum-`Toshiba display drivers and what they don't want you to know' and i'm not gonna go into all that again.
    All i say is that you can get some great advice on using modified Nvidia drivers on Laptopvideo2GO.com and if you go to the forums and look under Nautis1100 Hybrid and optimus drivers you'll find a new thread especially created for owners of qosmio X300s.
    Good luck!

  • HT204053 It seems as if I have 2 accounts.  I would like to combine one account with the other.  How can I close one apple ID and combine it with the other that I was not aware I had set up???

    I would like to close one account and only use the other.  D

    You can't close or delete accounts (you can only remove any personal info from them and stop using them), and you can't merge accounts or transfer purchases to another account - content will remain tied to the account that downloaded them.

  • One event occuring more than the other

    For my exam on Java (i'm almost there), I got a simulation with Foxes & Rabbits. I've added Hares to this. Foxes eat the rabbits and hares, but the rabbits and hares breed faster again. It's going fine so far, the only thing that I need to implement is that a Fox eats rabbits more often than hares, and I have no clue on how to implement it. What I've thought of is to make an integer for both the rabbits and the hares, with a sort of attractiveness-rating, but then I got stuck on how to implement it.
    Anyway, here are the codes:
    import java.util.List;
    import java.util.Random;
    public class Rabbit extends PreyAnimal
        // Characteristics shared by all rabbits (static fields).
        // The age at which a rabbit can start to breed.
        // private static final int BREEDING_AGE = 5;
        // The age to which a rabbit can live.
        // private static final int MAX_AGE = 50;
        // The likelihood of a rabbit breeding.
        // private static final double BREEDING_PROBABILITY = 0.15;
        // The maximum number of births.
        private static final int MAX_LITTER_SIZE = 5;
        // A shared random number generator to control breeding.
         private static final Random rand = new Random();
         public static final int PREFERENCE = 6;
        // Individual characteristics (instance fields).
         * Create a new rabbit. A rabbit may be created with age
         * zero (a new born) or with a random age.
         * @param randomAge If true, the rabbit will have a random age.
        public Rabbit(boolean randomAge)
            super.incrementAge();
            if(randomAge) {
                setAge(rand.nextInt(MAX_AGE));
         * This is what the rabbit does most of the time - it runs
         * around. Sometimes it will breed or die of old age.
         * @param currentField The field currently occupied.
         * @param updatedField The field to transfer to.
         * @param newAnimals A list to add newly born rabbits to.
        public void act(Field currentField, Field updatedField, List newAnimals)
            super.incrementAge();
            if(isAlive()) {
                int births = breed();
                for(int b = 0; b < births; b++) {
                    Rabbit newRabbit = new Rabbit(false);
                    newAnimals.add(newRabbit);
                    newRabbit.setLocation(
                            updatedField.randomAdjacentLocation(getLocation()));
                    updatedField.place(newRabbit);
                Location newLocation = updatedField.freeAdjacentLocation(getLocation());
                // Only transfer to the updated field if there was a free location
                if(newLocation != null) {
                    setLocation(newLocation);
                    updatedField.place(this);
                else {
                    // can neither move nor stay - overcrowding - all locations taken
                    setDead();
         * Generate a number representing the number of births,
         * if it can breed.
         * @return The number of births (may be zero).
        private int breed()
            int births = 0;
            if(canBreed() && rand.nextDouble() <= BREEDING_PROBABILITY) {
                births = rand.nextInt(MAX_LITTER_SIZE) + 1;
            return births;
        public int getPreference()
            return PREFERENCE;
         * @return A string representation of the rabbit.
        public String toString()
            return "Rabbit, age " + getAge();
    }The class Hare is nearly the same ofcourse.
    Here's the fox, on where I got to implement the preference:
    import java.util.List;
    import java.util.Iterator;
    import java.util.Random;
    public class Fox extends Animal
        // Characteristics shared by all foxes (static fields).
        // The age at which a fox can start to breed.
        private static final int BREEDING_AGE = 10;
        // The age to which a fox can live.
        private static final int MAX_AGE = 150;
        // The likelihood of a fox breeding.
        private static final double BREEDING_PROBABILITY = 0.09;
        // The maximum number of births.
        private static final int MAX_LITTER_SIZE = 3;
        // The food value of a single rabbit. In effect, this is the
        // number of steps a fox can go before it has to eat again.
        private static final int RABBIT_FOOD_VALUE = 6;
        private static final int HARE_FOOD_VALUE = 4;
        // A shared random number generator to control breeding.
        private static final Random rand = new Random();
        // Individual characteristics (instance fields).
        // The fox's food level, which is increased by eating rabbits.
        private int foodLevel;
         * Create a fox. A fox can be created as a new born (age zero
         * and not hungry) or with random age.
         * @param randomAge If true, the fox will have random age and hunger level.
        public Fox(boolean randomAge)
            super();
            if(randomAge) {
                setAge(rand.nextInt(MAX_AGE));
                foodLevel = rand.nextInt(RABBIT_FOOD_VALUE);
            else {
                // leave age at 0
                foodLevel = RABBIT_FOOD_VALUE;   
         * This is what the fox does most of the time: it hunts for
         * rabbits. In the process, it might breed, die of hunger,
         * or die of old age.
         * @param currentField The field currently occupied.
         * @param updatedField The field to transfer to.
         * @param newAnimals A list to add newly born foxes to.
        public void act(Field currentField, Field updatedField, List newAnimals)
            incrementAge();
            incrementHunger();
            if(isAlive()) {
                // New foxes are born into adjacent locations.
                int births = breed();
                for(int b = 0; b < births; b++) {
                    Fox newFox = new Fox(false);
                    newAnimals.add(newFox);
                    newFox.setLocation(
                            updatedField.randomAdjacentLocation(getLocation()));
                    updatedField.place(newFox);
                // Move towards the source of food if found.
                Location newLocation = findFood(currentField, getLocation());
                if(newLocation == null) {  // no food found - move randomly
                    newLocation = updatedField.freeAdjacentLocation(getLocation());
                if(newLocation != null) {
                    setLocation(newLocation);
                    updatedField.place(this);  // sets location
                else {
                    // can neither move nor stay - overcrowding - all locations taken
                    setDead();
         * Increase the age. This could result in the fox's death.
        private void incrementAge()
            setAge(getAge() + 1);
            if(getAge() > MAX_AGE) {
                setDead();
         * Make this fox more hungry. This could result in the fox's death.
        private void incrementHunger()
            foodLevel--;
            if(foodLevel <= 0) {
                setDead();
         * Tell the fox to look for rabbits adjacent to its current location.
         * @param field The field in which it must look.
         * @param location Where in the field it is located.
         * @return Where food was found, or null if it wasn't.
        private Location findFood(Field field, Location location)
            Iterator adjacentLocations =
                              field.adjacentLocations(location);
            while(adjacentLocations.hasNext()) {
                Location where = (Location) adjacentLocations.next();
                Object animal = field.getObjectAt(where);
                if(animal instanceof Rabbit) {
                    Rabbit rabbit = (Rabbit) animal;
                    if(rabbit.isAlive()) {
                        rabbit.setDead();
                        foodLevel = RABBIT_FOOD_VALUE;
                        return where;
                else if(animal instanceof Hare) {
                Hare hare = (Hare) animal;
                if(hare.isAlive()) {
                    hare.setDead();
                    foodLevel = HARE_FOOD_VALUE;
                    return where;
        return null;
         * Generate a number representing the number of births,
         * if it can breed.
         * @return The number of births (may be zero).
        private int breed()
            int births = 0;
            if(canBreed() && rand.nextDouble() <= BREEDING_PROBABILITY) {
                births = rand.nextInt(MAX_LITTER_SIZE) + 1;
            return births;
         * @return A string representation of the fox.
        public String toString()
            return "Fox, age " + getAge();
         * A fox can breed if it has reached the breeding age.
        private boolean canBreed()
            return getAge() >= BREEDING_AGE;
    }Is there anybody out there with a clue on how to do it? Or maybe with another solution than adding an integer? Would be much appreciated :)
    Btw, the full code with all classes is availble @ http://members.home.nl/firehawk/S200.rar

    dubwai offers a simple solution for you...this would be implemented in the findFood() method, i believe.
    i would offer a suggest. implements to an interface...this will get rid of the instanceof checking.
    example
    public interface Animal {  // common to all animal (in your application)
        public void setDead();
        public boolean isAlive();
    public abstract class Prey implements Animal{  // common to all animal that are a prey
        private boolean alive = true;
        private int foodValue = 0;
        public void setDead(){  alive = false; }  // probably better to name it die() instead of setDead()
        public boolean isAlive(){ return alive; }
        public abstract int getFoodLevel();
    public class Rabbit extends Prey {
        private static final RABBIT_FOOD_LEVEL = 3;
        public int getFoodLevel(){ return RABBIT_FOD_LEVEL; }
    private Location findFood(Field field, Location location){
        Iterator adjacentLocations = field.adjacentLocations(location);
        while(adjacentLocations.hasNext()) {
            Location where = (Location) adjacentLocations.next();
            Animal animal = (Animal) field.getObjectAt(where);
            if (animal.isAlive()){
                animal.setDead();
                foodLevel = animal.getFoodLevel();
                return where;
            return false;
    }i would probably makes the Prey an interface instead of an abstract class.

  • I purchased a seagate 5T hard drive that I would like to partition and have time machine on one side and drag and drop on the other side. Is this possible, and if so how?

    I purchased a Seagate 5T external harddrive which stated it was for both Mac and PC.
    I want to partition the drive so I can have a partition for time machine and a partition for drag and drop.
    My Mac book pro 17inch model has parallels. I would like a partition for time machine for the mac side and a partition for the PC side as well and a third partition for just saving work files so I don't clog up my laptop.  IS this possible? DrMAV

    yes it is possible using 'disk utility'. format the time machine backup as Mac OS Extended( journaled). The windows partition can use FAT32.

  • When using the business cards template, how do you create one card then apply that card to the other nine cards on the page?

    I have customized the first business card on the page of 10 and now want to apply that to all of the cards on the page.

    Sounds like you didn't follow the link or Jerrold's suggestion of grouping the Business Card contents with the card box.
    The instructions are quite detailed and work if you follow them.
    It is nothing complicated, the BCards are just rectangles containing text and images.
    1. Group them so they don't separate.
    2. Copy them by one means or another into a grid for printing.
    Peter

  • Quad G5 - One processor runs 20 degreesF hotter than the other!

    I use an app called Hardware Monitor to keep tabs on the various sensors in my G5. Today, for apparently no reason at all, CPU A (both cores) runs 20 degreesF hotter than CPU B!!! Not to mention 20 degreesF hotter than they ever did in the 4 months I've had the system. It does not matter if the computer is idle or if I give it a heavy work load, CPU A is always about 20 degrees hotter (it varies about 5 degrees -- for example, A is 122.3dF right now, and B is 103.0dF). I did a clean OS install on a different drive and took readings again, sure enough, it is the same. I removed all peripherals, check inside for dust, debris, etc... I can find no reason why this would happen! So far it has not been a problem, all the fans and pumps run at normal speeds. In the past my temps varied from about 98dF when idle, to about 150dF when under heavy load. CPU A now is 122dF - 165dF! Anyone have any ideas?

    This is only speculation, but it may because your coolant is not flowing at peak efficiently. What could cause this? There are micro-channels the coolant flows through to cool the processors. They may be starting to clog up for some reason or another. If the processors get to hot, the unit will go into thermal shutdown, so you don't need to worry -- yet. I would keep your eye on it and if the unit shuts down while you are working on it, check your logs for lines with "thermal" in them and get the unit looked at. Your LCS may need to be replaced at that point.
    Also, make sure you have/get AppleCare!
    -Bmer
    Mac Owners Support Group
    Join Us @ MacOSG.com
     An Apple User Group 
    ITMS: MacOSG Podcast >>

  • Am unable to print cd covers. All I get is the songlist on one side and a black space where the picture should be. Any suggestions?

    I am unable to print cd covers. All I get is the songlist on one side and a black space where the picture should be. Any suggestions?

    Thanks Bob.
    I am thinking along the same line.
    It's interesting that some of the unaffected graphics in the document come up as embedded, but some are just placed there with no link information.
    I guess it's just a matter of how the original graphic was treated or saved.

  • How do I share one itunes account between two users on the same computer

    How do I share one itunes account between two users on the same computer without taking up twice as much space on my hard drive?

    You would need to move the itunes folder to a location that both users have permissions to access such as the Shared folder or any folder on the root level of the macintosh HD.
    You can find instructions here http://support.apple.com/kb/HT1203 This method allows you to share the content without sharing the same library.

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    Thanks - I guess it is like there were two of me!
    I bought the iPhone first and it seemed natural to link it to the (work) e-mail address which was in constant use. The iMac for home use came next and it seemed natural to use my home e-mail address, particularly as I knew by then that I would lose the work address after my imminent retirement. The same logic went for the recent puchase of the MacAir. I am not sure what happened with the iPad (also a recent purchase) - iTunes seemed to puch me towards the same ID as the iPhone.
    It is not a huge problem - just makes my persona look schizoid! Otherwise very happy with everything Apple.

  • HT1660 how can I use one single library for all users on the same laptop?

    how can I use one single library for all users on the same laptop?

    You are most of the way there. Each user having access to hard drive is the key. If users are limited in file privileges this is harder.
    Any files you add to your library and any files she adds to her library are available to the other. Just not automatically. Each user must add the files to their own library using the add file or add folder option from menu bar.
    What I have done is set library location to a location outside of My Documents\My Music. On my network storage I have a folder names s:\itunes. Both accounts iTunes are set to use this location for the library.

  • How can I see if my program is for more than one user? We think we have bought in design for more users, but can not find out how to get in for more than one?

    How can I see if my program is for more than one user? We think we have bought in design for more users, but can not find out how to get in for more than one?

    If you bought a CC for team, you can log in at http://adobe.com and insert the e-mail that you gave at the moment at the purchase and than you can manage and see you product/plan/team.
    If I was not clear you can use the following link to help you solving your issue:
    Creative Cloud Help | Manage your Creative Cloud for teams membership
    If your not clear about this situation, contact with an agent of Adobe, by chat or phone. Use the following link to see the type of support you have on this matter:
    http://adobe.com/getsupport
    I think this will help you.
    Regards

  • How to multiple/ parellal sets of books to generate more than one financial statement based on different (or the same) accounting principles.

    How to multiple/ parallel sets of books to generate more than one financial statement based on different (or the same) accounting principles.
    My Client needs Parallel Ledger in SAP B1 similar like SAP ECC. Is this functionality available ?

    Dear Mr. Nagrajan,
    Thank you for your response. I have already gone through documents but not able to understand. Is there any setup for this ? or its just work around i.e. using template and special field in JV i.e. Ref. 1 /2
    My doubts :
    I understand that Chart of Account structure is one and common for IFRS and other accounting method. We need to create only those account separately ( 2 times with prefix like IFRS revenue account, GAAP Revenue account).
    Now at time of entry, Assume some entries / adjustment are specifically for IFRS and not for other ledger. In this case, What need to do ?
    You have mentioned about DTW approach but do we need to insert all JV's again with other ledger ?
    Someone suggested that if any entry which are specific to IFRS Ledger, We need to user Ref.1 /2 column or Transcation code column and in which we can put IFRS
    Based on this, Need to create 2 seperate template for IFRS and other ledger for all report.
    This is my understanding of Solution in SAP B1. Please help me to clarify my though process
    Please do needful.If you have done implemenation and if you can share doucment, it would be great help.
    Email :[email protected]

Maybe you are looking for

  • HOW TO GET ALL PURCHASES FROM ACCOUNT?

    I have been a customer for five years, and I have three computers, and 3(+) devices that I've used the purchased material on. How can I get everything that I've bought on one computer, once and for all? I've had Home Sharing enabled for everything fo

  • I just downloaded the 7.0 version but I do not have the orange tab at the top of the page

    I just downloaded FF 7.0 and I don't see the orange tab on the page. Might someone please respond to this? Thank you, Leeflea

  • I rented a movie and cant watch it

    i rented a movie and now it will not let me clcik on my tab for rent on itune to get to it to watch it it has finished downloading and it took my $ for the download i tryed reseting my computer as well and i still can not get to my move

  • Trouble with opening a 2nd page of Safari and getting Wx or Stock updates?

    My ipod touch says it is connected to internet through my home wifi router and all the items under Settings>wifi seem correct. My windows laptop works correctly on the same router. But when I open Safari on the Touch, the first page of the web site o

  • Certficate validation question

    When validating CA issued or Self signed, does it verify the expire time of the certificate and what are the consequences if the certificate is expired? Basically in my application to connect to email server on SSL port I'm using self signed certific