I need to seperate my picture into 3 pieces in perfect size order pls help?

I have been trying to modify my theme for my website but having no luck because the readme file said I need to use the psd file and edit the text then save it as a jpg which was fairly easy but then it said I will need to cut new jpegs for the header...there are 3 pieces I need to make and I think it doesn't show up on the web site after I have uploaded it because the sizes aren't correct so I need to know how to make my 3 pieces in perfect size order so I can make them work. please help?

So if you need the size in pixels, you just need to specify px after your values in the widht and height boxes on the top and then the crop will be done as per the pixels you have specified.
In you case it would be Widht 780 px  Height 89 px
But in this case you would be only able to crop in the specific proportion.
Incase you want to confirm or change the size, you can do so from Image->Resize->Image Size

Similar Messages

  • How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work". can anyone help

    How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work".
    Anyone can help?

    Right click on any folder in mail and select Create new mailbox.

  • How to divide different pictures into pie pieces so that they fit together in a circle

    I have six photos that I need to divide into pie piece shapes so that they fit together in a perfect circle. How do I do this??

    Draw a unilateral triangle (all angles are 60 degrees therefore) with the shape tool and use it as a vector mask on the images or as a template for a selection. Copy&paste as needed and rotate in place, then add a circle on top to cover up the unwanted parts.
    Mylenium

  • Need to seperate data aray into samples of 100 at a time to run through kurtosis and plot

    Hello,
    I am trying to build a vi that will take in a file and build an array (this part done) from it. from the array, I need to take samples of 100 and run kurtosis on and build an array of results for entire data set and possibly plot kurtosis values. any ideas? I have attached what i have so far. I keep getting errors for the kurtosis VI, not sure what the problem is.
    Thanks,
    Attachments:
    TqKurtosis Test Version.vi ‏15 KB

    Your program does not make a lot of sense. Why use a while loop that chops through your data in nanoseconds (=way before you have a chance to press the stop button!) and runs out of data equally quickly, leaving you nothing at the output tunnel. Why is your kurtosis indicator EXT datatype???
    The number of segments is exactly known, so the loop must stop after a known number of iterations. Since the number of iterations is size/100 (possibly rounded up), you need a FOR loop, or even easier, reshape the 1D array to a 2D array where each row is size 100 (see attached).
    Now simply loop through your segments and built an array of results at the output tunnel.
    Here's a quick draft example (LV 9.0), modify as needed. Since you did not include the subVIs, I skipped them and faked some data instead. I added some extra graphs for troubleshooting. Delete them once you are happy with the code.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    TqKurtosis Test VersionMOD.vi ‏21 KB

  • Placing Pictures into PS CS6 transforms image size

    Hey community,
    i have been looking for this problem on the web for hours now and can´t find a solution:
    I am having an issue concerning the 'Place' functionality. I want to place several hundred small pictures from Bridge in an existing PSD-file. Therefore i drag and drop them from Mini-Bridge into the file. The transformation-dialog pops up and i can place the image. Unfortinatly it changes the scale of every single image automaticly, which is a huge problem if you have to resize them to their original scale 200+ times.
    Is there a possibility to disable the automatic increasing size and place the images (.png-files) in their original scale? I don´t know if this is a PS-problem or is related to Bridge. Feel free to move it to the PS-Board if it helps.
    Thanks for your help!
    Best regards

    This is indeed more a question for the PS forum. However using Mini Bridge and drag and drop files it creates Smart Objects from the files which is a great feature to my opinion.
    And yes, the smart object always chooses the nearest document bounds to snap to. I don't know an other way, maybe the PS forum does.
    But be aware that you can select multiple files in MB and drag and drop them in one go. You only need to hit return for each file to get it placed. And after this you can select all the new layers in the layer panel and resize the SO to the format you want in one go. Using guides can be of help for scaling to the correct size and hold shift for keeping the ratio the same.
    Use right mouse click on layers to select the layer you want to move once rescaled. Plenty of easy workflows to use

  • Contacts deleting by themselves and iPhone needs a full backup restore after refusing to sync with iTunes. - Pls Help!

    I have had my new iPhone 5s since the middle of December 2013 and I really enjoy it, however, I'm finding the iOS a little unstable.
    I backup often - whether to iCloud or to my iMac at my office or to my Acer Windows 7 based Notebook at home, and I have had to do a full backup restore of my phone software after it suddenly refused to sync with iTunes. The only option open to me was "Restore iPhone" which also is a nuisance and takes a little while if you have a lot of content on your phone. I've had to do this 3 times now and it's getting on my nerves!
    Also, as I type this, my contacts are suddenly removing themselves from my phone book. I discovered this as I was going through my Whatsapp messages when I noticed a few numbers in my recent chats that didn't have names or contact pictures. When I scrolled to the top of the message, I noticed that the "add contact" detail was suddenly available. I immediately checked my phone book and noticed that those contacts are no longer available. A lot of my numbers are suddenly showing up like this within the last hour and I haven't changed any settings at all. I back up to my notebook and iCloud once a week. This problem is a first for me  as well.
    I must point out that I never had these issues with my iPhone 3GS which was only becoming cumbersome due to its outdated OS and because of its processing speed.
    Will I need to wait for the next IOS Update to solve this problem, or will I have to find an alternative solution?
    Any advice you have to offer would be most welcome.

    Simplify your question,will you? I have trouble in reading such a long English article.

  • Query for inserting data into table and incrementing the PK.. pls help

    I have one table dd_prohibited_country. prohibit_country_key is the primary key column.
    I have to insert data into dd_prohibited_country based on records already present.
    The scenario I should follow is:
    For Level_id 'EA' and prohibited_level_id 'EA' I should retreive the
    max(prohibit_country_key) and starting from the maximum number again I have to insert them
    into dd_prohibited_country. While inserting I have to increment the prohibit_country_key and
    shall replace the values of level_id and prohibited_level_id.
    (If 'EA' occurs, I have to replace with 'EUR')
    For Instance,
    If there are 15 records in dd_prohibited_country with Level_id 'EA' and prohibited_level_id 'EA', then
    I have to insert these 15 records starting with prohibit_country_key 16 (Afetr 15 I should start inserting with number 16)
    I have written the following query for this:
    insert into dd_prohibited_country
    select     
         a.pkey,
         b.levelid,
         b.ieflag,
         b.plevelid
    from
         (select
              max(prohibit_country_key) pkey
         from
              dd_prohibited_country) a,
         (select
    prohibit_country_key pkey,
              replace(level_id,'EA','EUR') levelid,
              level_id_flg as ieflag,
              replace(prohibited_level_id,'EA','EUR') plevelid
         from
              dd_prohibited_country
         where
              level_id = 'EA' or prohibited_level_id = 'EA') b
    My problem here is, I am always getting a.pkey as 15, because I am not incrementing it.
    I tried incrementing it also, but I am unable to acheive it.
    Can anyone please hepl me in writing this query.
    Thanks in advance
    Regards
    Raghu

    Because you are not incrementing your pkey. Try like this.
    insert
       into dd_prohibited_country
    select a.pkey+b.pkey,
         b.levelid,
         b.ieflag,
         b.plevelid
       from (select     max(prohibit_country_key) pkey
            from dd_prohibited_country) a,
         (select     row_number() over (order by prohibit_country_key)  pkey,
              replace(level_id,'EA','EUR') levelid,
              level_id_flg as ieflag,
              replace(prohibited_level_id,'EA','EUR') plevelid
            from     dd_prohibited_country
           where level_id = 'EA' or prohibited_level_id = 'EA') bNote: If you are in multiple user environment you can get into trouble for incrementing your PKey like this.

  • HT2731 i hav iphone and i restart it and delete all the files inside how can i start again my iphoe it say i need a valid sim with no pin lock to activate it again pls help

    i hav iphone and i restart it and delete all the files inside how can i start it again it say i need a valid sim with no pin lock to activate iphone again

    ICCID unknown is a critical failure, usually caused by hacking or jailbreaking the phone. It can not be fixed. The phone will need to be replaced.

  • I have a profile that has 2 email accounts in it - I need to seperate them into two distinct profiles, how can I do this?

    I had a single laptop and several email accounts - a personal gmail account, a work gmail account (freelance writing) and a non-gmail account for my day-job.
    Until recently, my two gmail accounts were under a single profile and the job email in another.
    A month ago, I purchased a new computer so now I have a computer at home and at work and need to set up my emails at home.
    When taking a backup from thunderbird on my existing/old computer, it has it all saved as one profile - BUT I need to seperate them at home into seperate profiles.
    A friend suggested 1) putting it back as it is 2) then renaming the profile folder and 3) deleting the second account, 4) putting back the whole original backup folder so it creates a second profile and then 5) deleting the other email from this new profile, thus leaving two profiles.
    However, this sounded strange to me - possible, but strange - so I've elected to ask for help here before I try anything.
    Any advice in this regard is greatly appreciated.
    Cheers.

    Basically that's the way to go, with some modifications:
    Instead of<br>
    ''1) putting it back as it is 2) then renaming the profile folder''
    follow these instructions:<br>
    Create a new profile and copy the old one over it.
    http://kb.mozillazine.org/Moving_your_profile_folder_-_Thunderbird#Create_a_new_profile_and_copy_the_old_one_over_it
    The same goes for<br>
    ''4) putting back the whole original backup folder so it creates a second profile''
    Make sure to create backups of your profiles.
    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Backing_Up_and_Restoring

  • I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    I have a MacBook Pro and OS10.6 and am trying to log into a site that requires me to enter a code from a picture ... problem is all I get on the screen is a white '?' in a blue box. What do I need to display the picture?

    Reload the page. If it doesn't load, choose Activity from Safari's Window menu, find that picture in the list, and see what it says to the right; this may reveal what the problem is.
    (91827)

  • What do I need to do to get my cannon camera to upload pictures into iPad . When I plug it in system comes up connected USB device is not supported?

    What do I need to do to get my cannon camera to upload pictures into iPad . When I plug it in system comes up connected USB device is not supported?

    Use the camera's SD card instead.
    Another way. You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
    Secrets of the iPad Camera Connection Kit
    http://howto.cnet.com/8301-11310_39-57401068-285/secrets-of-the-ipad-camera-conn ection-kit/
     Cheers, Tom

  • Can no longer copy and paste from browser into illustrator - get placeholder that says "QuickTime and a decompressor are needed to see this picture"

    We upgraded our iMacs to Yosemite and lost functionality on Illustrator CS4.  We can save a picture to the desktop and then drag or 'place' the image to the Illustrator document, but if we drag directly from the browser or cut/copy/paste, we get a placeholder stating 'QuickTime and a decompressor are needed to see this picture'.  .png, .psd, and .tiff files give a missing plugin error.

    Illustrator CS4 and Yosemite aren't fully compatible. Some folks might have succeeded in getting it to run, but most have not.

  • After updated to iPhoto 9.3.1 and I do not see any of my devices (iPod, iPhone...) in the source list and I need to take the pictures off of the devices into iPhoto.

    iPhoto update does not let me see any of my devices (iPod, iPhone or iPod Touch) and I need to remove the pictures on some of these devices to free up some space for new pictures.
    ~Jeff

    Go to iPhoto Preferences/General and make sure Connecting camera opens=iPhoto. Also, check and see if the devices are recognized by iTunes or Image Capture.

  • How to seperate a catalogue into many catalogues ?

    Hi,
    I have one catalog that contains about 300 000 pictures that are located in about 14 different hard drives. Some hard drives contains modifications that were done in Lightroom 2 but most of my recent work is with Lightroom 3. It is getting way too big now. Doing my backups takes forever.
    I want to seperate my catalog into 14 catalogs, one for each hard drive. I don't know which way would be the safest so I don't lose my metadata, selections, collections, and histories.
    I have tried to do copies of this catalog (one for each hard drive). Go in one copy and then delete all the pictures and folders from the 13 other hard drives but it is was taking forever and it ended up that my catalog was corrupted. I was also thinking of "exporting this folder as a catalog" but this mean exporting the pictures as well which is not what I want since it will be relocated and it will also take forever to do. How should I proceed ?
    Thank you for your help,

    Usually one catalog works best. But with 300 000 pictures you maybe have a case for more than one catalog. Still, I don't know if splitting your catalog into one for each drive is such a good idea.
    The reason is that cross-management between catalogs is never easy and needs lots of experience - but you may have it.
    To split a catalog you select the images you want to split of from the main catalog and go >File > Export as catalog. You need to make sure that all images are selected. For instance if you want a separate catalog for drive X you would go to the Grid Mode and select all images on drive X. To see all images of drive X in the topmost folder of drive X make sure that <Show Photos in Subfolders> under  <Library> is checked. Exporting as catalog will export these images with all edits and metadata.
    After exporting as catalog you have to remove them from the main catalog by selecting them all, then right-click and select <Delete Photos> and choosing the option <Remove> - NOT <Delete from disk>!! "Remove" means removing images from the Lr catalog but leaving them on the hard drive.
    Now, one advice to the wise: I would try this first with one folder with just a few images.
    WW

  • My iphone 5c storage is almost full and I need to delete some pictures to free up some space, I pay iCloud for extra storage but I'm afraid if I delete it off my phone that it will delete it from iCloud, is that true? I can't afford to lose these pictures

    My iphone 5c storage is almost full and I need to delete some picture to free up some space. If I delete the pictures off of my phone, will they be deleted off of iCloud as well? I cant afford to lose these pictures.

    http://support.apple.com/kb/HT4083
    Then take pics etc off iphone into a secure location on PC/Mac

Maybe you are looking for

  • Sound Problems On My MacBook Pro (Retina)

    Mysteriously, my computer started to sound very strange when playing anything sound related (See video below). Sounds like a warped "boing boing" sound throughout the music I'm playing through YouTube (it even happens in my itunes). Super hilarious,

  • How to change dynamically type of columns in DataTable

    Hi I have a dataTable bound to custom object properties. In a column i want to set text type as Link Action or OutputText depending on some criteria. Can this be done. If yes then how.

  • Conversion of PO to Sales Order

    HI...        I have two Company Code as Company A & Company B. Company B is Subcontracting Vendor of Company A. HOw to Convert "Subcontracting PO"of Comapny A to "Sales Order "for Company B.

  • DVI to Component HD

    Hi there, I have a MBP (first one, Intel Core Duo, not Core 2 Duo). I have all connections from DVI to HDMI, SCART, S-Video, etc, but I would like to know if there is a way to get the DVI (digital HD) to Component (Analogue HD)? Basically, I want to

  • How do I reset HP Mini 110-1006TU BIOS password

    BIOS password for HP Mini 110-1006TU PC can no longer be remembered. How can I reset the BIOS password? Have tried removing BIOS battery but to no avail. Thank you!