How can I sharpen the edges of my image?

A newb to PS here... How would you smooth pixelated edges to achieve sharp edges as in the below image of a hinge? Thx.

You can place the low res image in Illustrator then using the Pen Tool to draw white shapes around it, essentially hiding the jagged edges.
Alternatively, you could upsample the low res file in Photoshop and do the same thing there with its vector tools.
To get smooth lines you need a high res image, which your file is not. By a long shot.
The best solution would be rephotographing the product at a high resolution.
Where is this picture going? (web? printed catalog?)

Similar Messages

  • How can I make the edges of the JSC component curved?

    It is a very common practice to make the edges curved in web development. Curved edge looks attractive and professional. (for example see blog.com)
    How can I make the edges of the JSC component curved? For example, consider Textfield component, how to make the the sharp edges smooth and curved?
    Thank you very much.

    Follow the steps below implement rounded edges for tabs in a tabset component:
    1)Create 2 images: level1_selected.jp and level1_deselct.jpg to be used as the background for these tabs. Thse images can be easily craeted using windows paint software. Just ceate a rectangular image of size 200X30 and draw a rounded rectangle on it.
    2) Redefine the following styles in your application stylesheet(originally defined in css_master.css)
    .Tab1Div td.Tab1TblSelTd {
         background-color:#EDF5F8;width: 200px;height:40px;background-image:url(images/level1_selected.jpg)
    .Tab1Div td.Tab1TblSelTd {
         background-repeat:repeat-x;background-position:left bottom;border-bottom:none
    .Tab1Div td {
         background-color:#EFEBEF;width: 200px;height:40px;background-image:url(images/level1_deselect.jpg);border:none
    .Tab1Div td {
         background-repeat:repeat-x;background-position:bottom left
    a.Tab1Lnk:link, a.Tab1Lnk:visited {
         display:block;padding:8px 15px 0px;font-weight:bold;text-align:center
    Results: By doing this you'll have the selected and unselected tabs show up with rounded egdes and also the selected tab will look bigger than the unselected tas making it more prominent.

  • How do you smooth the edges of an image

    Hi,
    How do you smooth the edges of an image, like the question mark edges?
    Regards Peter

      You could duplicate the image (Ctrl+J)
    Then apply some blur (Filter >> Blur >>Gaussian Blur)
    That will blur the whole image so apply a layer mask and invert (press Ctrl+I)
    Set foreground color chip to white and select the brush and choose a very small diameter. Then brush gently over the edges to reveal the blur.
    You can switch the color chip to black to undo a mistake then back to white to continue.
    Alternatively simply select the blur tool from the tools pallet (keep pressing the R key to tab tool choices) and blur the edges as wanted. It’s a little more crude but will probably do the job.

  • How can I set the size of an image in java?

    How can I set the size of an image in java? I have to choose the width and height of image...thanks to everybody...sorry for my english :-)

    Hi 43477
    Can you provide more details, do you want to setsize to display an image on a screen of when saving image etc?
    PS.
    There is a good invention called googlegoogle is good, but sometimes it's better to use more specific search, there is a search field avove on this page :)

  • How can I get the resolution of an image file in JSP?

    how can I get the resolution of an image file like jpg,gif,png in JSP ?

    Hii,
    If by the resolution, u mean size..this is how u can come to know....
    String add = "path/to/some.jpeg";
    javax.swing.ImageIcon chain = new javax.swing.ImageIcon(add);
    int height = chain.getIconHeight();
    int width = chain.getIconWidth();
    Hope that helps.
    regards
                   

  • How can i reduce the saturation of a image to make it almost transparent ?

    how can i reduce the saturation of a image to make it almost transparent ?

    You're talking about two different things:
    "Saturation" means the amount of colour, so you would use a Hue/Saturation adjustment layer to lower the saturation to make the image (or layer) appear more "black and white".
    "Transparency" is set by reducing the value of the "Opacity" in the Layers panel.  If that Opacity adjustment isn't available for the layer you want to make more transparent, first double-click on the layer to change it from a "Background" layer to a regular layer.
    Ken

  • Rotating an image gives black edges, How can I make the edges white?

    Hi I used the following code to rotate an image:
    // The "ShiftImageByDegrees" class.
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.awt.image.renderable.*;
    import javax.imageio.ImageIO;
    import javax.media.jai.*;
    import hsa.Console;
    public class ShiftImageByDegrees
        static Console c;           // The output console
        public static RenderedOp rotate (RenderedImage image, double ang)
            ParameterBlock pb = new ParameterBlock ();
            pb.addSource (image);
            pb.add ((float) (image.getWidth ()) / 2);
            pb.add ((float) (image.getHeight ()) / 2);
            pb.add ((float) ang);
            return JAI.create ("rotate", pb);
        public static void main (String[] args)
            c = new Console ();
            // Doing for every single image:
            File folder = new File ("Images/");
            File[] listOfFiles = folder.listFiles ();
            for (int i = 0 ; i < listOfFiles.length ; i++)
                if (listOfFiles .isFile ())
    c.println ("Image: " + listOfFiles [i].getName ());
    try
    // Load Image:
    String imageName = "";
    RenderedImage image = ImageIO.read (new File ("Images/" + listOfFiles [i].getName ()));
    RenderedImage outputImage = rotate (image, 0.03490658503988659);
    ImageIO.write (outputImage, "bmp", new File ("hello.bmp"));
    catch (IOException e)
    // Place your program here. 'c' is the output console
    } // main method
    } // ShiftImageByDegrees class
    The above code goes to a directory named Images and finds any images and rotates it by 2 degrees (i.e. 0.03490658503988659 radians) and writes them as hello. The rotate method gives the image correctly rotated but the problem is that the edges are black. I would like to make the edges white. The edges are defaulted as black I assume but is there a way I can change that to white?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Never mind. Solved it by negating the source image first.

  • How can I soften the edges of a picture

    I am trying to create a soft white frame around the outside of the picture. How can I do this. Thank you. I have Elements 10

    There are several ways to do this.
    Try Filter>Correct Camera Distortion, and work the Vignette sliders.
    If this is not what you are after, please point to a picture with the desired effect.

  • How can I extract the metadata from multiple image files into a .csv?

    Hi.
    I'm looking for what I believe is a simple task but I am not sure how to go about it. I want to get the relevant data (seen in the screen grab below) into a spread sheet. I need to get the File Name, Size, Dimensions, Resolution and Kind into the spreadsheet so I can better analyze the data for my purposes. I have tried to find EXIF and IPTC extractors but only come across products that show me the info with no way of transferring it. I figured there must be a way to do this in the Finder. Maybe it's a simple Automator task (which I am not very good at) or a Script.
    Can anyone guide me thru or suggest a tool that would work?
    I was given a suggestion in another Disscussion to use a Plug-In for iPhoto. I found an old one but it dosnt have all of the metadata I need. It's missing the File Name and Resolution as options.
    http://www.tc.umn.edu/~erick205/Projects/Metadata%20Export/
    Thanks,
    Stephen

    Nevermind, I found it.
    +Inspector > Metrics > File Info: > drag the file's icon to the desktop+
    cheers

  • How can I change the color of interactive image label box background.

    Interactive image labels are a bit overwhelming in appearance. Can I change the label background color or make it partially transparent? I have tried several things and looked this up on Lynda.com training but no info.

    don't know how much this might help but you can change some colors using the Inspector as follows:
    from the text menu you can control paragraph and character colors, from the text menu you can control the text color.
    hope this helps...

  • How can i change the DPI of an image to 400 in illustrator?

    I'm very stuck with trying to change the DPI of an image to 400 so that it is ready to print and the resolution will be fine once printed but i have no idea how to do this in illustrator?

    dpi,
    If you are talking about a raster image placed in Illy, you can only change the size to get the desired PPI/DPI.
    If you are talking about raster effects or a raster image created in Illy, you may set the desired resolution of raster effects, or the desired resolution or total pixel x pixel size of the exported/saved image.
    If you are talking about pure vector artwork, the resolution depends on your printer (driver) (settings), as Doug said.

  • How can I change the view of an image

    Hi!! I want to ask if anybody know how to open a document from a content area not with the explorer, but with another image viewer.
    Thanks in advance!!

    dpi,
    If you are talking about a raster image placed in Illy, you can only change the size to get the desired PPI/DPI.
    If you are talking about raster effects or a raster image created in Illy, you may set the desired resolution of raster effects, or the desired resolution or total pixel x pixel size of the exported/saved image.
    If you are talking about pure vector artwork, the resolution depends on your printer (driver) (settings), as Doug said.

  • How can I retain the high resolution of images saved in a PDF?

    I'm using the trial version of Acrobat XI. The images are 1440dpi but always save ate 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.

    Many thanks for your reply CtDave
    Unfortunately I can't find anything useful in Preferences >Convert to PDF >JPEG >Edit Settings
    There are settings in Distiller that look more useful, but it appears that before they can be applied the Acrobat file has to be saved. It seems possible that it needs to be saved as a PostScript file and then converted to a PDF in Distiller, but this doesn't make any difference the way that I've (probably wrongly!) done this
    .. I've changed the image in Acrobat and saved the file as .ps, but when I open the .ps file in Distiller with the new settings (Downsample Color Images: Bicubic Downsampling to 1400 pixels per inch for imahes above 1400 pixels per inch) and convert it to .pdf I find that the image is still reduced to 120dpi

  • How can I refine the edges between colors?

    I have an image with pixelated edges and i want to make those edges sharper so that you dont notice them at 100% zoom. I tried the sharpen tool but it does not do what I want.
    In this sample image, I manually refined the left half of the pixelated diagonal line.
    (The top right is what I want to change so that it looks like the part in the bottom left, which I did manually)

    I think you miss understand what sharper means. It will not add pixels to remove stair-stepping. If anything it would make it more pronounced.
    A blur will blend the two colors together to make it look like there is no edge, So that would not really work either.
    Does this image have to be a certain size? Reducing the final print size will make it look sharper and less stair-stepped. But none the less they will still be there.
    The new algorithm that will be in the next version of photoshop will help with this issue, but still does not totally solve it.
    @all new users,
    And this is why it is always best to start with the highest resolution possible, so you don't run into this issue.
    @Alex,
    You could try one of the algorithm's for upsampling and see if they help, try one, undo try the next and so on. No promises, but maybe one of them will be worth settling on.
    If you know that the area is a solid color, you could use the pen tool to create the edge then fill the center with that color, thats the only way I can think of to recreate that area with a sharp edge. But if it is lots of small areas, then one of the other solutions would have to be settled on. (If you do recreate the area with the pen tool make sure your image is high enough resolution to make it worth the effort {In other words if the resolution is too low, your wasting your time} )

  • How can I get the best resolution for images in the pdf?

    When I magnifies images on the iPad PDF mode, the image loses a lot of quality.
    How I can improve them to be viewed without pixel?

    stupid problem. I don't know why Adobe dosent fix it.

Maybe you are looking for

  • System Reboot, now my ipod doesn't recognise my Ipod

    Hi all I did a system reboot on my laptop yesterday so I backed up all my music on my ipod. When I plugged my ipod in this morning it gave this message: The Ipod "Casey's Ipod" is synced with another iTunes library. Do you want to erase this Ipod and

  • Network Conenctivity Error in 11.1.2

    Hi All, I am able to login Admin Console.However when I am trying to connect Essbase server i am getting below error netwrok error [10061]:Unable to connect to [ServerName:1423]. The Client Timed out waiting to connect to Essbase agent using TCP/IP.C

  • What do I have to do to order a photo book from Portugal? There is no photo service in Portugal!!!

    I'm living in Portugal and I have created a photo book with iPhoto 11 with all the instructions in Portuguese. When I was about to order it, I couln't finish my order because there no photo service in Portugal. I'm very disappointed !! There is any p

  • Customer Fields values in FAGLL03 not displayed in background job

    Hi Experts My client has implemented customer fields in transaction FAGLL03 through enhancement. When I run the report in background, these fields are appearing but the values are missing, e.g., the columns are displayed in blank. Can you help me wit

  • Attribute QUEUE_NAME is Initial

    Hi All, My Scenario is Webservices-XI-BW... While sending data from webservices the response i get is QUEUE_NAME is initial... this i am getting since i am using QOS--EOIO, I have gone through weblog /people/sap.india5/blog/2006/01/03/xi-asynchronous