Help - problem with save for web when jpg image is placed in file

I have a jpg image that I placed in my Illustrator 5 file to use as a backdrop and then created several vector buttons on top.  When I attempt to create an arboard around a single button and then save for web, it ignores the artboard dimensions and shows the entire jpg dimensions.  If I create the same file without the jpg backdrop image, I am able to use the artboards to save just a single button.  Any time I place a jpg image in my Illustrator file and attempt to use the artboards, the artboards are ignored and the entire area of the jpg is saved.  I am able to use the slice tool to do the saving, but I prefer to use the artboards.  Does anyone have any suggestions on how to get the artboards to work when a jpg is placed in the file?  Thanks.

THANK YOU!!!
It says, "Clip to artboard".  I wasn't sure what clip meant, but that was it!  Thank you.

Similar Messages

  • Problems with "save for web" app low quality messed up images

    Please help I have never had a problem with the "save for web" application before (over three years) I am currently running A.I. cs3 on windows vista. in the past whenever I save anything this way the images were always clean. as of yesterday everything I try to save through the save for web app the images are very low quality all the vector has jagged edges, it is very low rez looking and the file sizes are very small, half the size they normaly would be. What did I do to change the settings or better yet how can I get it back to the way it was.

    Thank you for your help I moved the folder but it still did not fix this problem. it is also not just the jpg option under the save for web app but all the setting ie. gif, png, ect. ect. Also the the files sizes are much less, example I exported a design as a jpg with the quality setting about 6 the file size was 374kb when I exported the same design through the save for web app the file size was only 45 kb on the quilty setting of 100. further more in the preview screen of "save for web" the original images as well as the optimized both look messed up. The "save for web" app has always worked for me in the past never a problem and I use this app alot so it is very important.

  • Possible Problem with Save for Web and Devices?

    II've come here to the forum for some insight on why a gif file created by save for web and devices command is not showing up as an image in an uploading dialog box for my website.  I'm buildiing my website with word press and a custom freelancer theme.  I've created a customized header with Illustrator and have been saving the file with the save for web and devices command.  Once I have my gif file, I go to my theme uploader and try to upload the gif image and place it on my homepage.  I've not had any problems with doing this until yesterday, when I tried to upload an updated file.  What usually happens is that the thumbnail image shows up in the dialog box, I select my options, and click insert.  But what's started happening yesterday is that the thumbnail does not show up, unless I click on edit image.  This makes no difference, as when I click insert and go to my homepage and refresh it, the header doesn't show up.  I've tried working with the developer of the theme to resolve this problem and so far we've not found a solution.  I've tried to upload the header with different file types: jpg, png, tiff, but they don't work.  I thought I'd come here to see if anyone might have some suggestions.  The problem may not be with Illustrator's save for web and devices, but I thought I'd give this forum a shot.  Thanks for any and all respones. :[

    CT,
    If you can see and open the GIF/whatever (with any viewing application), the Illustrator Save for Web&Devices works. If not, you may ask about it in the Illustrator forum:
    http://forums.adobe.com/community/illustrator/illustrator_general?view=discussions
    If the image is there, to have the issue solved quickly, I believe you should ask in a forum covering the web building application.

  • Problem with 'save for web'

    On PSE9 when I click 'save for web' I am informed that 'could not complete the Export command because of a program error'. I have tried re-installing but to no effect. help please!

    Hi,
    Can you please mention the type of file you faced this issue? As it is working fine for me.
    Also, can you mention  the steps you do bfore exporting?
    -Swarnima

  • Script Needed to work with "Save for Web" Tool

    I am looking to compress the JPG image files using the Save for Web tool within Photoshop CS2. As you know, this tool yields better results in image quality and file size than the standard Photoshop Save As command.
    To this end, I would like to batch process multiple images within multiple sub-folders. Unfortunately, I havent found a process that will allow the use of the Save for Web JPG compression, batch process the JPG files within a sub-folder structure and re-write the images to the same folder.
    What I have managed to accomplish up to this point, is create a Photoshop Action incorporating the Save for Web tool. However, the Save for Web menu always prompts to save a file to a specified folder. This seems to be the Catch-22 to the batch processing capabilities. When using Photoshops batch processing feature with this Action, and also enabling include all sub-folders, all the resulting files created are always saved to one specified folder.
    I need a script (perhaps Java or Visual Basic) which will run in Photoshop, and allow the use the Save for Web tool (JPG High, Quality 60, Optimized), batch process a series of images contained within a sub-folder structure and then re-write the image files to the same location. Can anyone help with this?

    The files must be very large.
    On my machine
    AMD Athlon 64 3200+ 2.01GHz 1GB Ram
    It failed with an uncompressed file 347.6MB (40.9MB on Hard Disc) with not enough memory.
    It managed to do a 277.4MB uncompressed file (34.3MB) with no problem although it was slow.
    With such large files it might be betted to just do a folder at a time so there are two new vars that you can alter.
    MAXJPGSIZE this is the size of the file on the Hard Drive.
    SUBFOLDERS setting this to true will include subfolders and false will only process the selected folder.
    Paul.
    //GLOBAL vars, amend values to suit.
    //Maximum size of file in Megabytes  to process (This is the file size on the Hard Drive)
    MAXJPGSIZE = 34;
    // "true" = include subfolders - "false" do not include subfolders
    SUBFOLDERS = true;
    var imageFolder = Folder.selectDialog("Select the folder with JPGs to process");
    if (imageFolder != null)  processFolder(imageFolder);
    function processFolder(folder) {
        var fileList = folder.getFiles()
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
      if (file instanceof File && file.name.match(/\.jpg$/i)) {
         if((file.length/1024/1024).toFixed(0) < MAXJPGSIZE +1){
                  open(file);
    var doc = app.activeDocument;
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;
    var saveFile = new File(decodeURI(activeDocument.fullName.fsName));
    saveFile.remove();
    SaveForWeb(saveFile,60);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    app.purge(PurgeTarget.ALLCACHES);
    $.gc();
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;    
      } else
    if (file instanceof Folder && SUBFOLDERS) {
           processFolder(file);
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = jpegQuality;
    app.activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

  • A script for "Save for Web" as .jpg

    I found a script that saves the current selected document in Photoshop as .png to the Desktop, and use it all the time.
    function main() {
              // declare local variables
              var doc = app.activeDocument;
              var docName = app.activeDocument.name.slice(0,-4);
        var saveFile = new File("~/Desktop/" + docName + ".png");
        pngSaveOptions = new PNGSaveOptions();
        pngSaveOptions.interlaced = false;
        doc.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
    main();
    Now I'd really like a similar script to do "Save for Web" as .jpg files, without a colour profile, to the Desktop. Preferably a version to save as 100% quality and one to save as 60% quality.
    Any help would be greatly appreciated.

    Here you are...
    function main(){
    if(!documents.length) return;
    var Name = app.activeDocument.name.replace(/\.[^\.]+$/, '');
    var saveFile = File(Folder.desktop + "/" + Name + ".jpg");
    if(saveFile.exists){
       if(!confirm("Overwrite existing document?")) return;
        saveFile.remove();
    SaveForWeb(saveFile,100); //change to 60 for 60%
    main();
    function SaveForWeb(saveFile,jpegQuality) {
    var sfwOptions = new ExportOptionsSaveForWeb();
       sfwOptions.format = SaveDocumentType.JPEG;
       sfwOptions.includeProfile = false;
       sfwOptions.interlaced = 0;
       sfwOptions.optimized = true;
       sfwOptions.quality = jpegQuality; //0-100
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

  • Photoshop batch production - issues with 'save for web'

    Hi,
    I'm having an issue with 'save for web' on a batch. I've just spent the last 2 hours searching the web and this forum and although the issue gets touched upon, the threads either suddenly head off in another direction, end, or i just struggle to make sense of the answers given.
    I have 350 images that i want to resize to thumbnails and then save for web. 2 hours ago this seemed like a 5 minute job.
    I creat an action called 'batch_thumbnail' and press 'Record'.
    I then select 'File' > 'Open' and select an image to open using the dialog box.
    I then select 'Image' > 'Image Size' and resize the image to the thumbnail size (200 x 125) and press 'OK'.
    I then select 'File' > 'Save for Web and Devices', set my optimisation settings and press 'save'.
    Using the dialog box that pops up, i navigate to a pre-created directory called 'thumbs' and press 'save'.
    I then select 'File' > 'Close' and on the dialog box that pops up i select 'Don't Save'.
    I then stop the action from recording.
    So far so good.
    I then select 'File' > 'Automate' > 'Batch...' and the dialog box appears.
    I select my action in the 'Action' drop down menu.
    In 'Source' i set the drop down menu to 'Folder', select 'Choose' and select the target directory with my 350 images in.
    In 'Destination' i set the drop down menu to 'Folder', select 'Choose' and select the target directory (thumbs), where i wish to save the thumbs.
    In 'File Naming' i leave the first box as 'document name', set the second to '_thumb' and have the third as 'extension'.
    I then click 'OK'.
    And this is where the problem begins. Everything works fine till it trys to save the second image. I can see what's happening, as the directory path and image name that are used whilst setting up the SFW part of the action, are getting hardcoded into the action. So every resulting image is being saved as the same file, instead of being overriden by the settings in 'File Naming'.
    I've tried selecting 'Override action 'Save' command', but it doesn't make any difference. Is it actually possible to batch produce files using 'Save for Web and Devices'?
    Cheers,
    James

    I have written a couple of Save For Web batch processors, they may be of use to you?
    They can both resize and run an action if required.
    CS2-CS3 http://www.ps-scripts.com/bb/viewtopic.php?t=2374
    CS4 http://www.ps-scripts.com/bb/viewtopic.php?t=2276 (This handles metadata)

  • Im have a problem with my adobe id when i try to covert pdf files.

    Im have a problem with my adobe id when i try to covert pdf files.

    I think your question should go in the ExportPDF forum,
    http://forums.adobe.com/community/exportpdf

  • Colour issue with 'Save for Web' - Photoshop Elements 6 (Mac)

    Cross posted here, but no answer so far. Sorry for cross posting. For me, this is urgent, but I know it's not for anyone else, so apologies for putting 'urgent'.
    http://www.mac-forums.com/forums/images-graphic-design-digital-photography/150670-colour-i ssue-save-web-photoshop-elements-6-a.html#post840419
    This is a similar issue to this:
    Save for web color issue
    Except the user who posted the above was using photoshop cs3, and I'm using Adobe Photoshop Elements 6.
    When I work on a photo, I get it just right, then go to Save for Web, and the original it previews is loads lighter than the orginal I was working on in the first place. See 'Picture 1' attachment.
    I have changed the colour settings on the Save for Web options - I've chosen each one in turn, and none fix the problem.
    There seems to be no similar option in PSE6 to this that fixed it in CS3:
    IN the save for web box there is a small round button with an arrow in it (near the Done button).
    In the list when this button is pressed deselect Convert to sRGB
    I used to use PSE2 on a PC, and never had this problem. I didn't need to mess about with colour profiles or anything similar on the PC. The original was the original, not a washed out version of the original. Why spend ages getting the file just right, only for Save for Web to screw it up?
    Any advice to fix this would be much appreciated.
    Thanks

    Thanks very much for your reply.
    I've uploaded the images here:
    http://jimpix.co.uk/images/Picture 1.jpg
    http://jimpix.co.uk/images/Picture 2.png
    I deleted the prefs. file you suggested, and then opened PSE6.
    I then tried the profile setting you suggested - but it's not an option:
    http://jimpix.co.uk/images/Picture 3.png
    I tried 'remove profile' just in case that worked, but the same effect happens on Save for Web.
    Not sure what to try next!
    Thanks

  • IBooks author color shift with "Save for web devices..."

    Hi! I'm a web developer and I'm learning to use iBooks. It's a really easy tool, but there is a problem with color management wich is driving me crazy. This happen when I export images from "Save for web devices..." from Photoshop, then drag it to iBooks author.
    As I do for web development, I do this:
    1) Configure photoshop Color Settings to work with "Color Monitor"
    2) Remove any color management from my document
    3) Proof Setup > Monitor RGB
    4) Disable Proof Colors
    5) Use "Save for web devices..." with ICC profile and sRGB unchecked
    The exported JPG looks fine everywhere... Photoshop, Preview, Safari, Chrome, FF... but looks washed out when I drag it to iBooks Author. Why?
    I solved this issue converting to sRGBIEC61966-2.1 profile and checking ICC profile when  "Save for web devices...", but I'm not confortable with this workaround because I'm not sure about what I'm doing exactly, and I am not sure if this images are gonna look good on any device (I only own an iPad 3).
    Somebody know a best method to deal with this?
    Thanks!

    Hi KT. Thanks for your response. I'm already using this formats. Anyway, the problem occurs within iBooks Author interface. I mean: I can see the color shift (or washed out...) at iBooks Author at my computer screen. Of course, when I test it on iPad it also looks bad.
    It's incredibly strange because the JPGs I'm using looks fine everywhere else except iBooks Author.

  • Huge file size with Save for Web but preview is ok

    Hi,
    I have googled but not found anything about this but I have the same problem on my computer and also on a colleagues computer so it seems it should not be totally unknown.
    This is what i do
    1 Open a eps file, one color logo, 72dpi, size it to 110x21
    2 save for web
    3 select png-24 format. preview says file size ~1.3 kB
    4 save -> actual file size on disk is 4 kB (ie 3 times bigger file size than it should be)
    5 Preview and then right click in browser + save image as gives correct file size (on my colleagues computer this does not work, he always gets the wrong size)
    I have also tried with gif and various settings, image sizes etc and the result is the same.
    I'm using Windows Vista 32-bit and Photoshop CS4.
    Is this a known problem?
    Thanks

    Thanks for your reply but i don't think that's it. When I check properties on the file in Windows it tells both "Size" and "Size on disk", where the latter is actual size on disk (depending on cluster size) but the size I am talking about is the first one.
    Also just to be clear, when I say Preview, I mean clicking the Preview button that opens the file in a browser window. Not the preview within the Save for Web and Devices dialog. So I think this file is correctly created and *should* be the same as if I click Save (but it obviously isn't)
    This sounds very much like a bug to me, anyone else who have seen this or can recreate?
    Thanks

  • Poor image quality with save for web

    It doesn't matter whether i'm exporting from Ai or Ps or whether it's CS6 or CC. I have changed the raster settings in Ai and i've also tried all optimization options with all different export file types (jpg, png, gif) at all different quality settings. It doesn't matter if I start with an ai, eps, pdf, png... the export result is always poor quality.
    I have tried exporting at 300ppi and that does fix the quality issue and bloats the file size, but this way (the export route) is so time consuming since you have to resize your artwork each time as well as the artboard so that it doesn't cut off pixels. Save for web never used to have these quality issues and it also never used to cut off pixels around the edges. These workarounds prove very time consuming and produce file sizes that are not ideal.
    When i first noticed this issue I was using Mavericks with CS6 and since am using Yosemite and Creative Cloud.
    Steps to reproduce:
    1. Create any bitmap or vector graphic in Ai or Ps, It doesn't matter whether you convert text to outlines or not
    2. Save for web
    3. View image in any application or browser to see poor quality and pixel trimming. Others running the same version and system are not having this issue, but I have checked many forums and found many others that do have this same issue but can't seem to find a solution.
    Results:stair stepping, degradation, pixel trimming, general poor image quality
    Expected results: Previously the save for web feature allowed for a decent quality image

    I thought of that too so I tested on another machine with retina display and the file i saved on my machine looked bad on my machine and on the other comparable machine/display. So I sent them the original vector ai file and watched while they saved it the exact same way on their machine and the file looked fine on both of our machines/displays.
    All of the settings they used appeared the same as what I used but with different results. I don't recall changing anything but does anyone know if there is some setting that could have been changed that is causing this issue?

  • CS5.5 Photoshop Save For Web Error - "cannot be performed on a file with a user-mapped section open"

    I have just started getting this error when I try to "Save for web". I can still do File > Save As... with no problem. Does anybody know what might be causing this?

    Hi jonesri,
    I think you can try to use SSAS Dynamic Management View to monitor SSAS instance, such as existing connections and sessions. For example, please run the following MDX query:
    SELECT[SESSION_COMMAND_COUNT],
    [SESSION_CONNECTION_ID],
    [SESSION_CPU_TIME_MS],
    [SESSION_CURRENT_DATABASE],
    [SESSION_ELAPSED_TIME_MS],
    [SESSION_ID],
    [SESSION_IDLE_TIME_MS],
    [SESSION_LAST_COMMAND],
    [SESSION_LAST_COMMAND_CPU_TIME_MS],
    [SESSION_LAST_COMMAND_ELAPSED_TIME_MS],
    [SESSION_LAST_COMMAND_END_TIME],
    [SESSION_LAST_COMMAND_START_TIME],
    [SESSION_PROPERTIES],[SESSION_READ_KB],
    [SESSION_READS],[SESSION_SPID],
    [SESSION_START_TIME],[SESSION_STATUS],
    [SESSION_USED_MEMORY],
    [SESSION_USER_NAME],
    [SESSION_WRITE_KB],
    [SESSION_WRITES]
    FROM $SYSTEM.DISCOVER_SESSIONS
    Use Dynamic Management Views (DMVs) to Monitor Analysis Services:
    http://msdn.microsoft.com/en-us/library/hh230820.aspx
    In addition, you can aslo use SQL Profiler to capture some events for further investigation.
    Use SQL Server Profiler to Monitor Analysis Services:
    http://technet.microsoft.com/en-us/library/ms174946.aspx
    If you have any feedback on our support, please click
    here.
    Regards,
    Regards,
    Elvis Long
    TechNet Community Support

  • Partial transparency with save for web gif?

    Hey all,
    I remember back in the day of photoshop 6 or maybe even 7, when I would create partial transparent .gif files through the "view menu" export transparency button, or something like that, and it would let me create beautiful partial transparent .gif files all with nicely rasterised edges.
    I'm noticing in these newer versions of photoshop I have to save in the .png format to do that same thing (get that clean transparency).
    Am I still able to create clean rasterised transparencies in gif file format via save for web in PS CS5 etc??? Or am I missing something?
    Once of those things that bugs me and I need an older head to set me straight.
    Any help would be great

    One can still use them, I guess.  But read this article for GIF and its replacement PNG.  http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CCQQFjAA&url=http%3A%2 F%2Fwww.w3.org%2FQA%2FTips%2Fpng-gif&ei=_JQTT_rOMcHjiAKF-vXtDQ&usg=AFQjCNHQ7JbGtlwXdnK5BWp 7tXEJ7IpfhQ

  • IPTC issues with Save for Web

    I have images with the copyright notice field, copyright status, provider and source fields filled in.
    When I do a save for web, I'm trying to adjust the IPTC data that gets saved but nothing I do seems to work. On thumbnails, I don't need any of that data but I can't get it removed. No matter what I select, there's always stuff in the copyright notice field.
    Similarly, if I try to simply change the copyright status field and leave everything else as is, I usually lose (data gets wiped out) provider and source and I get extra data put into the copyright URL field which wasn't there before.
    I also get the file data cannot be read error when opening up these files sometimes because photoshops seems to mess up how it writes the IPTC data. Image data seems file, it's only when photoshop fills in the copyright url with the same data from the copyright notice without asking me.
    In CS2, I had to use ImageReady because it would wipe out all the data and then I just used iView to easily put back in the 3 fields I was using. Now that IR is gone, I figure I need to migrate this to CS3 but no matter what combination of options I select, it seems metadata handling is horribly inconsistent.
    Can anyone tell me how it works? I've tried making a script step to set the data I want, I've tried working with an image with the fields the way I want them and then doing the save for web so it records the data I want, I've tried both with and without the include XMP option but I can't seem to get anything to work properly.
    Edit: Didn't make it clear but I'm trying to record a batch action where I scale images to 6 different sizes and then do a save for web at each size.
    Please help.
    Thanks

    Depending on your use of the image in context, won't the transparent strip "disappear?"
    The only solution I know is to open it in Photoshop and manually crop out the transparent strip. AI or Save for Web also seems to antialias the edge of free-standing art over a transparent background. I just make the artwork slightly larger than the final cropped size, save for web, then crop in Photoshop.

Maybe you are looking for

  • Installation 10g on vista

    I did following : 1) already downloaded from website 2) click on setup.exe and zip file has been unzip then ask starter database ORCL password : Confirm pasword : 3) dialog box with following error : Abnormal program trmination. An internal error has

  • Can't get panes to re-size with hotkeys

    I have a small annoyance whereby sometimes my hotkeys to re-size existing panes doesn't work.  I had changed the hotkeys to move from pane to pane to be Alt-Left (arrow) and Alt-Right (arrow) key.  After looking at the default settings by running tmu

  • Sales Analysis query per item group summarized per BP Group

    Dear experts, My client is requiring me to create a query that when i select a certain item group it returns a sum/total of sold items in that group per BP group format: parameter: Item Group A BP Group A    1,000 BP Group B    2,000 BP Group C   1,0

  • Show InstanceName In different Timeline

    I Had a main timeline, timeline2, and timeline3. In timeline2, I had 2 buttons in frame1 and a Movieclip In Frame2. In timeline3, I added 1 component, label. The movieclip will display beside the 2 different button when clicked. But how do i make the

  • My email won't open on my droid ultra

    My email won't open on my droid ultra