How Do I remove all File Info after completeing image?

After completing all work on a Photoshop Image - then saving as a jpeg - all the file info still remains (XMP).  How do I delete it?

I appreciate your response and your effort to try to help me.  This is all stuff I know nothing about, so please bear with me.  I clicked on a picture I am ready to post on Behance – and chose “Save For Web”.  There is no  option to “Remove Metadata”.   
There is a box entitled “Metadata:” – but choices are  “Copyright” – “Copyright and Contact Info” -  “All Except Camera Info” – “All”. 
Is there any other way I could check to remove all the info I see when I open “File Info”?
And, what does all that stuff in the Metadata box mean?  I would love to look it up for myself – but have no idea where to go to find info about it.
Please help and thank you.
Carol

Similar Messages

  • For turn in purpose how do i remove all my info from my phone

    for turn in purpose how do i remove all my info from my phone

    Since you posted your question on the iPhone forum, I'm assuming you have an iPhone.
    In that case, go to Settings...General...Reset, and select Erase all content and Settings.
    This will remove all of your content and restore the iphone to factory settings.
    I have done this myself before selling iphones.

  • How do I remove white jagged edges after making image transparent?

    How do I remove white jagged edges after making image transparent?  Is there a feature to help out with this?

    It's a file format limitation. GIF supports 1 bit of transparency.  That is 2^1 (which equals 2 total) levels of transparency.  This equates to either NO transparency at all, or specifying 1 single color of the 256 total possible values to being fully transparent.
    This will leave a very ugly fringe around the edge no matter what; it will only not be visible in color that match or are close to the fringe color; and then, that's a perception issue.
    Try creating an alpha channel and saving the image as a PNG.  That supports 8 bits of transparency, which equals 2^8 or 256 total different levels of transparency.  This will let your image have very smooth edges with no jagged transitions.

  • How do you remove all personal info from a notebook when getting it ready for the recycle program?

    I havae purchased a new notebook and am getting my old MacBook Pro ready to submit to the recycle program at Apple. The list of "to-do's" asks that you remove all your personal info and take the notebook back to it's original settings. Does ayone have any advise on how to do this?

    Boot from the original OS installer disk and do an Erase & Install.
    When the Mac reboots into Mac Setup Assistant you quit and shut it down.
    It's now a brand new Mac... just like when you got it.
    http://www.ehow.com/how_5852122_restore-imac-factory-settings.html
    http://www.macworld.com/article/158670/2011/03/prepare_sell_mac.html

  • HT5012 How do I remove all my info on my bookmark ?

    I've tried to remove items from my bookmarks  but I can't get any edit buttons  what I want is to remove all the bookmarks.

    Tap the "Edit" button (tap to enlarge image)

  • How can I remove all files or bad files on my Ipod 60gb

    Hi all!
    For unknown reasons , all my music library 7.5 Gb have been re-loaded on my Ipod 60Gb. It take a long time, but it doesn't erase the previous datas on my Ipod.
    I have around 7.5 Gb of my hard used with wrong datas !
    how can I erase and remove these wrong files ?
    Thanks for answers
    regards
    Chat_noir

    Restore it.
    See: How to restore the iPod to factory settings.

  • Selling MBP - how do I remove all personal info but leave apps?

    Sorry for the newbie question.
    I just bought a new MBP and sold my old one. I want to leave the installed apps on my old MBP (running 10.5.7) but make sure that all of my personal info, data, etc. is gone.
    I'm not familiar enough with accounts on a Mac (I've never gone through the process of deleting one) but will the following accomplish what I want to do?:
    1) Create a new user account for the new owner. Make that account an Administrator.
    2) Reboot and log in as the new user.
    3) Delete my current/old user account.
    4) Start Disk Utility and use the "Erase Free Space" function.
    So I guess my biggest question is in #3 above. When I delete my current/old user account, what does it wipe out and what does it leave behind?
    I know my other option is to wipe the whole thing out and install from the OS X CD's that came with the MBP and then re-instal all the software but I'd rather not have to go to that extreme if possible.

    The very best way to do this is to do a complete Erase and Install with the original system disc. You can do any additional erasing before that.
    What about the apps? Provide the seller with the original discs of those too, and let them reinstall them. Note that with some companies you will want to fill out a Transfer of License so that legal ownership and rights to future upgrade discounts are transferred to the new owner and don't remain with you, because that would screw the new owner if they tried to get an upgrade and they couldn't because it was still registered to you.
    I would not sell a machine that hasn't been completely wiped. I want all traces of me off that thing. And that includes any confusion as to the legal ownership of the apps you are selling with the machine.

  • How to make button to format a HardDrive or USB, How to remove all files from folder, and How to delete a process in listbox with a textbox?

    Hello!
    Here's the question with explaniation: How can i format the USB or Drive by clicking a button what's meant for it?
    and the second question what's also in vb.net: How can i remove all files from folder ? 
     Here's the Look of program: *
    Using the PC button, it will delete the free space of the PC, do you guys/girls know where it's location?

    Example Code:
    Imports System.Runtime.InteropServices
    Imports System.IO
    Public Class Form1
    Dim CBoxDrives As New ComboBox
    WithEvents FButton As New Button
    <DllImport("shell32.dll")> _
    Private Shared Function SHFormatDrive(ByVal hwnd As IntPtr, ByVal drive As UInteger, _
    ByVal fmtID As UInteger, ByVal options As UInteger) As ULong
    End Function
    Private Enum SHFormatFlags As Integer
    SHFMT_ID_DEFAULT = &HFFFF
    SHFMT_OPT_FULL = &H1
    SHFMT_OPT_SYSONLY = &H2
    SHFMT_ERROR = &HFFFFFFFF
    SHFMT_CANCEL = &HFFFFFFFE
    SHFMT_NOFORMAT = &HFFFFFFD
    SHFD_FORMAT_FULL = 0 ' full format
    SHFD_FORMAT_QUICK = 1 ' quick format
    End Enum
    Private Sub FButton_Click_1(sender As System.Object, e As System.EventArgs) Handles FButton.Click
    If CBoxDrives.Text = "" Then
    MsgBox("No Drive Selected")
    Exit Sub
    End If
    Dim Iresult As ULong = SHFormatDrive(CType(Me.Handle.ToInt32, IntPtr), CUInt(Asc(CBoxDrives.Text.Substring(0, 1)) - Asc("A")), CUInt(SHFormatFlags.SHFMT_ID_DEFAULT), 1)
    End Sub
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    Me.Size = New Size(200, 100)
    With FButton
    .Size = New Size(50, 25)
    .Location = New Point(5, 5)
    .Text = "Format"
    End With
    Me.Controls.Add(FButton)
    With CBoxDrives
    .Size = New Size(50, 25)
    .Location = New Point(75, 5)
    .DropDownStyle = ComboBoxStyle.DropDown
    End With
    Me.Controls.Add(CBoxDrives)
    Dim DrivesFound As Integer = 0
    Dim allDrives() As DriveInfo = DriveInfo.GetDrives()
    Dim d As DriveInfo
    For Each d In allDrives
    If ((d.DriveType = DriveType.Fixed) Or (d.DriveType = DriveType.Removable)) AndAlso Environment.GetEnvironmentVariable("SYSTEMROOT").StartsWith(d.Name) = False Then
    CBoxDrives.Items.Add(d.Name)
    DrivesFound += 1
    End If
    Next
    CBoxDrives.SelectedIndex = DrivesFound - 1
    End Sub
    End Class

  • How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    If you are unable to empty the trash, try holding the Option key while selecting Empty Trash.
    Otherwise, some steps in the following link may help you.
    http://support.apple.com/kb/ht1526

  • File Dialog - How to remove all files pattern in LV 8.x

    How to remove "all files" pattern in LV 8.x in the file dialog.
    Is it possible?
    Thanks
    Dany
    Dany Allard

    If it is a security issue, you will probably need to implement a custom dialog and actively filter for file types.  No matter what pattern you have showing, the user can type a pattern into the dialog and get anything they want.  In addition, file extension is not sufficient to determine file type.  You should probably check the file itself to ensure it is an HTML file and does not have any embedded nastiness.
    Fortunately, custom dialogs are easy to make.  Using the event structure, you can filter inputs as well, so that only HTML files will be accepted.  Good luck.  Let us know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • HT5557 how can you remove all books from books purchased file

    how can you remove all ibook from purchased file

    When I connected my iPhone, it automatically synced right away. I did click on the iPhone button and saw the contents of my iPhone including the Books. When I clicked that 'Books' button. But since the book in question was not on my iPhone, it did not show up in the list so I could not select it like you suggested. Therefore I could not sync that book to my iPhone. Thanks for the help though.
    The good news is I did manage to get the book on to my iPhone.
    When her book came out for preorder about a year or two ago, I looked for it in the iTunes store and preordered it. About a week after it came out, I found what was basically the same book for a dollar more. ($7.99 and $8.99) I figured there must be something additional (features) in the $8.99 book. So I bought it too. As far as I could tell though, they were exactly the same. So I decided to hide one of them so they would not both show up in my Library. Anyway, I went to my iTunes/iBooks account and managed the hidden books area. I unhid the Demi book and then it showed up in my iCloud to download on my iPhone. Now they are both on my computer so I need to figure out which one is the other one and hide it. So then I can delete it from my computer just have the one that is on my iPhone on both systems. But at least I found a way to get a copy on my iPhone.

  • If you sell an old Apple device to a stranger, how do you remove all your personal info from the device?

    If you sell your iPad 2 to a stranger, how do you remove all your personal info off of the device?  I removed all apps and photos, but I want to wipe it clean

    What to do before selling or giving away your iPhone, iPad, or iPod touch

  • How do i retrieve all my info, photos, numbers that were on my phone. it was all lost when i plugged my phone in to update it...it began to sync then next thing i know everything was gone after the date of 8/2011

    how do i retrieve all my info, photos, numbers, notes that were on my phone prior to my plugging it into my computer to update it?...it started to sync with itunes and when it was finished. everything from 8/2011 to current was gone. Please help!

    http://support.apple.com/kb/HT1766?viewlocale=en_US&locale=en_US
    Go to Settings>General>Reset and tap Erase All Content and Settings.  This will erase your phone.  Then you will go through the setup screens again as you did when your phone is new, and when given the option, select Restore from iCloud Backup.

  • How can I remove all photos and directories from iPhoto?

    How can I remove all photos and directories from iPhoto as if it was a brand new install?
    I am new to iPhoto and was unaware of how it works, honestly I still am a little confused as to when pics I am using 1/2 the time, some from iPhoto and some from MyPics.
    Anyhow, I am looking to remove all photos from iPhoto because during the migration of all my photos from PC to MAC, somehow my timeline became messed up and all my photos that have been logged my dates since 1998 are now all messed up.
    Although all my year folders are still in tact, IE 1998-2006, the subfolders and like pics are all intertwined somehow.
    And when I search iPhoto for a given year, photos from 2,4, 8 yrs back show up in 2006.
    Anyhow, I have selected and deleted all photos and folders within iPhoto, and then import the desired photos from MyPics, only to have the photos double up in the library. ( The old ones that should be deleted and the new imports)
    I simply don't get it, they fill the trash and disappear when it's emptied, then reappear when iPhoto re-opens!
    Can someone help????
    I have completely reworked all my photos so that they are all in the correct folders outside of iPhoto, and now I want to import those and only those pics with that file structure.
    IE Structure = YEAR > MONTH > DAY ( or if needed) > DAY/EVENT

    Do you want to remove the existing full sized image files also? If so then just drag the iPhoto Library folder from the Pictures folder to the Trash and empty it. But be warned you'll lose all of your image files.
    You are dragging the files to the iPhoto Trash bin and then using the iPhoto->Empty Trash menu, right?
    In copying your photos to myspace and then back the original capture date may not be retained and then either the created date or modified date will be used by iPhoto. If the files in the current library are the originals from your camera then those have the best chance of retaining the correct Captured Date. You can check that out by dragging the Originals folder from your iPhoto Library folder to the desktop and then trash what remains of the iPhoto Library folder. Then launch iPhoto and it will ask you to create an new library. Then import that Originals folder and it's subfolders by dragging it into iPhoto's open window. You'll keep the same rolls that was. The roll dates may change but you can check the captured date of the files by using the calendar in the Source pane.
    You won't be able to keep your folder structure within iPhoto. Each outside folder will result in a roll with the same title as the folder. You'll be able to create folders in the Source pane to put albums inside. You can create a smart album to include all photos in a certain date range, line one month.
    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.
    G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM, 80G HD,   Mac OS X (10.4.7)   22 LCD Display, 200G & 160G FW HDs, Canon S400, i850 & LIDE 50, Epson R200

  • How to see the wait events info. after excute a select query

    Hi
    How to see the wait events info. after execute a select query. Are there any parameter to set for this option?
    And also wanna see the follwing info. in trace file. For this what are the parameters I have to set right?
    SELECT * FROM emp, dept
    WHERE emp.deptno = dept.deptno;
    call   count      cpu    elapsed     disk    query current    rows
    Parse      1     0.16      0.29         3       13       0       0
    Execute    1     0.00      0.00         0        0       0       0
    Fetch      1     0.03      0.26         2        2       4      14
    Misses in library cache during parse: 1
    Parsing user id: (8) SCOTT Regards
    Arpitha

    $ sqlplus scott/tiger
    SQL*Plus: Release 10.2.0.2.0 - Production on Wed Apr 20 15:29:33 2011
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> SHOW PARAMETER dump
    NAME                                 TYPE        VALUE
    background_core_dump                 string      partial
    background_dump_dest                 string      /user/oracle/app/oracle/admin/
                                                     orclsb/bdump
    core_dump_dest                       string      /user/oracle/app/oracle/admin/
                                                     orclsb/cdump
    max_dump_file_size                   string      UNLIMITED
    shadow_core_dump                     string      partial
    user_dump_dest                       string      /user/oracle/app/oracle/admin/
                                                     orclsb/udump
    SQL> ALTER SESSION SET EVENTS='10046 trace name context forever, level 12';
    Session altered.
    SQL> SELECT * FROM emp WHERE deptno=20;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-80        800
            20
          7566 JONES      MANAGER         7839 02-APR-81       2975
            20
          7788 SCOTT      ANALYST         7566 19-APR-87       3000
            20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7876 ADAMS      CLERK           7788 23-MAY-87       1100
            20
          7902 FORD       ANALYST         7566 03-DEC-81       3000
            20Now
    $ pwd
    /user/oracle/app/oracle/admin/orclsb/udump
    $ ls -ltr|tail -5
    -rw-r-----   1 oracle   oinstall     622 Apr 20 11:35 orclsb_ora_949.trc
    -rw-r-----   1 oracle   oinstall     651 Apr 20 11:35 orclsb_ora_976.trc
    -rw-r-----   1 oracle   oinstall    1982 Apr 20 11:35 orclsb_ora_977.trc
    -rw-r-----   1 oracle   oinstall    1443 Apr 20 15:29 orclsb_ora_1251.trc
    -rw-r-----   1 oracle   oinstall  279719 Apr 20 15:30 orclsb_ora_1255.trc
    $ tkprof  orclsb_ora_1255.trc  orclsb_ora_1255.txt
    TKPROF: Release 10.2.0.2.0 - Production on Wed Apr 20 15:32:17 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    $ ls -ltr|tail -5
    -rw-r-----   1 oracle   oinstall     651 Apr 20 11:35 orclsb_ora_976.trc
    -rw-r-----   1 oracle   oinstall    1982 Apr 20 11:35 orclsb_ora_977.trc
    -rw-r-----   1 oracle   oinstall    1443 Apr 20 15:29 orclsb_ora_1251.trc
    -rw-r-----   1 oracle   oinstall  279719 Apr 20 15:30 orclsb_ora_1255.trc
    -rw-r--r--   1 oracle   oinstall   26872 Apr 20 15:32 orclsb_ora_1255.txtThis orclsb_ora_1255.txt contains the required information.

