Saving two dimensions od image for web

Hi there,
I have made script (with your help ) to export images for web with dimensions 300x300 px. Now I want that my script do one more resize of that files so that i get two files one 300x300 and another 66x66 px. I will post my script and ask you to hel me find the bug
And one more question. My script exports file name + jpg but it also keeps orginal extension so I get ie. FileName.psd.jpg
can you help me fixing this in my script... else is fine...
thank you,
Voah
Edit:
In the meen time I managed to resolve the problem so here is the new script
But I have one more thing I would like to do. I have to manually make folder "300x300 and "66x66" or my script stops. How coud I make that script make that folders? (under inputFolder/300x300/ and inputFolder/66x66/)
// Save current dialog preferences
var startDisplayDialogs = app.displayDialogs;    
// Save current unit preferences
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
var inputFolder = Folder.selectDialog("Select the input folder");
//var outputFolder = Folder.selectDialog("Select the output folder");
ProcessImages();
function ProcessImages() {
  var filesOpened = 0;
//   if ( inputFolder == null || outputFolder == null)
     if ( inputFolder == null) {
            alert("No source folder selected");
//     if ( outputFolder == null) {
//       alert("No output folder selected");
//else{
  var fileList = inputFolder.getFiles();
  for ( var i = 0; i < fileList.length; i++ ) {
       if ( fileList[i] instanceof File && ! fileList[i].hidden) {
                 open( fileList[i] );
                 ResizeImage();
                 filesOpened++;
  return filesOpened;
function ExportPng(filePrefix, fileSuffix){
try
var docRef = app.activeDocument;
var docName = app.activeDocument.name.slice(0,-4);
var saveOptions = new ExportOptionsSaveForWeb();
saveOptions.quality = 70;
saveOptions.format = SaveDocumentType.JPEG;
saveOptions.optimized = true;
docRef.exportDocument(File(app.activeDocument.path+'/300x300//'+docName+'.jpg'), ExportType.SAVEFORWEB, saveOptions);
catch (e)
alert("Error encountered when attempting to save the image. \r\r" + e);
return;
// funkcija export 2
function ExportPng2(filePrefix, fileSuffix){
try
var docRef = app.activeDocument;
var docName = app.activeDocument.name.slice(0,-4);
var saveOptions = new ExportOptionsSaveForWeb();
saveOptions.quality = 70;
saveOptions.format = SaveDocumentType.JPEG;
saveOptions.optimized = true;
docRef.exportDocument(File(app.activeDocument.path+'/66x66//'+docName+'.jpg'), ExportType.SAVEFORWEB, saveOptions);
catch (e)
alert("Error encountered when attempting to save the image. \r\r" + e);
return;
function ResizeImage()
if (app.documents.length > 0) {
    var docRef = app.activeDocument;
    var n = docRef.pathItems.length;
        if((n>0)&&(docRef.pathItems[0].name!="Work path" ))  {
             docRef.pathItems[0].makeSelection();
             docRef.selection.invert();
             docRef.selection.clear();
             docRef.selection.deselect();
   function fitImage() {
var docRef = app.activeDocument;
docRef.trim()
var docWidth = docRef.width.as("px");
var docHeight = docRef.height.as("px");       
if (docWidth / docHeight > 4.8)
    docRef.rotateCanvas (315)
    docRef.trim()
else if (docHeight / docWidth > 4.8)
    docRef.rotateCanvas(45)
    docRef.trim()
if (docWidth < docHeight)
          docRef.resizeImage(undefined, UnitValue(270,"px"), 72,  ResampleMethod.BICUBIC )
      else if (docWidth > docHeight)
                      docRef.resizeImage(UnitValue(270,"px"),undefined, 72,  ResampleMethod.BICUBIC )
      else if (docWidth == docHeight)
                docRef.resizeImage(UnitValue(270,"px"),UnitValue(270,"px"), 72,  ResampleMethod.BICUBIC )
docWidth = docRef.width.as("px");
docHeight = docRef.height.as("px");       
if (docWidth < docHeight)
                    docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
      else if (docWidth > docHeight)
            docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
      else if (docWidth == docHeight)
            docRef.resizeCanvas(UnitValue(300,"px"), UnitValue(300,"px"), AnchorPosition.MIDDLECENTER);
var docRef = app.activeDocument;
var savedState = docRef.activeHistoryState;
fitImage();
app.displayDialogs = DialogModes.NO;
ExportPng( File( "",".jpg" ))
docRef.resizeImage(UnitValue(66,"px"),UnitValue(66,"px"), 72,  ResampleMethod.BICUBIC );
            ExportPng2( File( "",".jpg" ))
docRef.close(SaveOptions.DONOTSAVECHANGES);
docRef = null;
// Reset app preferences
app.displayDialogs = startDisplayDialogs;
preferences.rulerUnits = originalRulerUnits;

Does this help?
main();
function main(){
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
var inputFolder = Folder.selectDialog("Select the input folder");
if(inputFolder == null) return;
var fileList = inputFolder.getFiles(/\.(jpg|tif|psd|png)$/i);
var outputFolder1 = Folder(inputFolder + "/300x300");
if(!outputFolder1.exists) outputFolder1.create();
var outputFolder2 = Folder(inputFolder + "/66x66");
if(!outputFolder2.exists) outputFolder2.create();
for (var a in fileList){
open(fileList[a]);
var Name = decodeURI(activeDocument.name).replace(/\.[^\.]+$/, '');
app.activeDocument.trim(TrimType.TRANSPARENT);
FitImage(300,300);
var saveFile = File(outputFolder1 + "/" + Name + ".jpg");
SaveForWeb(saveFile,70);
FitImage(66,66);
var saveFile = File(outputFolder2 + "/" + Name + ".jpg");
SaveForWeb(saveFile,70);
app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
preferences.rulerUnits = originalRulerUnits;
function FitImage( inWidth, inHeight ) {
var desc = new ActionDescriptor();
var unitPixels = charIDToTypeID( '#Pxl' );
desc.putUnitDouble( charIDToTypeID( 'Wdth' ), unitPixels, inWidth );
desc.putUnitDouble( charIDToTypeID( 'Hght' ), unitPixels, inHeight );
var runtimeEventID = stringIDToTypeID( "3caa3434-cb67-11d1-bc43-0060b0a13dc4" );
executeAction( runtimeEventID, desc, DialogModes.NO );
function SaveForWeb(saveFile,jpegQuality) {
var sfwOptions = new ExportOptionsSaveForWeb();
   sfwOptions.format = SaveDocumentType.JPEG;
   sfwOptions.includeProfile = false;
   sfwOptions.interlaced = 0;
   sfwOptions.optimized = true;
   sfwOptions.quality = jpegQuality;
activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);

Similar Messages

  • Which way to get image for webi report?

    Hi,
    I have to add image to webi report. So any way is there for adding image for webi intelligence.

    check this thread:
    Adding an image (logo) to webi report

  • I am using CS6 and when I go to save an image for Web the image does not retain its quality

    I am using CS6 and when I go to save an image for Web the image does not retain its quality. The first week I did this it worked just fine and now the images save very pixely.
    Here is a screenshot of my image on the artboard as I am editing it
    Here is a screenshot of the image as I'm trying to save it for Web
    As you can see, the image becomes pixely. I have tried to save it as every type of png and jpeg but nothing seems to work. I have no idea why it has started to do this. Please help!

    Change None to Art optimized then click apply(alteast in CS5 there was an apply, believe they removed that in CS6 as so many people missed that part).

  • Save image for web/devices - random streaks

    I have no idea why, but sometimes when i save images for web It leaves random streaks across certain areas. It has nothing to do with transparency/gradients because i've used normal fills and it still does it. It's probably something stupid but i can't seem to figure it out.

    Document DPI vs. Save for web vs. preview. Make sure to always work in 72 DPI and you'll have a lot less problems to get predictable results. Also use the align to pixel grid options to avoid semi-transparent gaps and edges, where applicable...
    Mylenium

  • Saving Images for Web

    Hi,
    Whenever I save images for the web they seem to loose the richness of their color. I've not noticed this until working on a particular project that involves resizing and preparing images of artwork for a website.
    The images are in sRGB color profile and I am "saving for web and devices" with ICC checked and optimization at 70. Still, the images look a bit faded overall. Is there anything else that I can do to retain the color?
    Thanks!

    I am wondering why my advice was any worse than yours. I admit I mistakenly suggested Monitor RGB instead of Windows RGB but as far as I know sRGB is the default for most monitors. This would put them all pretty close. Am I missing something?
    I would think that having someone set the images with icc profiles and then adjusting their own browser to correctly display such images would cause the exact same problem you say my solution does. It would give the image editor an impression of the image that nobody else is going to see. I don't know anyone that uses icc profiles for web work. In general I don't think you will find many people who have set their browsers to correctly view images that have these profiles. So it seems like someone that has will be thinking the images look great on their system but not on someone else's.
    If someone may eventually repurpose these for print then worry about icc profiles for the printer. It seems like a huge waste of time for anything that is purely on screen.
    I am not trying to battle with you over who is correct I just want to understand what your saying.

  • Trouble saving images for web in CS3

    Hello All,
    I am trying to make buttons, etc. in Illustrator CS3 then saving them for web stuff as either gif's or jpg's. Everything was working fine for a while - the images and text looked great. Mid project the images and text started becoming super pixilated. No matter what type of image I tried to save it as, or what quality they're set to they're very jagged, grainy and awful looking! I don't think I've changed any setting and wracked my brain and the forums, FAQ's, help for a solution to this. Just seems like it came out of nowhere!
    Thanks in advance for any advice and councel!!

    I am wondering why my advice was any worse than yours. I admit I mistakenly suggested Monitor RGB instead of Windows RGB but as far as I know sRGB is the default for most monitors. This would put them all pretty close. Am I missing something?
    I would think that having someone set the images with icc profiles and then adjusting their own browser to correctly display such images would cause the exact same problem you say my solution does. It would give the image editor an impression of the image that nobody else is going to see. I don't know anyone that uses icc profiles for web work. In general I don't think you will find many people who have set their browsers to correctly view images that have these profiles. So it seems like someone that has will be thinking the images look great on their system but not on someone else's.
    If someone may eventually repurpose these for print then worry about icc profiles for the printer. It seems like a huge waste of time for anything that is purely on screen.
    I am not trying to battle with you over who is correct I just want to understand what your saying.

  • Saving images for web - is there an aperture equivalent to adobe sfw?

    I'm the web designer for a small school. Aperture has been a godsend for keeping track of my work, but I want to learn more about how to use it. I want to pick the brains of you web designers out there...
    When I export an image to save to our webpage, I usually use Photoshop CS2's "Save for Web" dialogue. This works, but means I have to export out of aperture, open in photoshop, then save for web. I'm trying to streamline the process and was hoping there's a way to do this in aperture. Let me give you a scenario...
    If I export an image in ps that is 400x400 at jpeg quality 7, it is ~30KB in size. If I use aperture's "Export Version" and check 400x400, no metadata, jpeg 7, I get a 100KB file. This is no good for my web pages. So... is there something in there that will get me the same small files, or am I stuck with adobe???

    Interesting, yes - Aperture's export appears to create resource forks for the files. I'm guessing this is to hold the preview image.
    I've just exported some images, and in the Terminal, with 'ls -l', they show up as 17k. In the Finder, they're 76k.
    I created copies using 'ditto --norsrc', and the copies are now the smaller size in the Finder too.
    Quentin

  • Saving Illustrator Image for Web

    I have a simple logo that I'm trying to save for use on the web. The original has a transparent background but the edges are white so I have included an image with a dark background for reference. The challenge here is that the lines don't look smooth. I have tried setting AA to none as well as Art and Type Optimized. I've also tried blowing the image way up in Illustrator and scaling it down in the "Save for Web" Dialog box to match the size I need for the web.
    In Illustrator the white lines are smooth and clean. When I save for web (or export at 300DPI) they are either blurry or blocky depending on the AA settings and never smooth. I've seen other vector art done in Illustrator that is smooth and clean, I just can't obtain the same results.
    Thanks in advance for any help.

    a screen-capture will only save your image to the monitor's resolution which is typically between 72dpi and 96dpi depending on if you're using Mac or Windows.  I have found my Macbook Pro display resolution to be sharper than my HP tablet resolution though the pixels per inch are the same.  I have found that to be true for the Macbook Pro vs my 30-inch display as well when viewing webpages.  For some reason Apple has a sharper display.  If you export your Illustrator document to a bitmap image with a high resolution such as 300dpi you will have a sharper result, though it won't be as sharp as a vector format file, such as PDF (Not Photoshop PDF, though--Illustrator PDF).  Vector formats redraw the information based on mathematical equations which represent your drawing each time you upscale or downscale the drawing by zooming in on it.  You will find this to be true with "Scalable Vector Graphics" which is the .SVG file format .  It is not very popular currently because not every browser supports displaying SVG, though I have heard that this will change in the future with Internet Explorer 9 and other browsers.  I think Apple Safari currently supports SVG.  If you export your file to SVG it will export the file and an html file which is used to render the SVG xml data.  In short it is similar to publishing a webpage of your drawing or publishing a SWF file into an HTML document from Adobe Flash Pro.

  • Illustrator CS5 PDF Dimensions Incorrect - 72dpi for web

    Issue in a nutshell: I'm wire-framing sites in Illy CS5 for it's snap to pixel grid features. I have my document set up to use pixels as units, raster effects at 72dpi, and RGB color. So as far as I can tell everything should be formatted correctly. The issues arise when I save the comps to PDF so I can e-mail them to clients. Two things happen, from what I can tell so far, that are most likely related. First, the PDF artboard size doesn't match the Illy artboard size. Comparing 100% zoom size side by side on each, the PDF appears to be 33% too large (i.e. they look identical when the PDF is at 75% zoom and Illy at 100%.) Second, what I thought was a separate problem originally, when placing PSD's at 72dpi they look crisp in Illy and Photoshop but appear blurry when saved as PDF (I'm assuming because of the 33% scale distorting them.) When saving the PDF I've tried using "Smallest File Size", "High Quality Print", and some custom settings (downsampling images to 72dpi) just to see if I can get anything to work. Everything comes out oversized though. Also, I know there are options to export as .png, .jpg, ect... and that you can "Save for Web and Devices." I want to avoid using these if possible because they tend to be slow, don't favor multiple artboards, generally handle text poorly, and are not as good as a PDF for emailing to clients for review.
    In the reading I've done searching for a solution it looks like most people have their artboard or PDF preferences set up incorrectly. Usually resulting in a drastically larger or smaller image, roughly 4 times, because the file is being saved at 300dpi instead of 72dpi. What throws me for a loop is the 33% scale because I'm not seeing a direct relationship between print quality dpi and web dpi mussing things up. There must be some setting or box I'm not checking to save the file correctly, but am not sure where to go about it.
    Thanks for all your help, and let me know if you need any more info. 

    Arnbly,
    Forget monitor resolution. It has nothing to do with monitor resolution. Discussion of monitor resolution just confuses the issue.
    Comparing 100% zoom size...
    That's the key.
    You are using two different applications. (Never mind that they are published by the same software vendor.)
    Regardless of your monitor's specs, it's neither the monitor's dot pitch (102 PPI) nor its pixel count (1920 x 1080) that makes Illustrator's display of 1" smaller than Acrobat's on that same monitor. It's how many monitor pixels (on any size monitor) that the two programs use to render a representation of a real-world inch at 100% zoom.
    Illustrator always assumes 100% of one inch of actual linear measure in the document corresponds to 72 monitor pixels. In other words, at 100% zoom, it uses 72 pixels to "paint" an inch. When set to Inches, the major tickmarks of Illustrator's rulers are 72 monitor pixels apart, therefore display smaller (take up less of your monitor's space) than the rulers do in Acrobat.
    Reader (and Acrobat), by default, assumes 100% of one inch of actual linear measure in the document corresponds to 96 monitor pixels. In other words, at 100% zoom, it uses 96 pixels to "paint" an inch. When set to inches, the major tickmarks of Acrobat's rulers are, by default, 96 monitor pixels apart, therefore display larger (take up more of your monitor's space) than the rulers do in Illustrator.
    In a nutshell, it boils down to this: Zoom is just the currently-displayed ratio between real-world measure and number of monitor pixels used to paint a picture of it. Illustrator and Acrobat (by default) simply label different zoom levels to be "100%". Illustrator clings to the MacOS convention of using 72 monitor pixels to paint an inch-worth's of page content. Acrobat's default uses the Windows convention of using 96 monitor pixels to paint an inch-worth's of page content.
    Neither one necessarily matches physical reality. That is, even without switching between programs, if you hold a ruler up to any given monitor displaying a given application, what the software labels "1 inch" at "100%" will quite likely not match your physical ruler. Obviously, for example, if you view your PDF on a cell phone and zoom to "100", the display will measure in real-world physcial measure much smaller than the same PDF does on your laptop, which will likely in turn be smaller than when displayed on your desktop--even if all three devices have Acrobat zoomed to "100%."
    As you can see above, Illustrator's "72 pixels to paint an inch" uses less of your monitor's space to display an inch at 100% zoom, but shows less detail because it has fewer pixels (72 x 72) available for rendering that square inch . Acrobat's default "96 pixels to paint an inch" takes up more of your monitor's space to display an inch at 100% zoom, but shows more detail because it has more pixels (96 x 96) available for rendering the same square inch.
    The above screenshots, however, are of vector-based artwork. If the artwork were a raster image, display quality , not just size, would also differ between the two programs when zoomed to 100%. The display would be sharpest when the actual number of pixels contained in the scaled-to-one-inch image matches the number of monitor pixels that the program displaying it uses to render an inch. So if the above artwork were a 96 x 96 pixel raster image scaled to 1 inch on the page, its display would be better at 100% in Acrobat than in Illustrator. If its were a 72 x 72 pixel raster image scaled to 1 inch on the page, its display would be better at 100% in Illustrator than in Acrobat.
    So to make your PDFs display at the same size as your Illustrator documents at 100%, set your Reader (and/or Acrobat) display preferences to what Illustrator considers an inch:
    But understand: Pixels Per Inch means nothing to a web browser. Web browers ignore PPI. They just display image pixels to monitor pixels, 1:1. So if your client is on Windows (by far more likely than not), Acrobat's default setting of 96 PPI is going to be more representative of the size he sees your web-destined design when viewed in his web browser.
    JET

  • Driving me nuts: Working with sRGB images for web

    Good day ladies and gentlemen, I have a problem that's driving me nuts:
    Basically, I want to create a graphic (a logotype) that is going to be used on a website, so I've learned that if I want to create anything for the web, I have to use the monitor color profile instead of the standard sRGB 2.1 because otherwise everything I make in PS will look completely different when opened in a browser or anywhere else, which I learned the hard way.
    Now, as long as I only create original content with that kind of color settings - it works. The stuff I make in PS looks the same in a browser. However, as soon as I want to use a photo or in this case a separate graphic with the sRGB color profile - everything starts to fall apart. Everything sRGB I try to import into my non-profiled work turns bleak and with a yellowish tint.
    If I change my working color profile to sRGB the photos look like they should, but then instead all my original content will still look completely wrong in a browser or any other application.
    I don't believe it HAS to be this way, since there are so many websites that seem to be able to look great and have rich, good-looking photos in them at the same time. I mean, there must be a solution to this problem, no?
    I'm using a MacBook Pro (Late 2008) with the 9400M/9600M GT and a Benq EW2430 external monitor over DVI. Mac OS X 10.6.8 Snow Leopard. Photoshop CS5 with the latest update (12.0.4 I believe?)
    Big thanks for any help. It would be greatly appriciated. Let me know if posting any screenshots would help solve the problem.

    try this (if you want to)
    first highlight the OEM default monitor profile for your monitor in Displays> Color> Display Profile
    reboot (and confirm the profile is still highlighted there)
    then drag this PhotoDisc tagged sRGB image to your desktop and open it in Photoshop
    USE THE EMBEDDED PROFILE (or Edit> Assign Profile: sRGB to be sure)
    at that point the color should look correct (exactly as it looks in Safari here - if it doesn't look exactly correct here in Safari, it is because you have a bad monitor profile)
    then in Photoshop: Image> Duplicate (to see two same files side by side for a comparison)
    then on one image: Edit> Assign Profile (the monitor profile you have loaded in Displays)
    be sure to set the profile in the bottom left (see below) so it displays (so we can see them in your screen shot)
    THEN TAKE A SCREEN SHOT of the two windows side by side and post it here
    (Command+Shift+4 and drag the area you want captured)
    If I understand your advice right, you suggest that when I'm creating
    stuff for the web, I should always, always use sRGB as my working
    space? But then on export I should just not embed the profile, correct?
    sRGB is the only color you should ever post on the Internet for web viewing
    always CONVERT to sRGB before saving for the web (if it is not already in the sRGB color space) ie, leave that option checked in Save For Web Devices
    i think most people don't embed the profile in web images, but this was hit on succinctly above post 13:
    There is no true color management on the web. As different browsers offer different types of CM support, the
    best that you can do as a designer is to convert to sRGB (if not
    already) and save color-critical images with the embedded sRGB profile.
    That's the general rule.

  • I am done editing in Develop; how do I save edited images for web?

    I get the import and development options in Lightroom but I was told by a LR representative when I called for assistance that LR does not retain any data.  So, if I import photos from my camera (NEF files) and edit in Develop; where do I save the edited photos and how can I adjust them for optimum quality on the web?  It seems that there are instructions on how to import and save photos from your camera, etc. but once you modify the photo using Develop, is the original then modified as well?
    Sorry for the question, but I have modified several photos using the Develop Option and hate to lose all my work.  I am lost as what to do now in order to save my edits.  Ugh!
    Thank you to anyone who can help!  I am a MC Windows user if that helps.

    Editing in develop is totally non-destructive. All your develop settings are saved automatically in the LR database (catalog)
    For web usage select thumbnail(s) of your images in the Library and click Export. Choose jpeg, size, quality and resolution of 72 and set color space to sRGB. Add sharpening if desired. Choose a folder, sub-folder or desktop and export. Your jpeg copies will be ready to upload from your chosen folder when the export completes.

  • Save images for Web?

    hi
    i would like to ask you,why when i save images for Internet
    (for my web portfolio) from Photoshop thought Save for Web and
    import them in Flash they appear with rough ends ,not straight and
    clear as in the original version ,please? I m saving them in couple
    of versions some with Hight quality or medium but its all the
    same....
    please help me
    what could I do that it doest occur that thing,please
    Thank you

    Are you rotating them once you import them into flash? They
    will render with jagged edges. If you need images at an angle, I
    would rotate them first in Photoshop then import them into flash,
    also make sure under publish settings, you set you image quality to
    high, of course this will increase the overall file size of your
    swfs but give you better image quality. Hope this helps...

  • Converting a pages document into a .jpg image for web

    I am trying to convert a pages document into a .jpg image for uploading to idisk. When I drag to iphoto, then export, the image is really small even when I use the large size on the jpg photo export. Is there an easy way to do this..... I am trying to upload it to idisk then link it to craigslist.
    Help! It worked a couple of months ago!
    Thanks
    John

    A better way (I think) is to export or Print your Pages document as a PDF & open that PDF in Preview. Use the selection tool to select the area you want. You can crop & save as .jpg, but I recommend going to the File menu in Preview & choosing New From Clipboard to make a new file. This is because some programs, Pages in particular, will always "see" the unselected area & paste the whole thing. I also suggest using .png rather than .jpg. .jpg is a "lossy" format, .png will be much clearer.

  • Resize large images for web?

    Man I feel so dumb having to post questions here, i really look to solve these myself and usually can in just about any software program i've used for 20 years, thats my only frustration with LR. The help system just hasn't been developed fully. Oh and thanks to all of you that help here and especially Ian Lyons for the Shortcuts pdf...what a life saver that is!
    OKAY SO ON TO MY POST THIS WEEK> i was getting nice large size Web gallery images and now all of a sudden they are way too large for the client...where the heck do you adjust the size? "Image pages size" doesn't do it, seems like there should be something with "Large Images," but its only got quality, metadata and copyright.
    Thanks in advance for whom ever lends a hand!

    I'm pretty sure you had it right with the "Image pages" and the size slider. I am currently cranking out hundreds of images from a wedding shoot this weekend, and my "large" images are being produced at the 900 pixel max size I have in this dialog.
    Set it to whatever you need, then click an image in your preview to see the size applied.
    If all else fails - restart the app (but I'm sure you already tried that.)
    peace,
    Tormod

  • Creating Images for Web, question about settings, etc.

    Okay before someone tells me "use the search function or google", let me say this...i already have.
    I am looking for a guide or anything to ALL settings and recommendations for photoshop cs4.
    I find different examples and such but nothing that is "great" and exactly what I need.
    When creating a new file that will be used for the web.  Logo, site graphics, etc. what are the best
    settings when creating a new document?  recommended settings for anything from the resolution, color mode
    to the "pixel aspect ration" under advanced.
    Basically I just need to do this part my self, i am pretty familiar with photoshop but just never took the time to actually know 100% of the best
    settings that i should use. 
    I just want to be able to create the high quality images i can for my website,
    I use .png for the most part {because i need transparency for several items}.
    but I notice that alot of times it has that little bit of blurryness to it, i tried messing with the resolution, i tried resize, i tried alot of things.
    my BIGGEST frustration and what ultimately led me to come to these forums was the use of the font, no matter what , my font always always always looks a bit blurry.  what can i do to take this effect of blurryness away?
    any and all help is appreciate and i give a thanks in advance!

    The best setting for the issues you describe is to work on your art in Photoshop at a 100% view and to place in a web page at 100%. Do not try to scale the images with HTML/CSS.

Maybe you are looking for

  • Since updating my airport utility app to iOS 8, it can no longer see my base station and will not connect to wifi.

    Since updating my airport utility app to iOS 8, it can no longer see my base station and will not connect to wifi. My son's 4s with an older version of the app sees it and connects fine, so I know it's working. The internet works fine for everyone el

  • IPod won't display in iTunes

    Recently I started having problems with my iPod skipping songs - it would show the song, but skip right over it to the next song when I tried to play it. This didn't happen with all songs, but quite a few of them. I used the restore in iTunes to rest

  • Error 1073807253

    Hi guys! I´m back with another question. When I try too recieve my my signal in the waveform chart a get an error It says: "Error 1073807253 occured at VISA Read in Basic Serial Write and Read.vi Possible reason(s): VISA: (HEX 0xBFFF006B) A framing e

  • Getting Key Size via SSL Certificate

    Good Day, I am writing client server with SSL. I want to display certificate information for the client, so I am writing a popup window. I can't figure out how to get the size of the key used (in this case RSA). I want to display. for example. "RSA (

  • My URL has been duplicated since moving my site from another Mac

    When I originally made my company site it was just a normal www.website.com and thats how it appeared in the address bar.  I then moved the site to another Mac (cant quite remember the steps I used) and did some updates to it and republished it and n