Zoom Selection Area Response

When I use the zoom tool and select a rectangle, it means I want to zoom into that rectangle, even if the rectangle is larger than the document. I do this sometimes because I want some gray area on purpose so I can use it to deselect things or start a mask selection outside of the document. Instead of just assuming I want to zoom to fit, will you please make it actually zoom to my selection? Or at least give me an option in the preferences that allows me to turn off smart zooming or something? There is such a thing as too smart!
Thanks for listening

in another discussion, harry teasley wrote:
Don't like your fit-to-rectangle zoom? Select a different rectangle.
Maybe you don't understand the request. What I mean is when you have the zoom tool selected, even with a blank document, and say you zoom out then then you want to zoom in to a very specific zoom level that would allow you to see the entire bounds of the active document, but with a couple inches of window background around it, allowing you to use the brush tool to stroke even the edge of the document with the very edge of the brush. Assuming this is a fat brush, it wouldn't be possible to paint the border of the document in this way unless you had sufficient window background space around the document. For me, this is usually a couple inches of a margin.
Instead, Photoshop just assumes that if I'm so far zoomed out and I perform a zoom selection that I want to zoom to fit, but if that's what I wanted I would have right-clicked >> zoom to fit!

Similar Messages

  • 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

  • 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?

  • Aero in Windows 7 64bit home premium does not work. Aero display selections are grayed out.

    Aero in Windows 7 64bit home premium does not work. Aero display selections are grayed out.  HP 600-1315xt.
    Have tried everything I can find on internet and here on HP. None of the suggestions worked. Windows fixit for windows could not fixit. Any suggestions are appreciated. I can always use my disks and rebuild the computer. A last resort.

    Hi,
    It might be the graphic driver not compitable with the graphic device.  Has there been a change to the graphic driver?
    One thing you can try is to uninstall graphic driver and download the latest from Windows Update (if you haven't tried this).  Here are the possible steps:
    1.  Go to Control Panel->Hardware and Sound->Device Manager,  uninstall the graphic card driver by right clicking and select "uninstall".  Make sure the option "Delete the driver software for this device" is selected.
    2.  Reboot the system.
    3.  Go to Control Panel->System and Security->Windows Update, click on "Optional updates" and find the driver for g210 and do the update.
    I work on behalf o HP.
    Please click the white Kudos star to say thanks.
    Please click Accept As Solution if you found my response helpful.

  • Saved Selections are Black Not White

    I was working on an image and made one selection, which I then saved as an alpha channel. It saved properly with the selection area white and the rest of the image black. I made another selection and saved it as an alpha channel, but the selected area was black, with the rest of the image white - which of course is the reverse of what it should be.
    I tried some other images, made selections with various tools and each time I saved them as an alpha channel the selected area is black with the rest of the image white.
    Why is this happening?
    Thanks,
    Greg

    Thank you for your responses. I am able to invert the selection once it is made, but my query is to why my selection area initially was white (as it should be) and then suddenly all my subsequent selections are black.
    I can invert them, as you point out, but isn't the selected area supposed to be white when I first make the selection, rather than having to invert the selection afterwards?

  • Com+Space+Drag to zoom selection - what happened CS5

    hi, I used to command+space+drag an area and Ps would zoom that area - now it goes max % with grid
    Is this normal now under CS5 or am I missing something?

    select the Zoom Tool and uncheck "Scrubby Zoom" on the tool options bar.
    Thanks.
    For my fellow pea brains, here is a picture...

  • 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

  • Updated iPad 2 last night.  All movies (9) on my iPad can no longer be viewed.  The movie plays but the photos and scene selection are blank. How do I fix this

    Updated iPad 2 last night.  All movies (9) on my iPad can no longer be viewed.  The movie plays but the photos and scene selection are blank. How do I fix this

    Quit the app and restart the iPad.
    In order to quit or close apps - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Try the videos app again.

  • 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.

  • [JS CS4] define a selection area

    Hi all,
    I have to isolate repetitive areas in documents of hundreds of pages. My intention is to select the items located in this area.
    I wrote a while ago a script to find an item at xy location but this time, x & y will always be different and I can't imagine trying to catch items randomly until the script finds something.
    So I thought that maybe I could mimic the selection arrow and drag a selection area from x1y1 to x2y2 to select what's inside that field. My first guess is that js is not enough to do that so I guess it's more c++ related but I am not even sure.
    Does someone have any clue on that ?
    TIA
    Loic

    Piece of cake, Loic.
    selectInRectangle (app.activeWindow.activePage, 5,10, 120,100);
    // Maybe x,y,wide,high would work better?
    function selectInRectangle (source, x1,y1, x2,y2)
         var it;
         app.select(null);
         for (it=0; it<source.pageItems.length; it++)
         //     Only select all inside:
              if (source.pageItems[it].geometricBounds[0] >= y1 &&
                   source.pageItems[it].geometricBounds[1] >= x1 &&
                   source.pageItems[it].geometricBounds[2] <= y2 &&
                   source.pageItems[it].geometricBounds[3] <= x2)
                   source.pageItems[it].select (SelectionOptions.ADD_TO);

  • Selection Area in an OpenGL GLAnimCanvas

    Hi,
    I need to make an selection area by clicking and draging with the mouse. I have an GLAnimCanvas (Open GL canvas object) that is inherited from java.awt.Canvas.
    I have an addMouseMotionListener() and an addMouseListener() that detects correctly the events on the GLAnimCanvas... But I don't know how to display the rectangle of the selection area dragging with the mouse...
    I tried with the example I found on the sun site (http://java.sun.com/docs/books/tutorial/uiswing/painting/overview.html#repaint)
    but it seems that there is a problem with the paintComponent(Graphics g) method...
    Is there anybody who has an idea ??
    Thank you in advance
    Mat

    You may want to use openGL calls instead of
    java.awt.Graphics otherwise you would lose hardware
    acceleration for drawing the box. These calls would
    be made within gl4java's GLAnimCanvas display()
    method. Basically, if your GLAnimCanvas implements
    MouseListener and MouseMotionListener you can change
    the box coordinates within the appropriate method
    (e.g. mouseDragged, mousePressed) and have the box
    rendering code within display()Not necessarily. Java2D is accelerated in version 1.4

  • I'd like to download a film in English but all films in my iTunes film selection are with Italian audio. I live in Italy of course but is there any way to download films in English language format?

    I'd like to download a film in English but all films in my iTunes film selection are with Italian audio. I live in Italy of course but is there any way to download films in English language format from Italy?

    Click here and follow the instructions to change the iTunes Store country. You’ll need to provide an Italian payment method.
    (110156)

  • In the app search, the selections are hard to move right to left why?

    in the app search, the selections are hard to move right to left why?

    I doubt it was either.  As I suggested the possiblity the two issues were related.  One of a number things could have been the cause, and the solution.
    It took me several minutes to finalize my post in which during that time Apple could have very easilty got things back up and running.  The two issues could have been unrelated.
    Chamar - tt also appears you posted a screen shot from the Mac App store.  The link I provided was specifically for the online "Apple Store"  - not "App" store. 
    And again, as it's been an issue in the past - I suggested the two issues may have been related;  it usually is, because your Apple ID is tied to "everything Apple" - Mac App store, iCloud, FaceTime, iTunes, Apple Store online, and even here, including the forums... "everythig Apple."
    I even tried to get onto Apple Store online through the App on my iPhone.  I get the exact same screen shot I placed in my original post.  At any rate... everything is back up and running.

  • 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