How to save imej without background

How to save imej without background in Ai CS5, like in Photoshop psd. I need only the object without the base background. Without doing CLIPPING MASK.
I know there is a method but didn't remember.

I don't know anything about iMovie but I'm guessing it requires files to be a certain way, like maybe an Alpha Channel is required or s specific format. I'd look into their documentation. See if thry have a forum somewhere.

Similar Messages

  • When i close firefox.how to save firefox.without losing any data,and when i restart.the tabs come back.how

    how to save firefox,without losing data.that means when i am closing firefox its not asking to svae or not

    In the Tools menu select Options to open the options dialog. Select the General panel and change the setting "When Firefox starts" to "Show my windows and tabs from last time".

  • How to save status bar background color in local settings(Windows Phone 8.1)

    I have given the user the freedom to change background colour and save it in local settings. But I am confused on how to save the status bar colour settings because I want to give the user the freedom to choose from 4-5 colours where background of status bar
    can be changed.
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    // get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    // set the status bar color
    var statusBar = StatusBar.GetForCurrentView(); // Exception Line
    statusBar.BackgroundColor = color;
    }This is what was suggested to me. Initially the app runs and saves the settings.But when the app is closed and restarted again it crashes.

    Hi shriyansh,
    Where did you call the method SaveStatusBarColor() and LoadStatusBarColor()?
    I have called your SaveStatusBarColor() in the OnNavigatedFrom method and called the LoadStatusBarColor() in the OnNavigatedTo method, it worked very well in my side.
    So I can not reproduce your issue.
    Here are my code and result, please try to check it:
    public class test
    public Color colors { get; set; }
    public sealed partial class MainPage : Page
    List<test> testdemo = new List<test>();
    public MainPage()
    this.InitializeComponent();
    testdemo.Add(new test() { colors = Colors.Red });
    testdemo.Add(new test() { colors = Colors.Green});
    testdemo.Add(new test() { colors = Colors.Gray});
    testdemo.Add(new test() { colors = Colors.Blue });
    this.NavigationCacheMode = NavigationCacheMode.Required;
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    //get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = color;
    statusBar.BackgroundOpacity = 1;
    protected override void OnNavigatedTo(NavigationEventArgs e)
    LoadStatusBarColor();
    protected override void OnNavigatedFrom(NavigationEventArgs e)
    SaveStatusBarColor();
    private void ChangeColorButton_Click(object sender, RoutedEventArgs e)
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = testdemo[Convert.ToInt32(Mytextbox.Text)].colors;
    statusBar.BackgroundOpacity = 1;
    The result:
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to save requisitions without using E-Recruiting

    Hello All,
    Is there a way, to save requisitions data without using the E-Recruiting Web pages?
    Is there a Function module or a Class or a BAdI that I can use?
    We want to use a Interface that will send a flat fille with a lot of data
    and then to handle it in the same way the SAVE button on E-Recruiting does...
    Any Suggestions?
    Best Regards,
    Eran
    SAVE THE DATE 01-01-2011 ****

    Hi Roman,
    The flat file will come from other systems .
    It will store Requisitions details and the program/interface will have to proccess these records and create or update the infotypes according to them...
    Someone told me that it would be a bad thing to use classes and pointed out that there are FM like RH_* that wiil do the same
    I tried to use FM 'RH_INSERT_INFTY'  just to see if any record was entered ,but nothing happened...
    HRP1000 didn't get the new record
    What did I do wrong? What is the right way? FM's or Classes?
    Best Regards,
    Eran
    DATA: X1000 LIKE P1000 OCCURS 1 WITH HEADER LINE.
    X1000-MANDT = SY-MANDT.
    X1000-PLVAR = '01'.
    X1000-OTYPE = 'NB'.
    X1000-INFTY = '1000'.
    X1000-ISTAT = '1'.
    X1000-BEGDA = sy-datum.
    X1000-ENDDA = '99991231'.
    X1000-LANGU = 'B'.
    X1000-SHORT = 'ERAN'.
    X1000-STEXT = 'ERAN TEST'.
    append x1000.
    * 1. Reset standard authorization
      CALL FUNCTION 'RH_AUTHORITY_CHECK_OFF'.
    * 2. Insert new row into Infotype 1000 for position with new name
    CALL FUNCTION 'RH_INSERT_INFTY'
      EXPORTING
    *   FCODE                     = 'INSE'
        VTASK                     = 'S'
    *   ORDER_FLG                 = 'X'
    *   COMMIT_FLG                = 'X'
    *   AUTHY                     = 'X'
    *   PPPAR_IMP                 =
    *   OLD_TABNR                 = ' '
    *   REPID                     = ' '
    *   FORM                      = ' '
    *   KEEP_LUPD                 =
    *   WORKF_ACTV                = 'X'
      TABLES
        INNNN                     = X1000
    *   ILFCODE                   =
    * EXCEPTIONS
    *   NO_AUTHORIZATION          = 1
    *   ERROR_DURING_INSERT       = 2
    *   REPID_FORM_INITIAL        = 3
    *   CORR_EXIT                 = 4
    *   BEGDA_GREATER_ENDDA       = 5
    *   OTHERS                    = 6
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    COMMIT WORK.
    * 3. Set standard authorization
    CALL FUNCTION 'RH_AUTHORITY_CHECK_ON' .
    SAVE THE DATE 01-01-2011 ****
    More convenient to use, More efficient search , Easier to find...

  • HOW TO SAVE FILES WITHOUT HAVING TO SEARCH FOR DESTINATION FOLDER AGAIN

    Hello maybe someone can help me on this one.
    I have a MacBookPro. And run loads of applications like Logic Pro, Photoshop, Peak, ProTools, etc.
    Everytime I save changes on a project or file i am working on i have to choose the destination folder. Is there a way to save settings so that the last folder chosen automatically comes up when i would like to save new changes i did? I mean now i have to search and choose the destination folder each and every time I want to save changes. Since I have loads of projects i am working on and since i have MANY folders and sub folders this is quite irritating since it slows down my work flow.
    I used to use a Powerbook G4 (os x 10.4.11) and I never had that problem. Each and every time I saved changes the machine automatically chose the folder i previously used to save. I never had to save settings for none of the MANY applications I use. This was something that went automatically: My powerbook automatically chose the last folder that i used to save files into.
    I'd like to have my MacBookPro do the same.
    Anyone knows about this issue?
    Thanks in advance.
    ps: i tried to explain best as i could in English (i am Dutch so excuse the (spelling) mistakes i might have made)

    I put an alias in some folders to go to commonly or frequently used locations so I could "Boomerang".
    Maybe take a look at the Default Folder utility.
    http://www.macupdate.com/info.php/id/7214/default-folder-x
    http://www.stclairsoft.com/DefaultFolderX/index.html

  • How to save recording without export?

    In Quicktime (using Lion), I used to start a new audio recording and it would record on the desktop.  I would then "save as" and just name the file.  Done.
    Now, using Mountain Lion, and the "save" option is gone.  I can only "export" which then proceeds to encode the file.  The encoding process takes a long time when before I didn't have to encode at all.  Is there a way around this?

    The original question was to STOP THE ENCODING PROCESS.  Can someone please answer the original question.
    It seems to me that your wounds are self-inflicted. If you don't want the file to be converted, then stop selecting the "Audio Only" format.
    As indicated below the "Format" pop-up, this selection exports your current Linear PCM audio file in a generic format compatible will all devices and media players—i.e., as an AAC audio file.
    On the other hand, if you wish to use the export option and save your audio recording in its original recorderd format, then use the defaulted "Movie" Format pop-up which refers to the MOV file container and is the generic QT file container that can be used to store audio, video, or any other compatible data format.
    If you feel more comfortable seeing the word "Save" in the "Export/Save" window, then instead of selecting the "Export" File menu option, select the "Close" option (or press the red encircled "X" in the QT X player window to open the "Save" window depicted above. It basically offeres the same options as the File "Export" option since Apple has essentially merged the "Save, Save As..., and Export" functions into a single workflow. (Like you, I don't really like this arrangement and that is why I continue to use QT 7 Pro for most QT player-based operations.)

  • How to save data without coming out of a session..

    Dear Expert..
    I have created a module pool and I am creating the absence record for employee based on the data provided on the selection screen . I have used the following module for this purpose.
    HR_EMPLOYEE_ENQUEUE , HR_INFOTYPE_OPERATION and HR_EMPLOYEE_DEQUEUE.
    The record is not getting saved till I come out of the session. I have used the statement Commit-work as well. I want the absence to be created with the message coming on the main screen where by it allows the user to create the absence again for some other employee. Currently they need to go out and come back again...
    Regards,
    Vidya..

    Hi,
    After the FM HR_INFOTYPE_OPERATION 
    write
    wait up to <n> seconds.
    Regards,
    Srini.

  • How to save from .ai to .png without a gap

    I created a repeating pattern. I made the artboard the exact size of the art. I zoomed in and there are no gaps around the edge. I saved it for web and devices png8 and the top has a gap with transparency showing through. When I use it as a web page background, there is a white stripe showing. I've tried twice to resave it but get the same gap.
    I'm trying to upload the two images using the camera icon but nothing happens after I select the image and click the "insert image" button. Again, I've tried twice without a different result. Please advise.
    Thank you.
    Please help.
    Kathleen

    Having a hard time with google docs, sigh. Thank you for all your help.
    From: "Kurt Gold" <[email protected]>
    To: "kathpoole" <[email protected]>
    Sent: Tuesday, May 28, 2013 1:29:21 PM
    Subject: How to save from .ai to .png without a gap
         Re: How to save from .ai to .png without a gap
    created by Kurt Gold in Illustrator - View the full discussion
    Adobe Illustrator files are not tolerated as attachments in that Adobe Illustrator forum (great, isn't it?).
    You may take a service like Google Docs to provide them.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5359346#5359346
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5359346#5359346
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5359346#5359346. In the Actions box on the right, click the Stop Email Notifications link .
    Start a new discussion in Illustrator by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746 .

  • How to save work seperate from background

    Hi,
    I want to know how to save the image that I created separately from the background so I can use the image as an icon or something else. I am new in web design, when I tried so hard to make something in photoshop I ended up the bloody back ground is 10 times bigger than my work (image) and it distorts the web layout.
    Bottom line, I need to know how to save something as an icon or maybe object without the dam white background.
    Craig

    <a href="http://www.pixentral.com/show.php?picture=11dSoqXtoYz8noH9N3wcEqawLKHfs1" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/11dSoqXtoYz8noH9N3wcEqawLKHfs1_thumb.png" border="0" />
    <br />
    <br />couldnt post psd file. The site doesnt seem working properly.
    <br />
    <br />Now you can simulate my steps by create a new layer/background by clicking new and chose default photoshop size then pick up custom shape tool, chose a shape to draw with, envelop is the case. Keep along with your instruction.
    <br />
    <br />Tell me do you have any problem saving it as the way we want ?

  • How to save transparent background images to have transparent background thumbnails with Photoshop 2014?

    In old versions of Photoshop there was a feature that made thumbnail images have a transparent background.  I'm a CC member using Photoshop 2014 on a MacBook Pro running OS X 10.9.4 and every thumbnail of a transparent background image I've created in Photoshop 2014 appears on my desktop with a solid white box background that has a thin black outlined box inside of it.  How do I save the transparent background images I've created in Photoshop 2014 so they will appear on my desktop as thumbnails with a transparent background?   I'd like to continue to be able to replace the default background-less folder icon that that appears on files with transparent background thumbnails to customize my files as I use to do with older versions of Photoshop.

    If your layered document has a Photoshop background layer it visibility need to be set off when saving a PNG or Gif file for Photoshop background layers do not support transparency.
    Thumbnail may be a bit more complicated than you think. I do not use Lightroom, and only occasionally use the bridge.  I believe Lightroom and Bridge  keep thumbnails they develop for image files  in their library databases and caches.  Other programs do not have acces to  these.  RAW Files and Image files have Jpeg previews stored in then.  I believe most application use these previews jpeg to create thumbnails.  Jpeg format does not support transparency.
    Icon on the desktop are not always thumbnails some are embedded icons in application modules other are icon in dll these may well have transparency. However image file on the desktop have generated thumbnails.  However you can create a shortcut for an image png file and create a icon with a transparent background for the png file and change the shortcut's icon for the png file to the transparent ico file you created for it.
    Also many Photoshop release ago an Adobe module created Thumbnails for image files in Windows File explorer and most likely system file dialog. Adobe stopped supporting that stating Microsoft changes how windows works.
    Today I use FastPictureViewer Codec Package to generate image thumbnails for image files including RAW and PSD files in File Explorer and system file dialogs.
    I don't use a Mac don't know what available for your Mac.

  • How to save Pdf form localy without internet

    How to save Pdf form localy without internet?
    I thought in the beginning about advanced user rights and pure saving them on adobe reader but i saw legal notes about 500 user who can legaly save it localy and answer to me (bu they can`t answer to my client who paid me for doing this form).
    Other thing is to do Air Application which would collect data from Pdf Form and save it (localy without internet) to use it later.
    I thought about that second possibility but i can`t find any clue to do it myself.
    Any help will be appreciated...

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • Help:plzz tell me how to save template form without losing any attached lib

    Hell forum!
    plzz try to help me on how to save the template form to my desktop without losing any attached lib's to customize that form

    Hi,
    Copy all the library files from $AU_TOP/Resources and template.fmb and appstand.fmb from $AU_TOP/forms/US to same local directory.
    Set FORM60_PATH in the REGEDIT as C:\orant\TOOLS\OPEN60\PLSQLLIB;D:\Local Directory. Local Directory means where you copied lib files and template form.
    Open template in form6i and rename the template form. Do the customizations what ever you want.
    Regards,
    Venkanna.

  • How to save your website without..

    I was wondering how to save your data to be always available, without using Muse. I mean after the trail period or month subscription ends, that you still can open or upload it without Muse. Like that you have an backup.

    As RoyaltyTech pointed out - yes, you can File>ExportHTML to have the HTML, CSS and image files all brought together in one place and upload them without an subscription or after the trial period is over.
    However, as a precauction, as you mentioned "without using Muse" and "still can open...it without Muse" I thought it would be prudent to point out that WITHOUT the orginal artwork / .muse file and the Muse software, you will not be able to open and edit your site later on without a current subscription.

  • How to save PDF form without empty fields ?

    Hello,
    I try to find how to save PDF forms after a school registration but without empty fields because i have lots of relation in my Form but i haven't.
    Is it possible and how ?
    Thanks

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • I am in hurry,how to save  the xml file without attributes

    i have the following xml file with attributes,
    <?xml version="1.0"?>
    <Ve2.Configuration>
         <Ve2.Displaymanager>
              <type type="combobox">eVeDisplayStandardType</type>
              <setCounter type="bool">false</setCounter>
              <frames type="textfield">20</frames>
         </Ve2.Displaymanager>
    </Ve2.Configuration>
    but i want to save it without attributes, that means, my saved xml file look like this.:
    <?xml version="1.0"?>
    <Ve2.Configuration>
         <Ve2.Displaymanager>
              <type >eVeDisplayStandardType</type>
              <setCounter >false</setCounter>
              <frames20</frames>
         </Ve2.Displaymanager>
    </Ve2.Configuration>
    how can i do it with java.

    If you know the format of the XML file, then you can write a straight forward XSL file to transform it.
    Paul
    www.codetelligence.com

Maybe you are looking for

  • How to use earphones microphone (iMac late 2006)?

    Hey, On the late 2006 iMac, there are two jacks, One microphone and one speaker/earphones.. How can I use my Klipsch S4i's microphone with my iMac? As I can't use both the jacks at the same time, which is what I need :/ Is there something I could buy

  • Dunning Key - Customer / Vendor Analysis - SAP Library

    To add a comment, please log in or register on the top of this page and choose Reply. Please write your comment in English. You can also go back to the SAP help page.

  • InfoView not defaulting print settings from Crystal Reports XI

    I have a form/report created from Crystal Reports XI published to InfoView that has the print settings set for the manual tray when printed. When running the report in InfoView, it does not default to the manual tray when printing. I am publishing di

  • Add more locations to sync photos from

    Hi everyone I use iTunes on my PC (Win 7 OS) to sync music, files and photos to my iPad.  On my PC I have the default Pictures location for recent photos and use a separate hard drive for older photos - they are all in my library on the PC so I can v

  • Get the exact output that i was designed in report builder

    Hi, i have a report. In that report i made a gap between last field(amount,currency..) and the signature. pls look below link. http://imageshack.us/photo/my-images/217/unled2ve.png/ i run the report. im getting the output that the space got decreased