Maybe you are looking for

  • New to Oracle 10g

    Hello, I have previously been working with Toad on Oracle 8i, now I have installed Oragle 10g and I am hoping to learn the built-in oracle tools. But it seems I can't get a good grip on how they work. I'm trying to find a tool where I can browse my t

  • File TO File-Using XSLT mapping (for Beginners) --- Error in XSLT

    Hi, I am following this wiki (TO File-Using XSLT mapping (for Beginners)) https://wiki.sdn.sap.com/wiki/display/XI/FileTOFile-UsingXSLTmapping%28forBeginners%29 When creating  Xslt from the MapForce, when I click on the XSLT Tab I am getting the foll

  • Blank photos in screen saver

    All, I've been battling this problem for several versions of Mac OS X, Aperture and iPhoto. No matter which screen saver I use, if I display photos from my Aperture or iPhoto library, many of the pictures do not display. I see blank spaces where ther

  • Unlocking cores on 785GM-P45

    i'm trying to unlock 2 different Phenom II X2 560 BE on 2 different 785GM-P45 boards but am running into trouble.  im following the standard guide (https://forum-en.msi.com/index.php?topic=132314.0) but when i select cpu core control, i only see the

  • Resize macbook air font

    i usually use macbook pro and the font is just ok or a little small for my age of 45, i recently baught a macbook air 11. and the font is way too small for me and I dont want my child hurt their eyes sight with that small font size. it's not only in