How to save .psb in .jpg

Hello, I'm need a help . so a creat a file .. in real size .. 140x800cm its with 2.72gb ( i didnt get to put the screen shot here ) so i had flattened the layers.. but i didnt get to save in jpg .. i need to print it as a adhesive... may somebody help me ?
currently using photoshop cs6 extended, os lion 10.8.2., i7 quad 2.4ghz , 8gb ram

Read up on the requirements for such stuff and how people are actually gonna use it. Nobody does (car) stickers at 300dpi. I really strongly suggest you read up on that stuff and that old resolution vs. pixel dimensions vs. physical dimensions... You have only made your life difficult by creating such a humungously large file for no apaprent need...
Mylenium

Similar Messages

  • Officejet 6110xi, How to save scan as .jpg?

    officejet 6110xi, How to save scan as .jpg?

    Hello jpg0, and welcome to the HP Forums, I hope you enjoy your experience!
    I see you are looking into your scan settings.  I would love to try and help you, but I do need a little information first. I am linking a few HP Support documents below that will show you how to find which operating system you are using. Also, if you're using Windows, please include whether your operating system is 32-bit or 64-bit. With this information we can provide you with accurate information.
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know what you find, and thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to save component to jpg without jframe

    the code shows 2 methods to save component to jpg,
    but if comment
    f.getContentPane().add(lb);neither saveJPG_1() nor saveJPG_2() works.
    can you explain why and how to work without jframe?
    thanks.
    public class Test1 {
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception {
              new Test1().run();
         private void run() throws IOException {
              JLabel lb = new JLabel("Test Text");
              lb.setOpaque(true);
              JFrame f = new JFrame();          
              f.getContentPane().add(lb);
              f.pack();
              saveJPG_1(lb, new File("test1.jpg"));
              saveJPG_2(lb, new File("test2.jpg"));
              f.dispose();
         private void saveJPG_1(Component c, File file) throws IOException {
              Dimension dim = c.getPreferredSize();
              Image im = c.createImage(dim.width,dim.height);     
              c.paint(im.getGraphics());          
              ImageIO.write((RenderedImage)im, "jpg", file);
         private void saveJPG_2(Component c, File file) throws IOException {
              Dimension dim = c.getPreferredSize();
              BufferedImage im = new BufferedImage(dim.width,dim.height,BufferedImage.TYPE_INT_RGB);                    
              c.paint(im.getGraphics());
              ImageIO.write(im, "jpg", file);
    }

    Lazy loading is common place among variety of
    systems.
    Java GUI runtime must be doing it because on my
    Linux/JDK 1.6(build 61), component c is null at:
    c.paint(....);
    when adding onto contentpane is commented out.Lazy loading means classes are loaded on demand and at the last moment possible. What makes you think that this allows for a variable to be null even after the component has been instantiated? And what does the Java "GUI runtime" have to do with it? It's the class loader that's responsible for this. It should be impossible for c to be null at that point in the code. You're using a beta JDK though right? Perhaps that's the culprit.
    the code shows 2 methods to save component to jpg,
    but if comment
    f.getContentPane().add(lb);neither saveJPG_1() nor saveJPG_2() works.
    can you explain why and how to work without jframe?
    thanks.
    public class Test1 {
          * @param args
          * @throws Exception
    public static void main(String[] args) throws
    s Exception {
              new Test1().run();
         private void run() throws IOException {
              JLabel lb = new JLabel("Test Text");
              lb.setOpaque(true);
              JFrame f = new JFrame();          
              f.getContentPane().add(lb);
              f.pack();
              saveJPG_1(lb, new File("test1.jpg"));
              saveJPG_2(lb, new File("test2.jpg"));
              f.dispose();
    private void saveJPG_1(Component c, File file)
    ) throws IOException {
              Dimension dim = c.getPreferredSize();
              Image im = c.createImage(dim.width,dim.height);     
              c.paint(im.getGraphics());          
              ImageIO.write((RenderedImage)im, "jpg", file);
    private void saveJPG_2(Component c, File file)
    ) throws IOException {
              Dimension dim = c.getPreferredSize();
    BufferedImage im = new
    ew
    BufferedImage(dim.width,dim.height,BufferedImage.TYPE_
    INT_RGB);                    
              c.paint(im.getGraphics());
              ImageIO.write(im, "jpg", file);
    Can you display a JPanel on the screen without help? No. At some level it has to go back to a heavyweight widget. In this case the JFrame is that widget, so without it or a supplement you can't create the graphics context to create an Image of what that JPanel would look like displayed.

  • How to save and retrieve jpg/gif format image in db2

    Here am facing problem to insert jpg/gif format image in my database. And at the same time i would like to know how to retrieve that and how to display that image in my html page. So please help me in this matter.

    In future JDBC questions should be posted into the JDBC Forum

  • How to save a new jpg image from the clipboard

    It seems like it should be simple but I can't find anywhere this has been documented.
    I have an image on the clipboard and simply want to save it as a new image.
    I've been using Image Events and I can get a file saved but it's always empty.
    Can someone please post some sample code to do this?

    I'm sure there's a more elegant way to script this, but here is a script I just wrote real quick that should at least give you a start to an alternate way of dealing with clipboard data without having to launch Preview...
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">--see if clipboard is a file
    set filePath to ""
    try
    set clipPath to the clipboard as «class furl»
    set filePath to clipPath as alias
    end try
    if filePath is not "" then
    set newFile to getFileName("copied")
    do shell script "cp " & quoted form of POSIX path of filePath & ¬
    space & quoted form of POSIX path of newFile
    return --end
    end if
    --see if clipboard is image data
    set jpegDATA to ""
    try
    set jpegDATA to the clipboard as JPEG picture
    end try
    if jpegDATA is not "" then
    set newFile to getFileName("new")
    set theFile to open for access newFile with write permission
    write jpegDATA to theFile
    close access theFile
    return --end
    end if
    beep 1
    display dialog ¬
    "No file or image data found on the clipboard." with icon ¬
    note buttons {"Whatever"} default button 1
    on getFileName(type)
    choose file name with prompt ¬
    "Select a name and location for the " & type & ¬
    " jpeg:" default location (path to desktop) default name ¬
    type & ".jpg"
    end getFileName</pre>
    Hope this helps...

  • How to save a large jpg from a small eps

    I created a logo in ai cs5 that is the size of 7w x 4h. But I wanted to be able to create a larger jpg. Since the vector format allows for the image to be scaled, is there a way to scale it larger, then create a jpg at this larger size? Or, is there a way to scale it to 500% and then save it as a new file with this enlarged size being 100%? I'm fairly new to AI, but have used PS for quite some time, so please be gentle.
    Thanks,
    Don

    Jacob,
    Thanks. That helped for the large jpg. I appreciate it.
    Don

  • How to save graph to jpg file ?could you give me a demo vi of lv6.1 ?thanks

    thanks

    You could use an "invoke node" for the graph with method "get image". See attached LV6.1 code.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    SaveJPG61vi.vi ‏29 KB

  • I can´t save images in .jpg with "Camera Raw" software from my Elements 6.0

    I have Photoshop Elements 6.0, I bought it last year and untill now, it´s OK. Now I´m beginning working with .RAW files, but I can´t save them as .JPG after I modified them with the "camera Raw" software. I can only save pictures in .DNG. ¿Could someone please tell me how to save it as .JPG?
    I consider this is a basical function wich, for example, Photoshop CS3 does.
    Bye.

    Thank you very much for your answers.
    Daniel.
    2009/6/3 Barbara Brundage <[email protected]>
    The Save button in the raw converter is the DNG converter. To save in any
    standard image format, you must open the image in the editor, then save it
    there.
    >

  • How to save info in a meta-data of a jpg file?

    hi, i need to know how to save info in a meta-data of a jpg file:
    this is my code (doesn't work):
    i get an exception,
    javax.imageio.metadata.IIOInvalidTreeException: JPEGvariety and markerSequence nodes must be present
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeNativeTree(JPEGMetadata.java:1088)
    at com.sun.imageio.plugins.jpeg.JPEGMetadata.mergeTree(JPEGMetadata.java:1061)
    at playaround.IIOMetaDataWriter.run(IIOMetaDataWriter.java:59)
    at playaround.Main.main(Main.java:14)
    package playaround;
    import java.io.*;
    import java.util.Iterator;
    import java.util.Locale;
    import javax.imageio.*;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.metadata.IIOMetadataNode;
    import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
    import javax.imageio.stream.*;
    import org.w3c.dom.*;
    public class IIOMetaDataWriter {
    public static void run(String[] args) throws IOException{
    try {
    File f = new File("C:/images.jpg");
    ImageInputStream ios = ImageIO.createImageInputStream(f);
    Iterator readers = ImageIO.getImageReaders(ios);
    ImageReader reader = (ImageReader) readers.next();
    reader.setInput(ImageIO.createImageInputStream(f));
    ImageWriter writer = ImageIO.getImageWriter(reader);
    writer.setOutput(ImageIO.createImageOutputStream(f));
    JPEGImageWriteParam param = new JPEGImageWriteParam(Locale.getDefault());
    IIOMetadata metaData = writer.getDefaultStreamMetadata(param);
    String MetadataFormatName = metaData.getNativeMetadataFormatName();
    IIOMetadataNode root = (IIOMetadataNode)metaData.getAsTree(MetadataFormatName);
    IIOMetadataNode markerSequence = getChildNode(root, "markerSequence");
    if (markerSequence == null) {
    markerSequence = new IIOMetadataNode("JPEGvariety");
    root.appendChild(markerSequence);
    IIOMetadataNode jv = getChildNode(root, "JPEGvariety");
    if (jv == null) {
    jv = new IIOMetadataNode("JPEGvariety");
    root.appendChild(jv);
    IIOMetadataNode child = getChildNode(jv, "myNode");
    if (child == null) {
    child = new IIOMetadataNode("myNode");
    jv.appendChild(child);
    child.setAttribute("myAttName", "myAttValue");
    metaData.mergeTree(MetadataFormatName, root);
    catch (Throwable t){
    t.printStackTrace();
    protected static IIOMetadataNode getChildNode(Node n, String name) {
    NodeList nodes = n.getChildNodes();
    for (int i = 0; i < nodes.getLength(); i++) {
    Node child = nodes.item(i);
    if (name.equals(child.getNodeName())) {
    return (IIOMetadataNode)child;
    return null;
    static void displayMetadata(Node node, int level) {
    indent(level); // emit open tag
    System.out.print("<" + node.getNodeName());
    NamedNodeMap map = node.getAttributes();
    if (map != null) { // print attribute values
    int length = map.getLength();
    for (int i = 0; i < length; i++) {
    Node attr = map.item(i);
    System.out.print(" " + attr.getNodeName() +
    "=\"" + attr.getNodeValue() + "\"");
    Node child = node.getFirstChild();
    if (child != null) {
    System.out.println(">"); // close current tag
    while (child != null) { // emit child tags recursively
    displayMetadata(child, level + 1);
    child = child.getNextSibling();
    indent(level); // emit close tag
    System.out.println("</" + node.getNodeName() + ">");
    } else {
    System.out.println("/>");
    static void indent(int level) {
    for (int i = 0; i < level; i++) {
    System.out.print(" ");
    }

    Hi,
    Yes, you need store data to table, and fetch it when page is opened.
    Simple way is create table with few columns and e.g. with CLOB column and then create form based on that table.
    Then modify item types as you like, e.g. use HTML editor for CLOB column
    Regards,
    Jari

  • How to save a JPG in 256 colors?

    I'm using Photoshop CS2.
    1. How to save a JPG in 256 colors?
    2. Is there a way to see an image properties?
    -- I want to know if that image is in 256 color or not...

    Mary Jo, since you are a newcomer, you may not yet understand that in any given Adobe forum, there are a whole bunch of conversations going on at the same time. Each one of these is about a certain "topic", described in the title and opening post. The discussion sometimes stays right on point, and sometimes veers off a bit, and there are often quick side-issues branching off from the main topic, but still related. Within limits, people here try to keep the discussion on a single general topic. For example, in this topic, the initial issue is whether there is a way, in Photoshop, to limit the number of colors in a JPEG image to 256; there were discussions about whether this could be done or not, and alternative programs that may be able to accomplish this, and a comparison of the file sizes for 256 bit images in different file types.
    Your question, however, is not a logical outgrowth of the discussion. It's a perfectly good question, but it deserves its own new discussion topic. It's like a bunch of people have been sitting around a table discussing the merits of Canon vs. Nikon SLRs, and someone sits down at the table and, instead of joining the conversation, asks a completely unrelated question about point-and-shoot cameras, or camcorders.
    It's off-topic here, and you should start a new topic. Make the title descriptive, such as "Why does a 8 megapixel image result in a 3 megabyte file on my computer?" (assuming that's what you want to ask -- just "M" doesn't tell me whether you are talking about MP or MB). In the initial post, provide a more detailed description of what you want to know. Tell us what camera and Photoshop version you are using, and how you encountered the issue. People will see that a new topic raises an issue they know something about and you will get a response -- probably a good answer, if you keep in the conversation.
    [Edit: Trez hit "post" before I did. Trez-- I think she is using Photoshop, not Elements; she did say CS2.]

  • How do I save a photoshop jpg as a "PictureViewer" jpg document?

    How do I save a photoshop jpg image as a universal "PictureViewer" jpg document?

    Just did some tests. And I am starting to understand a few things.
    I was using Photoshop 6 on my old apple quad. Yes, I know, 12 year old stuff. I have just upgraded to Adobe CC application on my new mac.
    When saving an image from photo shop as a jpg, I did not see, and still do not see, the picture viewer icon I am used to seeing on a jpg image from my old mac. Photoshop 6 saved jpgs only as photoshop jpgs.
    I just ran some tests. Saved some logos and pictures as jpg’s from the new CC Photoshop. When I import them into my old mac, I see the Picture Viewer Icon. And when I click on any of these, it opens in Picture Viewer. Tells me you are correct. Photoshop is saving the jpg images as the universal Picture Viewer JPGs.
    I guess I was expecting to see a "save as Picture Viewer” option from the Photoshop "save as" menu. And when I did not see the picture viewer icon for the new saved jpg image, I assumed it was still saving this as a photoshop jpg.
    Thanks for prompting me to do some homework and test a few things out.
    I thought that the new photoshop should be able to save jpgs in the picture viewer realm, but had to run a few tests to see the actual result on an older computer for this to sink in and recognize the result.
    Thanks for your time and patience Silkrooster.
    Robbie

  • How to: Save jpg frames to swf animation.

    I create signatures for my friends to use in posts on forums
    at the end of their messages.
    Examples here:
    http://s12.invisionfree.com/venvenaevici
    Recently I decided to try animation, but saving in gif format
    isnt allowing me to save with as much detail as I would like and
    the backgrounds are comming out grainy and not smooth. After a
    weeks worth of trouble shooting I think my solution is to save the
    several .jpg files I have refined into a flash, but I dont know how
    to do that. Can anyone help?
    Also when it is saved I would like it to auto play and loop
    like this gif animation I have. If only I could get it to save as
    it looks on preview, or if I had proper training :/
    Animation Example:
    http://w3.the-kgb.com/venvenae/shalieeani.gif
    Background Example without the animation of above:
    http://w3.the-kgb.com/venvenae/shaliee.jpg
    The program I used to get the animation frames in the first
    place is called wow model viewer. Any assistance would be wonderful
    and much appreciated and I would be willing to do a signature for
    someone here that has helped me, if there is interst.
    I wasnt sure where to post this. Im sorry if its in the wrong
    place.

    Sorry I was not in Station!!!!!and hence the delay in replying
    Check this example for more details
    public WriteImageIW( String filename, String type ) {
    try {
    int width = 200, height = 200;
    int x0 = 20, y0 = 20, x1 = width-20, y1 = width-20;
    BufferedImage bi = new BufferedImage( width, height,
    BufferedImage.TYPE_INT_ARGB );
    Graphics2D ig2 = bi.createGraphics();
    GradientPaint paint =
    new GradientPaint( x0, y0, Color.white, x1, y1, Color.black );
    ig2.setPaint( paint );
    ig2.fillRect( 0, 0, width-1, height-1 );
    BasicStroke stroke = new BasicStroke( 10, BasicStroke.CAP_ROUND,
    BasicStroke.JOIN_ROUND );
    ig2.setPaint( Color.lightGray );
    ig2.setStroke( stroke );
    ig2.draw( new Ellipse2D.Double( x0, y0, x1-x0, y1-y0 ) );
    Font font = new Font( "TimesRoman", Font.BOLD, 20 );
    ig2.setFont( font );
    String message = "Java2D!";
    FontMetrics fontMetrics = ig2.getFontMetrics();
    int stringWidth = fontMetrics.stringWidth( message );
    int stringHeight = fontMetrics.getAscent();
    ig2.setPaint( Color.black );
    ig2.drawString( message, (width-stringWidth)/2,
    height/2+stringHeight/4 );
    Iterator imageWriters =
    ImageIO.getImageWritersByFormatName( type );
    ImageWriter imageWriter = (ImageWriter)imageWriters.next();
    File file = new File( filename );
    ImageOutputStream ios =
    ImageIO.createImageOutputStream( file );
    imageWriter.setOutput( ios );
    imageWriter.write( bi );
    } catch( IOException ie ) {
    ie.printStackTrace();
    the file is being created, the type of the file must be specified on the command line.

  • How to save layered PDD file as JPG?

    Hi, folks:
    [running Photoshop CS3 under Windows XP Pro/SP3 ]
    I have a PSD file with about 14 layers. A few are hidden. I want to save as a jpg, so I go to file -> save as and save as a jpg file (the yellow alert icon shows next to "layers" in the save dialog). Yet the resulting jpg looks just fine. I've been doing this for years.
    Today, support told me in case #180459305 that doing that would corrupt the jpg. They said that I need to first merge layers in the PSD file, then save as a jpg.
    They also suggested that I post this question here. So here it is. Do I have to go through the extra step in manually flattening the PSD file (and potential pitfall of mistakenly saving it as a PSD and losing my layers forever)?
    Thanks,
    Fred

    Hi, Ed, J:
    Thanks for your responses!
    His explanation was as follows:
    Save the layered PSD as a jpg. When you do so, a yellow exclamation alert appears next to "layers" in the save dialogue box. He said this means that the file will be corrupted if it is saved.
    Now I believe it means that layers will be merged during the process of saving as a jpg, and I said so. He said no, let me prove it to you:
    Go to Image->mode-> and set 16 bits per channel. Then save as a jpg. You will notice that there is no way to save an image as a jpg. Now how the hell that proves his former point is beyond me.
    Now for the biggest laugh of the day: he said (in case#180459305) that if you copy or rename files using the filesystem filemanager (e.g., the desktop or windows explorer), that it would open the file to copy or rename it and then rewrite it, thus cause lossy image degradation.
    I told him (politely) that he was wrong - that renaming a file does not open it - it simply updates directory information about the file, and that copying a file (outside of photoshop) does a byte-for-byte clone of the file and does not degrade image quality.
    Where do they get these purported "experts"????
    Cheers,
    Fred

  • Can anyone tell me how to save a picture thats on facebook as a jpg instead of webarchive

    can anyone tell me how to save a picture as a jpg all the time
    when I try to save a picture from facebook it saves as a webarchive and then you can't put it into iphoto

    If you are using Safari, control-click on the image. One of the options in the resulting floating menu should be "Add Image to iPhoto Library."

  • How to save metadata in .xmp also for .jpgs?

    In LR 2.5, I have selected "save the metadata in .xmp files" in the Catalog Settings, and I have NOT selected "include develop settings inside jpeg, tiff, ...  I notice however that the metadata is saved in .xmp files only for photos in RAW format (which for me is .ORF, the Olympus RAW format).
    In jpegs, the metadata seems to be saved in the jpeg.  This is not ideal in my situation, because when I back up photos using rsync (or the time machine), all jpegs where I have modified metadata will be backed up again, causing a lot of data to be backed up, when a tiny .xmp would in fact be enough.  Is there a way to ensure that the jpegs per se are not touched, and all information is stored in sidecar .xmp files?
    Second question: if I select "store all metadata in xmp", when is this stored?  Whenever I make a change?  Or do I have to explicitly select the command "save metadata" for a folder?
    Many thanks! Luca.

    A reason RAWs are the only ones with XMP sidecars and JPGs don't, besides the fact it is easy to save metadata in JPGs compared to RAWs, is that when a camera shoots RAW + JPG both files have the same name except for the extension and so when an XMP with the same name except for the extension exists, it wouldn't be clear whether its metadata was for the RAW or for the JPG. 
    I am on a PC, so am not sure how TimeMachine works, but a well-done backup stores file differences, not the entire file, for each cycle, and also uses block-checksums to see what parts of the files have changed, so it doesn't need to read the entire backup file, nor store entire files as part of the backup process.
    There is a Save Metadata to Files command and there is a Automatically Save Metadata... preference.  Either one writes things out to the XMP for RAWs or the image files themselves for formats that support this.  I usually have Automatically Save Metadata... enabled but I also explicitly write it out to the files before doing things like purging files off my main work drive and moving them off to a backup device because LR seems to do the Automatic Save Metadata... operation in the background and it's never clear when it is finished.

Maybe you are looking for

  • How to I get a mirror image of a 3D extrude and Bevel image?

    I created a ribbon using the extrude and bevel effect and then mapping it with a custom symbol. I copied the image and then tried to get a matching image on the flipside to mirror it but cannot seem to figure it out. Is there a way to somehow flip th

  • When (or how) is a job available as a web service?

    We've created a web client application which is able to launch a job from web services. So I create a job with Data Services, but I can't tell how I'm supposed to make the job available to the client. If I call the job right directly after I create i

  • IPS 1304 & IPS-6-OOO_FULL

    Hello - I am seeing a whole bunch of the below messages in my logs. Can anyone tell my why this is happening and how I can resolve the issue.  I have tried tunning the setting below with no luck. Dec 16 08:55:47.195 WA: %IPS-4-SIGNATURE: Sig:1304 Sub

  • I just downloaded Mavericks and now my AutoCAD 2012 won't open. What do I do?

    I just downloaded Mavericks and now my AutoCAD 2012 won't open. What do I do?

  • Installing qt5-32bit program on 64bit system

    I am trying to build a 32bit program that's using Qt 5 as toolkit on my 64bit system. For Qt 4 there's a lib32 package, for Qt 5 I cannot find any. How can I build this program without building Qt on my own when a lib32-qt5 package is missing? Thank