Antique Contrast on selected areas of image

I have done this once before and can not for the life of me remember how I done it.
I have an image with the main subject (a car) and the background which I wish to have set to a Antique Contrast type effect.  I think this is what it was called as I placed this text 'AntiqueContrast' in the file name to remind me, but now I can not find anything in the help to show me what I may have done to get this effect.
I either selected the area I wanted to alter or the the area I wanted left alone.
Can anyone help me out here ?

It's the Smart Brush tool, with the "Antique Contrast" choice under "Special Effects":
Ken

Similar Messages

  • Select area of image for enhancement?

    In PhotoDeluxe, it was easy to select an area of any shape (rectangle, polygon, trace etc.) on the image and apply enhancement (e.g. brightness) to just that area. I can't figure out how to do this in Elements 9 - can anyone show me how? I do it all the time to deal with sharp-edged sun shadows in particular.

    John,
    Make the selection with one of the selection tools, e.g.lasso, selection brush tool, magic wand, etc. You should see "marching ants" around the selection, indicating that it is active.
    Go to Layer>new>layer via copy, placing the selection on its own layer. This maneuver is handy in order to adjust the blending mode and opacity of the layer if indicated. With the selection still active, you can refine it via Select>refine edge
    Shut off the visibility of the original layer and apply the change in brightness to the selection.
    I prefer to open an adjustment layer  (e.g. brightness/contrast) above the layer with the selection and link the 2 layers so that I can go back to make further adjustments if needed
    HTH

  • I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    What do you mean a moderator

  • Select a small area and then use the selected area to paint other areas of the image

    Hello
    My problem is a little hard to explain but I try.
    What I want is to select a small area and then use the selected area to paint other areas of the image. Do not know how to do it and if it's stamp tools or pen tools to be used?

    Howdy.
    Sounds like you're looking for the Clone Stamp Tool. Set to Aligned, the sampling point resets when you release the mouse after painting. Untic Aligned and the sampling point stays in the original spot for the next stroke. It's a good idea to clone onto a separate layer with Sample All Layers selected. Then you don't lose original pixels. Allows you a do over later.
    FWIW.
    Peace,
    Lee

  • When using image processor my images to select are grayed out

    when using image processor my images to select are grayed out, when they wernt yesterday? any clues? Have I done something stupid!
    many thanks
    carol

    Nothing to do with professional or not, but I do hope you know where your computer's power switch is. System information can be obtained this way:
    Working with your Operating System’s Tools
    Furthermore we need info where you store your files, what format they are in, where they came from, what you did the last time this worked, if possible...
    Mylenium

  • Zoom the selected area in an image!!

    hi all,
    i heve created a an application in which user can select an area and on an image and then zoom that particular portion but when i zoom it the image keeps on going to the right bottom corner of the screen.I want my zoom to keep the selected area in the center of the screen.can anybody help me in thet.
    thanks
    sangeeta

    hi,
    can u solve ome more problem for me as u seem to be very comfortable in 2d.my problem is that once i'm able to zoom my image ,if i want to zoom it further either on mouse click or selecting a rectangle again on mousedrag,it throws an exception coz i'm not able to get either size or bofferedimage from the once zoomed image.
    do u have any suggestions:
    i'm sending my latest code
    private Graphics2D createGraphics2D(int w, int h) {
    Graphics2D g2 = null;
    if (bimg == null || bimg.getWidth() != w || bimg.getHeight() != h) {
    bimg = (java.awt.image.BufferedImage) createImage(w, h);
    g2 = bimg.createGraphics();
    g2.setBackground(getBackground());
    g2.clearRect(0, 0, w, h);
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    return g2;
    public void update(Graphics g) {
    paint(g);
    public void paint(Graphics g) {
    super.paint(g);
    try{
    t=new AffineTransform();
    //////added 09aug
    Dimension d = getSize();
    System.out.println(d);
    if(!first_paint){
    setScale(d.width,d.height - DRG_YPOS);
    first_paint = true;
    if(!image1)
    Graphics2D g2 = createGraphics2D(d.width, d.height -DRG_YPOS);
    g2.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    g2.scale(zoomx,zoomy);
    draw(d.width, (int)(maxy - (maxy- miny)/2) , g2);
    g.drawImage(bimg, 0, DRG_YPOS, this);
    System.out.println("image drawn for the "+counter+"time");
    counter++;
    System.out.println("counter is"+counter);
    System.out.println("image1 is"+image1);
    file://t= g2.getTransform();
    if(fzoom1)
    g.setColor(Color.red);
    g.drawRect(beginX,beginY,end1X-beginX,end1Y-beginY);
    System.out.println("drawing rect");
    if(fzoom){
    wx=beginX;
    wy=beginY;
    ww=end1X-beginX;
    wh=end1Y-beginY;
    bi = bimg.getSubimage(wx,wy,ww,wh);
    System.out.println("hello 2d");
    System.out.println(wx+","+wy+","+ww+","+wh);
    Dimension d1=getSize();
    Graphics2D g2d = bi.createGraphics();
    // g2d.setBackground(getBackground());
    int w=500;
    int h=500;
    System.out.println(w+","+h);
    System.out.println("g2d"+g2d);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 100.0f);
    g2d.scale(zoomFactor, zoomFactor);
    System.out.println("scale called"+zoomFactor);
    file://zoomFactor++;
    g.drawImage(bi,50,50,w,h,this);
    System.out.println("w,h,bi"+w+","+h+","+bi);
    file://repaint();
    image1=true;
    file://zoomFactor++;
    file://fzoom=false;
    g2.dispose();
    }catch(Exception e)
    System.out.println("exception"+e);
    class IMS2DFrameMouseAdapter extends MouseAdapter implements MouseMotionListener{
    int mx;
    int my;
    int endx,endy;
    int X;
    int Y;
    Point point;
    public void mouseClicked( MouseEvent event ) {
    if(select)
    Dimension d = getSize();
    AffineTransform at = new AffineTransform();
    at.setToIdentity();
    at.translate(((d.width/2) - ((zoomx*maxx + zoomx*minx)/2))
    + zoomx*scrollx,
    (((d.height-DRG_YPOS)/2))+scrolly);
    at.scale(zoomx,zoomy);
    Point src = new Point(event.getX(),event.getY() - DRG_YPOS);
    Point pt = new Point();
    try{
    at.inverseTransform( src, pt);
    catch( NoninvertibleTransformException e)
    e.printStackTrace();
    pt.setLocation(pt.getX(), (maxy - (maxy- miny)/2 - pt.getY()));
    hitObject(pt);
    /*if(fence_zoom){
    fzoom2=true;
    }else
    fzoom2=false;
    public void mousePressed( MouseEvent event ) {
    if(fence_zoom)
    System.out.println("mouse Pressed");
    beginX = event.getX();
    beginY = event.getY();
    repaint();
    public void mouseReleased( MouseEvent event ) {
    end1X = event.getX();
    end1Y = event.getY();
    System.out.println("ENDX---"+endx);
    System.out.println("endy-----"+endy);
    if(translation)
    translatedrawing(endx - startx,endy - starty);
    if(fence_zoom){
    System.out.println("mouse released");
    file://end1X = event.getX();
    // end1Y = event.getY();
    fzoom=true;
    repaint(); file://updateSize(event);
    else{
    fzoom=false;
    public void mouseDragged(MouseEvent event) {
    if(fence_zoom){
    end1X = event.getX();
    end1Y = event.getY();
    fzoom1=true;
    System.out.println("mouse dragged");
    repaint();
    else {
    fzoom1=false;
    public void mouseMoved(MouseEvent event)
    thanks
    sangeeta
    "Gustavo Henrique Soares de Oliveira Lyrio" wrote:
    I think you are using the wrong drawimage method. If you have the selection retangle coordinates, you will need a method that draw this selection in a new retangle selection (your canvas or panel)
    Where goes my paintMethod:
    protected void paintComponent(Graphics g)
    g.drawImage(image, START_WINDOW_X, START_WINDOW_Y, WINDOW_X, WINDOW_Y, px1, py1, px2, py2, this);
    Take a look in the drawimage methods in the java web page. I think it will help.
    []`s
    Gustavo
    ----- Original Message -----
    From: sangeetagarg
    To: Gustavo Henrique Soares de Oliveira Lyrio
    Sent: Thursday, August 16, 2001 9:14 AM
    Subject: Re: Re: re:zoom in 2d
    i'm sending u the paint method.but still i'm not able to select the desired area .it zooms the while image.tell me if there is any error in the code.
    file://if(fence_zoom)
    if(fzoom1 )
    if (currentRect != null) {
    System.out.println("hello");
    g.setColor(Color.white);
    g.drawRect(rectToDraw.x, rectToDraw.y,
    rectToDraw.width - 1, rectToDraw.height - 1);
    System.out.println("drawing rectangle");
    fzoom1=false;
    if(fzoom)
    bi = bimg.getSubimage(rectToDraw.x, rectToDraw.y, rectToDraw.width, rectToDraw.height);
    System.out.println(rectToDraw.x+","+ rectToDraw.y+","+rectToDraw.width+","+ rectToDraw.height);
    Graphics2D g2d = bi.createGraphics();
    g2d.setBackground(getBackground());
    g2d.clearRect(0, 0,0,0 );
    file://ZoomIn();
    file://t= g2d.getTransform();
    file://g2d.setTransform(t);
    System.out.println("settransform callrd");
    // zoomFactor *=1;
    g2d.translate(100.0f, 0.0f);
    g2d.scale(zoomx, zoomy);
    System.out.println("scale called"+zoomFactor);
    zoomx += ZOOMSTEP;
    zoomy += ZOOMSTEP;
    file://zoomFactor+=zoomFactorupdate;
    g.drawImage(bi, 0, 0, this);
    // g.drawImage(bi,10,10,this);
    repaint();
    fzoom=false;
    thanks
    sangeeta

  • Why are some images being exported to Assets folder?

    On my desktop I have the structure of an Assets folder and within that a Images folder.  When I export to HTML it puts a few of the images in the Assets folder.  They are ones that are hyperlinked from a smaller image so that when they click on the smaller image the larger jpg opens in a new window.  I have security on the Assets folder on the server so I don't want these to go in there.  I am having to manually move them into the Images folder and then update the links in the HTML files.  Is there a way to make them go into the Images folder like all the rest of the images are automatically doing when I export?  By the way I don't want them to be a Lightbox slideshow.  They are large images so I want them in a window so the person viewing them can move around in the browser to view the image if they have a smaller monitor.

    Using Acrobat DC and the acrobat arrow tool. By right clicking on an image a submenu pops up. One of the items in that list is "Edit Image".  Ordinarily or historically this would then open the image in Photoshop as a temp file. Edits could be made and saved and the image would be auto updated back into the PDF.  In DC when selecting edit image, the document goes into a edit mode and the entire file gets converted into RGB color.  From here one could again right click on the same image and get the option to edit using another program, (like photoshop).  When returning back to document mode, the RGB conversion remains.
    I determine the files are converted to RGB by using the inspector tool in Acrobat as well as looking at the colorspace in Photoshop
    I determined the files were CMYK by building them that way and again verifying using Pitstop inspector.
    Following screen grabs show image before / and after selecting "Edit Image"

  • Sudden loss of print selected area in Photoshop 10.0.1?

    Between printing one image and printing the next I seem to have lost the ability to print a selected area in Photoshop 10.0.1. I am using this old program because the new Photoshop does not have that option. The box is now greyed out. Does any know why I could lose this, and what can I do to get it back? This is extremely important to my work method...
    Thank you.
    Mary Challinor

    Great news! "Print Selected Area" was restored in Photoshop CS6.
    Go to File > Print, scroll down in the dialog box that appears, et voila:

  • Adobe Acrobat 9 supposedly allows you to convert selected areas of a web page to PDF from within Int

    Software: Adobe Acrobat 9 Standard
    Issue: Using the ‘Adobe PDF toolbar’ from within Internet Explorer
    Problem #1:
    Can’t convert selected areas of a web page to PDF
    When you click ‘select’ on the adobe pdf toolbar, a red dotted line is supposed to appear around parts of the web page as you move the cursor
    In my case, that’s not happening
    Similarly, when you click on a part of the page, the part is supposed to be highlighted in blue
    In my case, that’s not happening
    Problem #2:
    Can’t convert part of a web page to PDF
    You’re supposed to use the cursor to select text and images on a page, then right-click and convert them to a PDF
    In my case, nothing happens when I right-click
    Any advice??

    You can not do that using Adobe Acrobat 9. Adobe never made a create PDF add-on for Firefox for use with Adobe Acrobat 9. They created a Firefox add-on for use with Acrobat X, but currently that one does not work with Firefox 4 though Adobe are working on an update.

  • How to Change Brightness, Contrast and Saturation of an image in LabWindows/CVI (Urgent) ?

    Hi All
    I want to change brightness, contrast and saturation of an image, plz help me how it will possibe in labwindows/cvi
    Thanks

    CVI does not include native functions to operate such changements on an image.
    It may be possible that these functions are included in IMAQ library, but I never used ot so I'm not sure. In any case, this is an additional tool to install and it is not free.
    Alternatively, you may need to search for a third party library that offers such functions.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Print only cursor-selected area of a PDF in Acrobat Pro, just as it is psbl to do in a browser

    Hi
    I want to print only cursor-selected area of a PDF in Acrobat Pro. That could be both text and images, which are in my selection. Just as it is psbl to do in a browser. Is it possible in Acrobat PRO?
    I am using the latest Acrobat Pro 11.0.9

    Thanks for your effort but this again clearly does NOT answer my question. I do see a particular problem and that is that I might want to select text and images over a range of multiple pages. In a doc of 20 pages I might want to make a single selection of the text starting PRECISELY at the MIDDLE of page 2 and then continue dragging my selection all the way to PRECISELY the MIDDLE of page 15, thereby selecting all text and images within the precise range of my selection. That is some 13 pages there and I want to print out ONLY THAT selection of text and images. And in that case I cannot use your suggestion with the marquee zoom. Do you get me?

  • Selecting and Deselecting Images in Aperture

    Is there anyway to select images in Aperture and keep them selected until you deselect them? For example if I close Aperture I would like to be able to comeback and the images are still selected.

    No, Aperture won't remember your selection after quitting.
    You can get around this by creating a new album from selection, or a assigning a temporary keyword 'selected' which you can then filter for when relaunching aperture to select the same images again.

  • If you right-click an image you can select to "Block Images" from the site, but how do you reverse this choice?

    If you right-click an image on a web page you can select to
    "Block Images from [the url of the site]".
    This works well, particularly to make the page printer-friendly, but how do you reverse this choice to see the images again?

    You can see all permissions for the current page in Tools > Page Info > Permissions
    If it is from a different domain then use this:
    *A way to see which images are blocked is to click the favicon (<i>Site Identification</i> icon) on the left side of the location bar.
    *A click on the "More Information" button will open the Security tab of the "Page Info" window (also accessible via "Tools > Page Info").
    *Open the <i>Media</i> tab of the "Page Info" window.
    *Select the first image and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • Why are imported images not visible any more in My Catalogue?

    I am trying to find out if there are limitations in PSE's Organizer that make it pointless for people with large numbers of photos to bother buying PSE 12.
    I imported 1050 JPEGs into My Catalog without problem using PSE 8 but all subsequent imported JPEGs show up as Thumbnails that are Opague with an Hourglass design on them. This makes organizing these images impossibly slow.  When I created a new catalog -- good advice from "andalebbfatima.1" --imported thumbnails were visible again.
    But what to do about the 1050 images in the original catalog? I've got two thick "how-to" books and they say nothing about copying images from one catalog to another.
    More important, to have confidence to buy PSE 12, I need to know what caused the 'invisible' thumbnails in the original catalog and is it something that could happen again after another two years of scanning, importing and trying to organize?

    Glad you got it working.
    For creating multiple catalogs from this original one, you can create copies of the original catalog. Check your catalog location using Help > System Info in Elements Organizer.
    Now copy paste the catalog folder (i.e. the folder having same name as your catalog) in the same location. So now, you have say folders say- MyCatalog and MyCatalog-Copy.
    You may open MyCatalog-Copy from Elements Organizer using File > Manage Catalog. Once this open, you can remove images from it so that only a selected set of images can be organized in this catalog. Now images get deleted from the hard disk in this process. Likewise, you can organize the original catalog.
    Hope this helps.
    Thanks
    Andaleeb

  • Elements 7 print selected area only

    Have just upgraded from Elements 4 to 7.
    Under old version I could easily print a small rectangular selection from a possible A3 print for evaluation before printing the whole thing. There was an option after File>Print to 'Print selected area', after first making a rectangular selection on the image.
    Perhaps I am missing something but I cannot find an equivalent command in Elements 7.
    Couls someone please enlighten me? - Thanks.

    Hello Nicole,
    Thanks for that, it seems strange that such a useful feature was discontinued - A3 size paper and ink is too expensive to just run tests. Once or twice, having marked a selection using the Marquee tool, I have found that if I click on 'custom' size the selection only will appear in the print preview. Unfortunately it does not always happen and I have no idea of the criteria required to make it do this on demand.
    Cheers.

Maybe you are looking for

  • Web ADI Report set, excel is not showing the data for any of the three repo

    We are currently working on 11.5.10.2 and moving from Desktop ADI to Web ADI. At the time of publishing report in Web ADI the excel is empty. AFter successfully running the WEB Adi reportset for Consolidate Balncesheet ( for a period ex: APR-2012), t

  • How to insert JSF component  between selectItems

    I want to implement a interface like below (HTML outputs) <inpu type="radio" name="type" value="1"> current <br> <inpu type="radio" name="type" value="2"> use my input <input type="text" name="other"><br> <inpu type="radio" name="type" value="3"> no

  • How do I make a border or frame?

    Running CS4/Win I want to make an image that has a border around it - 384px by 151px. I downloaded a brush called SS-Frames but it is not performing like I had hoped. I am used to PaintShopPro where they have presets and all you do is pick one and th

  • IPhoto Import Script

    I am attempting to write a script (droplet) that when I drop a folder on it, it will import the photos in that folder into iPhoto into an album name that is the name of the folder I dropped on it. Here is what I have so far: --on open (this_folder) t

  • Sync Manager doesn't actually SYNC

    Am I correct in discovering that the Sync Manager v6.0x does not actually SYNC MP3 audio files to the Zen 32GB correctly? I have spent a lot of hours trying to get my PC-based library sync'ed up with the Zen. Discovered earlier that you can add any f