How keep high resolution in enlarged image?

Hi!
When I insert my logo in Dreamweaver, I first need to give it  a certain size in Photoshop (if I fix the size in dreamweaver, the logo doesn't get sharp). But I would like logo to have a better resolution when my webpage gets enlarged (for example when reading it in mobiles). I've seen some pictures on webpages that keep their resolution even when you enlarge the webpage. How can you do that?
Greatful for help!
Milda
Message was edited by: mildar
PS. Does it help if I make the logo in Illustrator instead?
Message was edited by: mildar

Hi
Adninjastrator wrote -
it might be worth noting that mobile device resolution is much greater
than 72 or 96 px/in. The iPhone 4 for example has 326px/in.
Murray is correct with his 72ppi, (this is for Macs) and 96 ppi, (this is for windows).
New Apples iDevices do have a screen resolution of 326ppi but not the safari browser for iOS, which still conforms to the macs ppi, (72). It' a similar situation to comparing your system/monitor screen resolution with your browsers screen resolution, you may have a HD screen but the browser still uses the browsers ppi for your system.
PZ

Similar Messages

  • How can you save keynote slides as high resolution (300 dpi) images?

    Apparently there is a way to save powerpoint slides as 300 dpi images, with some finagling, but not the mac version.  Does anyone know how to do this in keynote?  Or is there a relativley easy way to do it with free/cheap software?  I can increase the dpi in photoshop, but it doesn't produce crisp images for obvious reasons.

    how can you save keynote slides as high resolution (300 dpi)
    to save individual images from each slide in Keynote;     file > export > images > TIFF (for optimum quality)
    You are using the wrong terminology to describe creating an image file
    - dpi ( meaning dots per inch )  is the measurement used in printing to create the number of print dots per inch that will be deposited on to physical media like paper or film   This is done in the printer settings box of the print driver and is dependant on how the individual printer can print..
    ppi ( meaning pixels per inch ) is the measurement you need to use when creating the number of pixels in a digital image file. You establish image resolution in Keynote using the inspector;     
    Keynote > inspector > document > slide size
    I can increase the dpi in photoshop, but it doesn't produce crisp images for obvious reasons.
    You can resample images in editing applications such as Photoshop or Painter but what you are doing is adding non image information to the image to increase pixel count, this is called noise. As you state this is not the procedure to use in your situation.

  • High Resolution HTML to Image Conversion

    I am rendering a html file using JEditorPane and painting the pixels to a BufferedImage object. How can I make a higher resolution than 72 dpi.
    Here is my current program
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.JEditorPane;
    public class Main {
        public static final double WIDTH_INCHES = 11 - 0.5 - 0.5;
        public static final double HEIGHT_INCHES = 11 - 0.5 - 0.5;
        public static final double DPI = 72;
        public static final int WIDTH_PIXELS = (int) (WIDTH_INCHES * DPI);
        public static final int HEIGHT_PIXELS = (int) (HEIGHT_INCHES * DPI);
        public static void main(String[] args) throws FileNotFoundException,
                IOException {
            StringBuilder htmlCode = new StringBuilder();
            FileReader htmlFileReader = new FileReader("test.htm");
            BufferedReader htmlFileBufferedReader =
                    new BufferedReader(htmlFileReader);
            String aLine;
            while ((aLine = htmlFileBufferedReader.readLine()) != null) {
                htmlCode.append(aLine + "\n");
            JEditorPane editorPane = new JEditorPane("text/html",
                    htmlCode.toString());
            editorPane.setMaximumSize(new Dimension(WIDTH_PIXELS, HEIGHT_PIXELS));
            editorPane.setSize(new Dimension(WIDTH_PIXELS, HEIGHT_PIXELS));
            editorPane.setBackground(Color.WHITE);
            editorPane.setPreferredSize(new Dimension(WIDTH_PIXELS, HEIGHT_PIXELS));
            BufferedImage image = new BufferedImage(WIDTH_PIXELS, HEIGHT_PIXELS,
                    Image.SCALE_SMOOTH);
            editorPane.paint(image.getGraphics());
            ImageIO.write(image, "png", new File("test.png"));
    }How can I make this program to make a better resolution image?

    I was profiling the application and found that iText was copying the whole image and running transparency checks for the 8.5 by 11 that I was doing at 72x4 dpi.
    I found a way to do it more efficiently and it happens to take advantage of the vector text.
    I used the PdfContentByte.createGraphicsShapes method to get a PDF Graphics2D object and I painted to that instead of painting to the java.awt.image. I did this in combination with disabling double buffering on the JEditorPane
    This is my working code example
    import com.lowagie.text.*;
    import com.lowagie.text.pdf.*;
    import java.awt.Dimension;
    import java.awt.Insets;
    import java.io.*;
    import java.util.Date;
    import javax.swing.JEditorPane;
    import javax.swing.border.EmptyBorder;
    public class HtmlConverter {
        public static void main(String[] args) throws FileNotFoundException,
                IOException, DocumentException, BadElementException {
            StringBuilder htmlCode = new StringBuilder();
            FileReader htmlFileReader = new FileReader("test.htm");
            BufferedReader htmlFileBufferedReader =
                    new BufferedReader(htmlFileReader);
            String aLine;
            while ((aLine = htmlFileBufferedReader.readLine()) != null) {
                htmlCode.append(aLine + "\n");
            convertToPdf(htmlCode.toString(),
                    new FileOutputStream("test.pdf"));
        public static void convertToPdf(String htmlCode, OutputStream output) {
            final long startTime = new Date().getTime();
            try {
                final Rectangle PAGE_SIZE = PageSize.LETTER;
                final float PDF_MARGIN_INCHES = 0.5F;
                final int PDF_MARGIN_PIXELS = (int) (PDF_MARGIN_INCHES * 72);
                final int HTML_DOC_PX_WIDTH = (int) PAGE_SIZE.getWidth();
                final int HTML_DOC_PX_HEIGHT = (int) PAGE_SIZE.getHeight();
                Document document = new Document(PAGE_SIZE);
                JEditorPane htmlEditorPane = new JEditorPane("text/html", htmlCode);
                htmlEditorPane.setDoubleBuffered(false);
                htmlEditorPane.setMaximumSize(
                        new Dimension(HTML_DOC_PX_WIDTH, HTML_DOC_PX_HEIGHT));
                htmlEditorPane.setPreferredSize(
                        new Dimension(HTML_DOC_PX_WIDTH, HTML_DOC_PX_HEIGHT));
                htmlEditorPane.setSize(HTML_DOC_PX_WIDTH, HTML_DOC_PX_HEIGHT);
                htmlEditorPane.setBorder(new EmptyBorder(PDF_MARGIN_PIXELS,
                        PDF_MARGIN_PIXELS, PDF_MARGIN_PIXELS, PDF_MARGIN_PIXELS));
                htmlEditorPane.setMargin(new Insets(PDF_MARGIN_PIXELS,
                        PDF_MARGIN_PIXELS, PDF_MARGIN_PIXELS, PDF_MARGIN_PIXELS));
                PdfWriter writer = PdfWriter.getInstance(document, output);
                document.open();
                PdfContentByte cb = writer.getDirectContent();
                java.awt.Graphics2D g2d =
                        cb.createGraphicsShapes((int) PAGE_SIZE.getWidth(),
                        (int) PAGE_SIZE.getHeight());
                htmlEditorPane.paint(g2d);
                g2d.dispose();
                document.close();
            } catch (Exception ex) {
                throw new RuntimeException("Exception while generating PDF file." +
                        " This may have been caused by a I/O Exception in the" +
                        " output stream", ex);
            final long endTime = new Date().getTime();
            System.out.println("Total Time: " + (endTime - startTime) + "ms");
    }

  • How to maintain high resolution of exported images

    I am working with iphoto 5.0.4. When trying to export (share>export) an image as a 'Full Size' image (3264 x 2448 4.5 MB) to the desktop it appears at that size with 300 dpi resolution. However if I export the same file as 'Scale image as no larger than:' the resolution remains 300 dpi but the size is reduced to 2.4 MB while the dimensions remain the same. And finally if any cropping is performed or if I resize the dimensions of the image, the exported image will reflect the altered size but also the dpi is reduced to 72. What gives? Does that mean that the printed version will only print at 72 dpi? How can I create a smaller size image and still maintain 300 dpi resolution? I thank you in advance for your help.
    iMac   Mac OS X (10.4.5)   iphoto 5.0

    My first thought would be to remove the "Scale all objects ... " vi property.  I have been using LabVIEW for 10+ years, and I always found that function to work very poorly.  I never use it.  At least you could try removing that setting and see if your problem goes away.

  • How can I save a PDF and retain the high resolution of the images it contains?

    I'm using the trial version of Acrobat XI. The images are 1440dpi but always save at 120dpi. The PDF is for the content of a picture book so I need to be able to save them at a minimum of 300dpi. Any help would be very much appreciated.

    Have just discovered that although the properties for each of the photos states 1440dpi they vary from 696 to 2131 pixels on the height dimension of 10cm!
    Thanks to your help in guiding me to the Preflight profiles, I've now at long last produced a file that does the job! Thank you!!!
    I created my file in Word, saved it as a PDF (3.72MB), replaced the images with the original files (Word had made them tiny), then used the Digital Printing (Color) profile to Analyze & Fix the PDF, thus creating a PDF (98MB) that was suitable to upload. There is no doubt a more succinct and less Heath Robinson method but I wasn't able to find it!

  • Actually, how transmit high volumes batch of images to someone? Do not matter what it cost, needs to be easy, without struggle, easy go! Txs

    Do not matter to pay for it! It needs to be easy for uploading from within Aperture if possible, easy for the receiver to open the imagefiles, to download them on theit own computer. I do a lot of pictures when travelling with my friens. They ask me for images but it's to difficult to transmit a batch of high definition images. Can you help me out?

    leonieDF wrote:
    A Shared Photostream would work also.
    Yes, it is really easy to use, only depends on the amount of images you need to share; no more than 1000 images per hour. See the limits here:
    http://support.apple.com/kb/HT4858
    A shared Photo Stream usually works very well for what the OP seems to have in mind -- I use several -- but the shared files are not what one would usually call "high definition images".  If the reduction is size is not a problem, a shared Photo Stream should be tried.

  • How to make high resolution image?

    Hi All, I am in an urgent requirement where I have few .tif images. There size is very high. When I am uploading, there resolution is not good and they are automatically converted to jpg.
    Can some one tell me "How to make this image high resolution image" Is there any setting or tips and tricks?
    Reply immidiatly,

    The original image is in MDM. I think what you may be getting confused by is the thumbnail view. The thumbnail view is automatically generated to give you just a low res view of the original from within MDM, likely for the sake of performance.
    If you go to the Images table and right click on the image and select "view original" you will see that the high res original that was loaded is still there. You can also create image variants through the Console to generate other versions of the original to use for web or print. I don't think you can change the defaults used for the thumbnail.

  • How can you make a pixlated image a higher resolution in Photoshop CC? i have tryed image size but it doesnt seem to work someone please help

    As you can see in the screenshot here ----> Gyazo - b048a0770df6264af1ff398951acd4f9.png I have typed a higher resolution but when I try the pixles never seen to ever go away and it increases the file size every time, is there an easier way? PS: if another adobe cc software is needed to complete this task I have every one so it doesn't have to only be in Photoshop.

    The image has been reduced in size and over sharpened to the point that jaggies artifacts abound.  You will not be happy with the result of interpolate the images up in size increase the number of pixels..   You need to find the original image file from the camera.

  • How to use high resolution image as glyphs in icon editor?

    i want to use a hiigh resolution image in icon editor . how do i use it?

    Icons can be up to 32x32 px in size, so first you need to reduce the resolution of the image. Save as .bmp, .jpg or .png.
    From the icon editor, select Edit -> Import Glyph from File... and choose your image. Done.
    -Benjamin
    CLA

  • Moving high resolution images from PSE6 to Premiere Elements 4

    I am trying to take a pdf map (happens to be of the San Diego Zoo) and insert it into a Premiere Elements 4 (PE4) project to show where we went in the Zoo and then show our family pictures/video in that area
    So I bring the pdf map file into PSE6 and convert it to a jpeg and/or psd file so I can import it into PE4 (which cannot import a pdf). It works fine, but if I don't increase the image size in PSE6 the image becomes super blurry in PE4 when I change the scale (zoom in).
    However, when I do increase the image size in PSE6 and save as either a jpeg or psd so it will be clear at 250% scale in PE4, I get this error message when I try to import it to PE4: "File video dimensions (width/height) too large."
    This happens even when I leave the dimensions (8.5 X 8.176 inches) the same and just change the ppi for the higher resolution I need. It starts out as a 300 ppi image and I get the error message even if I only change it to as high as 500 ppi. (And if I go much lower than that, it's not going to help the resolution enough to be worth it in PE4).
    (btw, the original pdf file is perfectly clear in PSE6 at 1000+% and the converted jpeg/psd are clear enough in PSE6 at 250%)
    So, my question is:
    How do I improve the picture quality in PSE6 so that it's not blurry when I export to PE4 and increase the scale, but maintain the right size that PE4 will accept?
    This might be somewhat of a PSE6 question, but hopefully somebody knows the answer and can help me out! Thanks!

    Joseph,
    In an NLE, you are really only using the pixel x pixel dimensions. DPI/PPI mean nothing, except a larger file size.
    You can set the PPI to 72 and be fine for TV. You might want to bump it up slightly, if you are outputting to a progressive file for display on a computer, but even then, you'll not need much.
    PSD will be as clear a format, as you can get. I'd not bother with any JPG compression, as by the time that you lower the compression settings, i.e. compress less, to keep the quality, you will not have compressed all that much.
    For zooming in, you do not need for the image to be much larger than the preset for your Project. The FAQ's at the top of the page have some good recs. for the exact sizing. If you will be panning, while zoomed out, you'll want just enough extra to allow for that movement.
    Depending on the native resolution of your PDF's image, you should be able to get a reasonably sharp image onto the TV screen. Also, judge the final look of this image on a TV, if that is your final output, as it will appear better, than on the computer screen. I use a DVD RW for this sort of testing and just re-use the discs.
    Last, do all of your re-sizing (as much as is possible) in Photoshop. The algorithms are a bit better than in an NLE. Now, for a dynamic zoom, you have no choice but to use Motion>Scale.
    Hunt

  • Saving an image to a higher resolution from a lower one

    I have photoshop cs6 on my MacBook Pro and downloaded images I'm working on for a friend who needs them for professional use. They're all in 72 dpi so I managed to save them at a higher resolution of 300 dpi, and in Tiff format but when I try to email them the images revert back to 72 dpi. How can I keep the resolution at 300 or higher for email
    Thanks

    I know you haven't asked for advice about the actual re-sampling process, but I can't help myself .
    If the images are for print reproduction or a similar high quality requirement the results are likely to be very poor even if up-sampled to 300dpi. It's OK to down-sample images if the pixel data is there in the first place. If it's only 72dpi and then up-sampled, and even if it looks good on screen, it'll be rubbish in commercial print.
    The exception might be if the actual dimensions of the 72dpi image is large and it is up-sampled to 300dpi but at the same time the dimensions are reduced considerably that should help preserve some quality.
    All that said, if you are using Mail, try selecting Actual Size, as shown in the image (if you haven't already). The option only appears when you add an attachment to an email.

  • HOW DO I RENDER A STILL IMAGE AND KEEP QUALITY

    I'm still in search of help with why High Res. still pictures lose quality when I render.   The images are at 300dpi, roughly 1900x1200 (they vary in size).   I input them fine.  Then, when I go to put them on the timeline - I get a pop-up window asking me to "AutoFix" this clip?  When I say "yes" it drops down the quality and it becomes grainy.  If I say "no" the clip remains looking the same - great.
    But - then when I go to "render" that clip, in the timeline - it drops down in quality and becomes grainy - AFTER I render it.
    HOW DO I USE STILL IMAGES - AND KEEP THEM HIGH QUALITY WHEN I RENDER?
    My Project Settings are; 1920/1080  ---  30fps DROP frame  (should it be Non-Drop?)  --  Capture is HDV and Video Rendering is only marked at "Optimize Stills"
    I'm using Adobe Premiere Elements 11 on a Windows 8 PC
    Any help would be greatly appreciated
    thanks

    joeyMPI
    OK. Let us give this a try. If I go off course anywhere along the line, please let me know.
    1. Open Premiere Elements 11 on Windows 8 64 bit to the Expert workspace.
    A. Under Edit Menu/Preferences/General
    Remove the check mark next to "Show all do not show again messages."
    Set the "Timeline render quality (valid for HD projects)" = "High quality, Slow speed"
    Leave a check mark next to Default Scale to Frame Size.
    B. Right Click the Edit area monitor, select Magnification and make sure it is = "Fit".
    C. Right Click the Edit area monitor, select Playback Quality and make sure it is = "Highest".
    D. Setting the Project Preset Manually to Get the Sharpest End Product Photo Display
    Go to File Menu/New/Project and Change Settings
    In Change Settings, change the project preset to
    NTSC
    DSLR
    1080p
    DSLR [email protected]
    Close out of there.
    In the new project dialog that appears, make sure that you have a check mark next to
    "Force Select Project Setting on this Project". Close out of there.
    E. The project preset that has been selected has a 16:9 aspect ratio, and it will direct the program to set
    up a 16:9 space in the Edit area monitor for editing. So, best results are expected with photos with a 16:9 aspect ratio.
    If an imported photo does not fill the Edit area monitor space, you can try to scale it (zoom in) just to the point of
    getting rid of any black borders. A quick scale can be done by clicking on the monitor screen, and dragging on a handle
    of the photo's bounding box which has appeared.
    But, now for the moment of truth..
    a. You should not have seen any helpful Fix messages.
    b. If you render the Timeline content by clicking on the render button above the Timeline
    what you see should look the same or better before and after the render.
    Also keep in mind, that having to scale up too much can create pixelation.
    300ppi or dpi has no significance in video. Pixel dimensions are the focus. And here, video is 4:3 or 16:9 aspect ratio. In
    this specific case 16:9. It would be a good idea to plan ahead on the sizing of the photos beforehand. As far as I know the perk of enhanced
    sharpness in the end product is associated with just the one project preset that I pointed to in the workflow.
    But, right now, our target is on the maintaining the quality of the photos in the Edit area. And, I realize that you realize
    that no matter how great the resolution of the imports, the imports will be reduced to the sizing characteristic of the export
    preset.
    We will be watching for your results. Thank you for considering the suggestions.
    ATR

  • How to copy objects from Pages (5.5.1) and paste it into Photoshop as a vector smart object with high resolution?

    I recently have bought a new Macbook Pro (Version 10.10.1) with the OS X Yosemite. The computer comes with the new Pages (version 5.5.1).
    Here is the problem: I like to create artwork using the shapes on Pages. Previously, on my old mac, I used Pages 4.3 to create objects, which I would copy then paste to Photoshop and it would become a vector smart object. However, in the new Pages (version 5.5.1), when I copy objects, they would appear on Photoshop as instead, a layer and it would not be in full resolution.
    Also, I know there is nothing wrong with the Pages file itself because I have converted the document to PDF form and it is high resolution when inserted into Photoshop that way.
    Does anyone know how I can copy individual objects from Pages (5.5.1) and paste it into Photoshop as a vector smart object with high resolution as I have done before?
    Thanks!

    ghotiz wrote:
    copy the image and have it in a high-quality PNG format that does not include the background from the Pages document.
    Oh, well if you don't actually need vector objects then it looks like this is possible. As I said earlier, Pages is putting a PNG on the clipboard. I tested it and it does paste into Photoshop as a transparent layer, because I can see the transparent background of the pasted PNG graphic if I either turn off all layers behind it in Photoshop, or if I start a new Photoshop document to paste into but make sure I choose Transparent for the Background Contents in the New Document dialog.

  • How do I get high resolution on my jpg photo

    I have a photo in iphoto that I need to change to high resolution and email it.  HOw do I do that?

    You can not "change" an image to High Resolution - what ever resolution it was created at it the maximum resolution it can be
    the most general way to use the max is to select the photos in iPhoto and export it to the desktop using the highest resolution and quality settings (see the user tip on exporting for details on the options)  and email from there
    LN

  • Whenever i burn photos to a cd from iphoto it does it in a low resolution - how do i make it high resolution?

    I need to print photos in a high quality resolution - my camera resolution can enlarge up to 16X20 in good quality but when i burn from iphoto to cd it burns in low res....how do I fix that? I don't see an option anywhere to indicate resolution...

    As you don't tell us what version of iPhoto you have or how you're burning to disk, I'll guess you're using the Share -> Burn command to make the CD?
    This makes a mini-library on the disk and is designed for sharing with other iPhoto users.
    If you are doing this then I'll also guess that you're printing the Thumbnails from the Data folder.
    Try using the File -> Export command to export the photos from the Library to a folder on the desktop. Then burn that with the Finder.
    If I've guessed wrong post back

Maybe you are looking for

  • Varchar2, empty strings and NULL

    Hi all, When inserting an empty string into a column of type varchar2 - is a NULL value stored in the column by the database? I've seen conflicting reports, and I know that the SQL 1992 spec specifies that empty strings not be treated as a NULL value

  • How to find the spec of Apple dock connector

    Anyone can tell me where to find the spec of the apple dock connector?

  • Problems running  SSL connection using JRUN 4.0/JDK 1.4.2

    Hi, Our project is to run a SSL connection to FedEx. When we test the connection with WebSphere 5.0 test server, it connected and worked. But, when we tested with our environment (JRUN4), exception thrown: The following are the exceptions: ==========

  • Scrubbing videos in iPhoto 9.6?

    I upgraded to iPhoto 9.6 in Yosemite and now I can't scrub my videos.  I used to be able to run my finger across the track-pad while the video was in Pause to slow-mo it forward or backwards.  Does anyone know how this is done in the new iPhoto 9.6? 

  • Hide the value..

    Hi, How to hidden a value in standard report region record on page load? for example below is my standard report region record. A        B         C 1        2         3 4        5         6on page load i want to hide the value 1 and 2 from first rec