How to save images as png or jpg?

Hi!
I just made a picture in the new photoshop cs6 beta and I want to save it in the png or jpg file-format, but there isn`t any possibility I found to save it. In tha Save As-Dialog there are just seven possibilities to save. Without png and jpg.
Thanks.
Screenshot:
Ps: I`ll like to save it in the icon (*.ico) format. Is that possible?

You're confusing the total number of bits (8 bits of RGB+Transparency = 32 bits, a misleading number), with the bits per channel (32 bit floating point, which makes RGB+T = 128 bits total).
32 bit PNG is a nomenclature that needs to go away - the number could mean 1 channel at 32 bits/channel, 2 channels of 16 bits each, or 4 channels of 8 bits each. (or more if PNG supported more bit depths)
In Photoshop, you're using bits per channel. You want 8 bits per channel, not 32.

Similar Messages

  • How to save image files into SQL Server?

    Hello, All:
    Does anyone know how to save image files into SQL Server? Does the file type have to be changed first?? Please help me! Thank you!

    You need a BLOB field (usually)... Then you can check this tutorial out:
    http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/exercises/BLOBPut/
    There are other exercises on that site, including one on reading the images back.

  • How to save image catch from USB camera to database ?

    Hi guys.
    I needed help on IMAQdx tools. But i dont know how to save image that catch from USB camera to database.

    So you can acquire the image OK?
    And you want to save it to a SQL database?
    See here:
    http://zone.ni.com/devzone/cda/epd/p/id/5210

  • E61i -- HOW TO SAVE IMAGES FROM WEBSITE WHILE BROW...

    ANYBODY KNOWS HOW TO SAVE IMAGES FROM WEBSITE WHILE BROWSING IN E61i ???
    ABDULLAH SHAHID SHEIKH
    IMANGROUP, IMAN ROAD, NOORPUR, ALI BLOCK, MUSLIM TOWN, FAISALABAD, PAKISTAN.
    TEL. 0092418782792-93
    CELL. 00923008651424

    which version should i use ,, i mean suitable for my E61i,,, the opera mini or the opera mobile????
    is opera mini can save the images as well???
    25-Aug-200702:43 PM
    iantaylor27 wrote:
    Hi
    If you use opera mobile, it aloows saving of images to memory card etc
    www.opera.com
    ABDULLAH SHAHID SHEIKH
    IMANGROUP, IMAN ROAD, NOORPUR, ALI BLOCK, MUSLIM TOWN, FAISALABAD, PAKISTAN.
    TEL. 0092418782792-93
    CELL. 00923008651424

  • How to save 4 artboards as 1 JPG image in Adobe Illustrator?

    I am doing an online class for fundamentals of design.
    I had to create 4 different designs, so I did this by doing them on 4 different artboards.
    I need to save my work for "web and devices..." as a JPG image in Adobe Illustrator (this i can do). But I want to save this assignment as 1 JPG image with all four artboards showing on one image.
    Can anyone tell me how to do this step by step.
    Thanks so much!!!
    Oh I am using Adobe Illustrator CS5.1

    Make a new artboard by selecting the Artboard tool and shift-click where you want it to start, then drag it out to cover all four of the images.

  • When I right click "save image as" on a JPG file, I get no response at all. How can I fix this?

    I am running Firefox 34.0 on Linux (Fedora 20, KDE desktop). I checked the Mozilla download site and it says I have the latest version. When I right click on a JPEG file to save it, I get the "save image as" option, but when I select it, nothing happens. The file is not downloading. I google searched for fixes and tried all of the following, per the Mozilla support documents, all with no change in response:
    - Changing the download folder
    - Reseting the relevant preferences in the about.config folder
    - clearing the download history
    - Running Firefox in Safe Mode
    Additionally, I verified under preferences that jpeg image is set to "always ask".
    All other references to this problem seem to refer to problematic plugins, but the safe mode check shows that is not my issue. Any idea what the issue could be and how I can fix it?

    As previously stated, when I run with all of the addons disabled, the problem still exists. I just tried this again and verified it again. Per your suggestion, I created a new profile and found that the save image as command worked. Do you have any idea what part of the profile is corrupted and causing the problem? I'd like to localize the problem so I can save as much of my old profile as possible, and not have to start over rebuilding all of my settings.

  • Suddenly my pc wants to save images as .png but I want it to save images as .jpg What do I do?

    Any help anyone can give?

    HI
    just change the extension of the file to .png to .jpg ...
    it would surelly helps!
    **Clicking on the Kudos! white star is a nice way to say thank you on any post that helped you or resolved the problem.**
    **Selecting "Accept as Solution" for a reply that solves your issue helps others who are searching the web for an answer**
    **Clicking on the Kudos! white star is a nice way to say thank you on any post that helped you or resolved the problem.**
    **Selecting "Accept as Solution" for a reply that solves your issue helps others who are searching the web for an answer**

  • How to save Image from binding FlipView?

    I bind 4 images in my FlipView, how save an binding Image to Picture Library;
    <FlipView Name="display1"  ItemsSource="{Binding}" Foreground="#FFE6D52E" HorizontalAlignment="Center" VerticalAlignment="Center           
                <FlipView.ItemTemplate>
                    <DataTemplate>                  
                                <Image x:Name="image" Source="{Binding  Path=Image}" Stretch="UniformToFill"/>                
                    </DataTemplate>
                </FlipView.ItemTemplate>
            </FlipView>
    private void SaveImage_Click(object sender, RoutedEventArgs e)
                  var img = display1.SelectedItem as WriteableBitmap;
                           StorageFolder appfolder = await   KnownFolders.PicturesLibrary.CreateFolderAsync("myimage",          
    CreationCollisionOption.OpenIfExists);
            StorageFile myFile = await appfolder.CreateFolderAsync("imge1.jpg", CreationCollisionOption.ReplaceExisting);    
            img.Invalidate();
            using(Stream strem = await myFile.OpenStreamForWriteAsync())
                img.Savejpeg(strem, img.PixelWidth, img.PixelHeight, 0, 100);
    //for me it is  hard to save binding files,I cant save any image

    Hi Icce cage,
    Per my understanding, you bind the path of image to Image control, so you get image path string from display1.SelectItem property. Try finding Image from this path in installation folder and then copy it to Picture library. Please try the following code
    snippet.
    Custom class to hold the image object.
    public class CustomClass
    public string ImagePath { get; set; }
    public string ImageName { get; set; }
    Initial image sources.
    private void Page_Loaded(object sender, RoutedEventArgs e)
    images = new System.Collections.ObjectModel.ObservableCollection<CustomClass>();
    images.Add(new CustomClass() { ImagePath = "/Images/1.png", ImageName = "1.png" });
    images.Add(new CustomClass() { ImagePath = "/Images/2.png", ImageName = "2.png" });
    images.Add(new CustomClass() { ImagePath = "/Images/3.png", ImageName = "3.png" });
    images.Add(new CustomClass() { ImagePath = "/Images/4.png", ImageName = "4.png" });
    images.Add(new CustomClass() { ImagePath = "/Images/5.png", ImageName = "5.png" });
    display1.ItemsSource = images;
    XAML.
    <FlipView RightTapped="display1_RightTapped" Name="display1" Foreground="#FFE6D52E" HorizontalAlignment="Center" VerticalAlignment="Center" >
    <FlipView.ItemTemplate>
    <DataTemplate>
    <Image x:Name="image" Source="{Binding Path=ImagePath}" Stretch="UniformToFill"/>
    </DataTemplate>
    </FlipView.ItemTemplate>
    </FlipView>
    Save image to picture library.
    private async void display1_RightTapped(object sender, RightTappedRoutedEventArgs e)
    CustomClass data = display1.SelectedItem as CustomClass;
    if (data!=null)
    var installation = Windows.ApplicationModel.Package.Current.InstalledLocation;
    var imagesfolder =await installation.GetFolderAsync("Images");
    var file = await imagesfolder.GetFileAsync(data.ImageName);
    await file.CopyAsync(KnownFolders.PicturesLibrary);
    Regards,
    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 stage as png interactively?

    Hi,
    Does anybody know how to save/export the stage as an image like in this example?
    http://ciruelo.jp/js/edge/tde.html
    Any help would be appreciated, thanks so much!

    You're confusing the total number of bits (8 bits of RGB+Transparency = 32 bits, a misleading number), with the bits per channel (32 bit floating point, which makes RGB+T = 128 bits total).
    32 bit PNG is a nomenclature that needs to go away - the number could mean 1 channel at 32 bits/channel, 2 channels of 16 bits each, or 4 channels of 8 bits each. (or more if PNG supported more bit depths)
    In Photoshop, you're using bits per channel. You want 8 bits per channel, not 32.

  • How to Save image in a text to my photos

    How do I save the photo in a text message to my iPad air photos?

    Tap the image in Message. (If you touch too long it brings up the: Copy; Other... menu instead)
    This blows the image up to full screen.
    Touch the image again to get menu options.
    In the top right corner, tap the box with the up arrow.  One choice is Save Image.  Touch it to save to your camera roll.
    In the top left corner, the three-line menu shows you all the photos in the message string, and some metadata like image size and camera title/image number.
    This is in IOS 7.1.1 on an iPad, and should work on iPhone and Touch also.

  • How to save image in database

    hi ,
    I am developing a application. i want to upload image with person's details and save it to database. How to do this? I hv got tutorials for uploading image but want to know how to save it to database table along with person's details.
    Thanks in advance.
    Regards
    Rajaram

    1.Go to transaction SE78.
    2.Select tree menu: Form Graphics -> Stroed on Document Server -> Graphics General Graphics -> BMAP Bitmap Images
    3.Select <IMPORT> to import bitmap image file to SAP. System will popup screen for input file information and target name.
    4.Select <Tick> After you already input data. System will upload image and return message to tell you success or fail.
    5.You can preview the picture that uploaded by select<print prv>
    If u want to store the images and retrive it from the server corresponding to the person id then just save the image by person id and code it as per the requirement.
    U can save ur images using se78 and also u can c it using TCODE AL11.By navigating thru the exact path u can get the images.

  • How to save image to local machine

    how to save my drawing (image or movieclips) to my local sytem without any server side script . i m using player 10. Please share some example

    I don't think that will bwe possible
    As that will be a hack in terms of an internet user.
    However usual solution to this is save your file at server and give user a bitton or some interface to download it

  • How to "Save Image" directly instead of "Save Image As"?

    Is there anyway or option to directly save images instead of having to click "save image as" then go into the popup to save the image location? Thank you!

    Gingerbread Man made good suggestions.
    However you still must "save as" something even if "unnamed001". Windows requires a name and location for each file (whether an image or other file) saved. You can have the same file name in different directories (folders).
    You can copy and paste images without saving, in some applications.

  • How to save image from email to iPhoto

    trying to save image attachment from email to iPhoto

    What is the problem? What does not work?
    Either drag the attachment from the mail to the iPhoto con in the Dock, or ctrl-click the attachment and use the option "Export to iPhoto" from the pop-up menu (in Mail in MacOS X 10.10). Don't remember, if this worked in Mail in Mac OS X (10.5.8), as your signature is showing.

  • Problem with how FeuerFuchs saves images

    FeuerFuchs presently seems to work like this. You load a page displaying an image or images. You like one or more of them and you want to save them. Each time you tell FeuerFuchs to save an image, instead of copying that image from wherever it's stored in order to display it on your screen to the folder you want to save it to, FeuerFuchs re-downloads that image.
    Can someone please tell me why FeuerFuchs is programmed to re-download images it's told to save instead of copying them from wherever they're stored in order to display it on the screen? It seems like that only serves to increase bandwidth usage.

    I've got that and it's great for if I want to save all the images from one or more tabs. But it only saves images from entire tabs instead of one out of several images in a tab and the treeview navigation is slower than using the shortcuts I use to jump from one folder to the next.

Maybe you are looking for