Open as .JPG and save as .JPG?

Hello everyone!
I were just wondering if there was a way I could save them as .JPG as I did with .PSD? Because when I do save with the .PSD file, it saves without have to chose name, etc., will that be possible on the .JPG files?  I open them as a .JPG picture, and puts in a .PNG file, but thats maybe why? Please, I could really need this..
Program and System:
Adobe Photoshop CS6 Extended
Macintosh

Haha, somehow I found out how.

Similar Messages

  • Script to open eps and save to jpg

    Hi,
    I would need a script to open an eps or ai file at 100dpi, rgb, with the longest side of 500 px.
    It would save the jpg at amximum quality with the same name  +  .jpg
    then close the eps file without saving it.
    I wanted tyo create an action for this but I cant figure how to create the jpg file with it's longest side to 500 pixels.
    Jean

    When you record your action use Fit Image to resize the document. Enter 500 in both width and height, that way the longest side will be 500. Fit Image will keep the image ratio.

  • Get image from Excel as shape and Save as .jpg

    Hello,
       I'm fairly new to ActiveX and am having a hard time doing a seemingly simple thing: getting a named image from an Excel file and saving it as a .jpg.  I have seen similar things done for Excel chart objects, but as I understand it images are "shapes" in Excel and I've been unable to find the right method to extract a shape. Please, if anyone could take a look at the attached folder and tell me if I am on the right track, if there is a better way to do this, or if there is a way to do this at all, it would be helpful.  Note that I don't care how efficient a strategy is developed - if I need to save to an intermediate file of another type, that's fine. The only goal is to be able to extract this image and save it with one mouse-click and no manual intervention.
    Folder contains: 1 example Excel file containing the image named "Picture 1"; 1 vi showing the method I've found for exporting Excel charts as .jpg's; and 1 vi with the progress I have made so far trying to pick the image from the Excel file and save it as a .jpg.  
    Thanks in advance!
    Megan
    Solved!
    Go to Solution.
    Attachments:
    GetExcelPicture.zip ‏70 KB

    Hi megan,
    see this link.
    Hope it helps.
    Mike

  • Script inquiry (help please :) - Crop PDF and save as JPG

    I'm sure this will be an easy one for some of you. I want to have a script that takes a PDF of a cover file (usually very wide since it's printed along the front, spine, and back of the book), crops out the crop marks (I have a little code snippet that I found that can do this), prompts for the width of the front cover size (i.e. 6 inches for a 6" x 9" book), and then sets the crop box from the far right edge to the width that was input. I'm trying to put together a little tool for my company's Art Department to save them time creating jpegs of our books covers (there are a lot of them). Their current process is to place the PDF in Indesign on a 6x9 page and export a JPG from there, seems time consuming.
    As an example, a cover file for one of our books, without the trim marks, is 12.625" by 9". The script would prompt a user for the width of the cover, they would input 6" and it would, ideally, set the crop box to be 6" wide and 9" high (not touching the height, since that is already correct), and then save that cropped PDF as a JPG (and not save the cropped PDF so as to leave it untouched after the process is done), preferably with an option to select the output location and even batch run it on a bunch of PDF cover files.
    I'm sure this is possible, does anyone think it will be particularly easy? I don't have a lot of experience but I'm not necessarily looking for a handout since I'm not really bringing a whole lot to the table (but will take one!). Any help or pointers appreciated, or maybe someone who already has something like this could provide some help or resources to get started, even If I have to piece it together from a series of helpful URLs.
    Thanks in advance for any helpful responses I'm anticipating!
    Nick

    Take a look at these two Acrobat JavaScript methods:
    Doc.setPageBoxes():
    http://help.adobe.com/livedocs/acrobat_sdk/11/Acrobat11_HTMLHelp/wwhelp/wwhimpl/common/htm l/wwhelp.htm?context=Acrobat11…
    This function allows you to set the crop box. When you combine this with Doc.getPageBox(), you can then adjust the crop box to e.g. the 6" area you want.
    Doc.saveAs():
    http://help.adobe.com/livedocs/acrobat_sdk/11/Acrobat11_HTMLHelp/wwhelp/wwhimpl/common/htm l/wwhelp.htm?context=Acrobat11_HTMLHelp&file=JS_API_AcroJS.89.530.html
    As you can see, the cConvID parameter allows you to specify the output format - and JPEG is an option.

  • Script to open, set dimensions and save

    Hi All,
    I'm a newbie in Illustrator. I'd like to find a way to open a pdf file, set its new dimensions and after that, save the file in .AI format. Is that possible ? How could i achieve this ?
    Thanks in advance.

    OK, so here's another version of a script I posted the other day. Copy and paste into the ESTK or a text editor that will save as plain text. Save with a .jsx file extension. Place it in Adobe Illustrator CS4>Presets>Scripts and restart AI (or you can run it from the ESTK).
    #target illustrator
    Place_PDF_to_AI.jsx
    DESCRIPTION
    This script gets files specified by the user from the
    selected folder and batch processes them and saves them
    as AIs in the user desired destination with the same
    file name.
    Modified from Adobe supplied scripts and
    scripts by Carlos Canto on Illustrator Scripting
    by Larry G. Schneider 072911
    // uncomment to suppress Illustrator warning dialogs
    app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    var destFolder, sourceFolder, files, fileType;
    // Select the source folder.
    sourceFolder = Folder.selectDialog( 'Select the folder with target files', '~' );
    // If a valid folder is selected
    if ( sourceFolder != null )
         files = new Array();
         fileType =  prompt ( 'Select type of files to you want to process. Eg: *.pdf', ' ' );
         // Get all files matching the pattern
         files = sourceFolder.getFiles( fileType );
         if ( files.length > 0 )
              // Get the destination to save the files
              destFolder = Folder.selectDialog( 'Select the folder where you want to save the AI files.', '~' );
              for ( i = 0; i < files.length; i++ )
                   var idoc = app.documents.add(DocumentColorSpace.RGB, 400.0, 533.0);  // make new document
                   var ilayer = idoc.layers.add();   // make new layer
                   ilayer.name = "pdf.file";  // name layer
                   //ilayer.zOrder(ZOrderMethod.SENDTOBACK);  // put at bottom of layer stack
                   var iplaced = ilayer.placedItems.add();  // add image place holder
                   iplaced.file = (files[i]);  // place file
                   var docName = (files[i].name.split('.'))[0];   // take the first part of the placed file name for the new document
                   var destFile = new File(destFolder + "/" +  docName + ".ai");   // make a new file in the dest folder
                   var options = new IllustratorSaveOptions();   // new save options
                   options.compatibility = Compatibility.ILLUSTRATOR14;   // save as AICS4
                   options.pdfCompatible = false;   // turn off PDF compatibility
                   options.useCompression = false
                   // Export as AI
                   idoc.saveAs(destFile,  options);  // save the file in the dest folder
                   idoc.close(SaveOptions.DONOTSAVECHANGES);   // close the file without saving
              alert( 'Files are saved as AI in ' + destFolder );
         else
              alert( 'No matching files found' );
    app.userInteractionLevel = UserInteractionLevel.DISPLAYALERTS

  • I converted from a PC to a Mac Mini.  I have my PC documents backed up on a DVD disk.  I have an external DVD drive connected to the Mac Mini.  I want to open them up and save them to the Mac, BUT....when I put the DVD disk in the Mac is NOT reading it!

    I converted from a PC to a Mac Mini.  I have my PC documents backed up on a DVD disk.  I have an external DVD drive connected to the Mac Mini.  I want to open these documents up from the DVD storage and save them to the Mac, BUT....when I put the DVD disk in the Mac is NOT reading it!

    Hi Joe,
    Thanks for your quick response.  I should add....it worked before.  When I previously inserted the two DVDs into this remote drive, and I went into finder, I could click on the "remote device" line and see all my saved documents (excel, word, etc) on the DVD and open them on the Mac.  Now I cannot see them, when I try to open them on the Mac, nothing happens, nothing is displayed.  I just re-tested the remote DVD drive with a CD and, no problem, it opened up the CD via iTunes and I cold play the CD.  SO......I know the remote DVD drive (it's an LG by the way) is fine, it's something to do with some settings on my mini mac,especially where I could open it previously.  I do not remember changing any settings since then. 
    When I go into system preferences and click on CD/DVD it gives me options of how to open up a music CD (default is iTunes), a DVD (default is iMovie), etc.  The problem is my DVD is all miscellaneious files/documents.  I just want to be able to see them in the finder.  I also tried to open them via microsoft word, from the remote disk and again, it could not open the drive, even though some of the documents were microsoft word documents.  Again, I was able to open them previously and the DVD is not corrupted in any way.  
    Any additional advice? 
    Thank you!

  • Programmatically open a file and save it in a new directory

    To start off, I'm relatively new to LabVIEW and did a couple searched about this and couldn't find anything pertaining to what I wanted.
    Right now I have an event structure where I click a button and the file dialog comes up.  I then select a CAN database file.
    After that is done I'd like to save the file to the program's directory and save the relative path to an array/spreadsheet/whatever (I haven't decided what would be the most appropriate yet).  Saving the relative path is the easy part.  After opening the file, I can't seem to find anything that will let me programmatically save it to another location.
    Does anyone know how to do this?  Thank you for the help.

    Thanks for the help.  Apparently, I didn't look aroun good enough or missed it.

  • Going to url with jpg and storing that jpg

    I am trying to create a thread that will simulate going out to a webpage with a .jpg extension( specifically, http://www.springsgov.com/trafficeng/woodmen.jpg ) and store it in a vector. I'm then going to have a client use RMI to read from that vector and display the .jpg's onto another webpage. However, I am trying to figure out how to store the .jpg and I am have issues on how to do it. I tried to use JEditorPane but when it redisplays it to the screen, it displays it in bytecode and not a picture. I was wondering if someone out there might be able to help me with this...

    The problem is not completely clear to me, however you can display jpg files in java by creating instances of java.awt.Image. Once you have your jpg bytes, you should call java.awt.Toolkit.createImage(jpgBytes).
    Then you pass the resulting java.awt.Image to the constructor of javax.swing.ImageIcon; then you create a JLabel and pass the ImageIcon to its constructor. Finally you and add the JLabel to your favourite java.awt.Container (such as JPanel or JScrollPane).
    Hope this helps,
    Lucio.

  • Can I open a PDF and save it as a JPG or GIF?

    I asked on the PageMaker forum about creating a jpg or gif of a book cover I created in PageMaker. The suggestion was to create a pdf of it (no problem), open it in PhotoShop, then save it in the format I need. I don't own PhotoShop, so downloaded the Album Starter Edition. For the book cover with photos on it, only the photos are imported; for the book cover with only text and solid-color boxes, nothing at all is imported. Does anyone know how to get the entire pdf into PhotoShop so it can be saved, intact, as a jpg or gif? Thanks!

    I think Downloader in PSE organizer has capabilty to extract images from PDF.
    Collin- Is there any other way in PSE to extract images from PDF. Pls tell us how hat can be done.

  • How do I open and save a jpg attachment from mail?

    I received an email that has a jpg photo. This photo is an attachment. In my Inmail there is a paper clip next to the name of the person who sent the email. I want to be able to copy the jpg photo and put it someplace else. Is there any way this can be done? I am new to all of this.

    Try holding down the jpeg picture for a second or two, an option to copy or save should appear.

  • Need to get a JPG from stream, resize, convert again to JPG and save in DB

    Hi:
    I have a J2EE Applicaction wich is a migration from a ASP.NET project to Java.
    That web application is like a photo album service, where people can upload pictures. I take the pictures inside a bussiness object, containing two some fields, but one for the image is being uploaded and other one for the small representation of that picture, I mean a Thumbail or a resized image.
    Everything works excepct one thing, I dont know how to generate the thumbail. I seen lot of information about that, included JAI, but the problem is the next... I need to resize the image, and then, to save it into my bussiness object as a JPG image. I found how to resize the image, but always explanations stop there, and I need to know if exists one esasier way to do that (JAI is simply great, but for my project should to be too much), and how to implement a solution for my problem.
    In a few words:
    1 I have the JPG picture (as byte[]) inside one property in one of my objects
    2 I need to save in the other property a small version of the JPG picture, so I need to resize and preserve JPG format, and be able to get the byte[] of the picture.
    If is posible to help my, it could help me so much!!!!
    Plaase, excuse me for my horrible english, and greetings from Madrid.

    Hi, thanks so much!... After of working on it, I got the nest code using JPEGEncode, but when trying to get image I get a expection wich says:
    com.sun.image.codec.jpeg.ImageFormatException: Not a JPEG file: starts with 0x31 0xff
         sun.awt.image.codec.JPEGImageDecoderImpl.readJPEGStream(Native Method)
    I'll post my code here, coz may be is something I am doing wrong, please if you could help me on it, it could be great. The code is about one servlet:
    Thanks for all again!
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    boolean isMultiPart;
    isMultiPart = ServletFileUpload.isMultipartContent(request);
    DiskFileUpload fu = new DiskFileUpload();
    fu.setSizeMax(10240*512);
    fu.setSizeThreshold(40960);
    fu.setRepositoryPath("/tmp");
    try {
    Iterator i = fu.parseRequest(request).iterator();
    FileItem actual = null;
    while (i.hasNext()){
    actual = (FileItem)i.next();
    String fname = actual.getName();
    Photo oPhoto = new Photo();
    oPhoto.setDesPhoto("sticked title");
    oPhoto.setBytesOriginal(actual.get());
    //creating the bufferedImage from a JPEG stream
    InputStream in = new ByteArrayInputStream(actual.get());
    JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(in);
    BufferedImage image = decoder.decodeAsBufferedImage();
    in.close();
    //preparing thumbail numbers
    int thumbWidth = 150;
    int thumbHeight = 150;
    double thumbRatio = (double)thumbWidth / (double)thumbHeight; //ratio for the thumbail
    //obtain the picture width and height
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    //it will works if the size of image is bigger than thumbail details
    if (imageWidth > 150 || imageHeight > 150) {
    double imageRatio = (double)imageWidth / (double)imageHeight; //ratio in the original image
    if (thumbRatio < imageRatio) {
    thumbHeight = (int)(thumbWidth / imageRatio);
    } else {
    thumbWidth = (int)(thumbHeight * imageRatio);
    // scale it to the new size on-the-fly
    BufferedImage thumbImage = new BufferedImage(thumbWidth, thumbHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D graphics2D = thumbImage.createGraphics();
    graphics2D.setRenderingHint(java.awt.RenderingHints.KEY_INTERPOLATION, java.awt.RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
    try {
    ByteArrayOutputStream sout = new ByteArrayOutputStream();
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(sout);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
    int quality = Math.max(0, Math.min(650, 100));
    param.setQuality((float)quality / 100.0f, false);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(thumbImage, param);
    oPhoto.setBytesThumb(sout.toByteArray());
    sout.close();
    } catch (java.io.IOException ioe) {
    ioe.printStackTrace();
    } // end if image width or height
    oPhoto.setAlbumID(1);
    if(oPhoto.getBytesOriginal().length > 1) {
    oPhoto.add();
    } catch (FileUploadException exception) {
    out.close();
    }

  • JPGs and SAVE for WEB Save Too Dark

    I have seen many discussions on this topic and they always end in going to different websites and following what I consider to be a very complex set of instructions to fix it. The instructions are extremely intimidating for me as there are many steps messing with things on my computer, my monitor, and in Photoshop that I'm not comfortable with. What I really would love to see is a set 'beginner' instructions.  This is a common problem, I would love to see a more common kind of fix for those of us that aren't so technical.  <3
    The Problem:
    I create an asset and try to save it.  No matter the format, (except PSD) it saves Very dark and wipes out all of the detail with black.
    Thanks in advance, smart folks! 

    Impossible to say without seeing it. But it's probably much simpler than you think.
    Make a screenshot showing the two side by side. Press "Print Screen" on your keyboard and paste into a new Photoshop document. Save as jpeg and post here:

  • In C#, how can I detect an opened PDF file and save it into disk?

    he WebBrowse componente in C# opened an PDF file inside. The file came from the Internet. So, the Adobe Acrobat Reader was called and opened the file correctly. I want to save this file to disk. How can I do it?
    The WebBRowse component does not have access to the PDF content.

    PDFs are not designed to be editable. Your engineers can make comments using Adobe Reader without any extra steps provided they use the highlight and sticky note comments. If you want them to have access to the full range of comment markup you will need to use Acrobat to apply extended rights to the file.

  • Is there any way to cut & paste a group of links from a Word dod into a Bookmark/Folder, or must I open each link and save one at a time?

    computer crashed; system restored old IE Faves but not Mozilla Bookmarks so I have to re-create them

    It is much easier if you save the file with those links as an HTML file with A href="http" links in MS Word and import that file in Firefox.
    (Firefox >) Bookmarks > Show All Bookmarks > Import & Backup > Import HTML : "From File"
    * http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • TS3991 If i produce a document on my PC in WORD.  Can I open it, edit and save in CLOUD

    Can anyone tell me if I produce a document on my PC in WORD can i edit it on my laptop and is it then saved in ICLOUD??

    Welcome to the Apple Support Communities
    If you have purchased Pages for the iPhone, iPod touch or iPad, you can. Open http://www.icloud.com, login with your Apple ID, select iWork and drag your documents to the browser window, so they will be uploaded to iCloud as Word documents.
    If you haven't purchased Pages or you don't have any Apple device, instead of using iCloud, you should use a cloud service as Dropbox or, better, Microsoft SkyDrive

Maybe you are looking for

  • Email address / phone for reporting download problems?

    I've been unable to successfully download ANY 9i database files from three different networks (T1, T3, cable modem), three different PCs, Windows or Linux, Netscape 4.7 and 6.2 and IE 5 and 6, for the past 5 days. No error message comes up. The downl

  • Windows not gaining focus...

    Hello! After recent update (I can't recall having this issue before) windows that previously had focus, but lost it after I opened a new window, do not gain focus after I close the new window. This is very irritating, because now I have to click on t

  • Listing

    Hi Gurus,, In Material Listing..... Is it Possible to display the Pop-up window when entering the material...??? IF yes How can???

  • Table Load Sequence - Referential Key Hierarchy

    I have a schema with around 100 tables. I need to load data in those table in such an order so that none of the referential integrity constraints fail while loading the data. Is there a way I can build a load sequence using some referential key hiera

  • Error message rendered into the final output render

    I am getting the image below after I render in SpeedGrade on every other frame. It happens often and the only way to fix is to re-launch SpeedGrade and render again hoping for the best. Sometimes it's fine and then I get the warning again. Any ideas