Cropping outside the image boundaries within Lightroom?

Is there a way to rotate a photo and then crop it but be able to crop outside the boundaries of the photo (like you can in Photoshop) where it simply adds black or white background to those areas?  It would be very useful not to have to edit in Photoshop each time I want to do this.

hamer23 wrote:
Is there a way to rotate a photo and then crop it but be able to crop outside the boundaries of the photo (like you can in Photoshop) where it simply adds black or white background to those areas?  It would be very useful not to have to edit in Photoshop each time I want to do this.
I don't beleive that is an option. If you want to make photo borders, you could try the export plug-in LR2/Mogrify.
Bob

Similar Messages

  • Possible to crop outside the image limits?

    In Photoshop, you can crop an image outside of the image's boundaries and photoshop will add a colored background to the extended area. Is this possible to do in Aperture? Here is an example of the end result of what I am talking about on flickr:
    http://www.flickr.com/photos/robertlio/2544210651/
    Thanks.

    You can use the BorderFX plugin to export images with a border like that:
    http://web.mac.com/reinharduebel/BorderFX/

  • How do you crop outside the image in Adobe Camera Raw?

    I would like to create a crop of a portion of an image in Adobe Camera Raw AND include some area outside that image. Is there a way to do this.

    You can't do that in ACR, but you can if you open it in Photoshop and use the crop tool there.
    Gene
    (If this answers your question, mark it correct.)

  • Crop outside an image

    So I'm cropping to a square, but I want the crop to extend off the image area because I want to replace the missing bit in photoshop.  This effetively makes the image bigger than the original.  the only way to achieve the same effect is to scale the image, that keeps the pixel dimensions the same but effectively reduces the size of the image.
    is there a way to crop beyond the iamge bounds, and if not can we have that please

    Nope, cannot be done in Lr AFAIK. lightroom doesn't create pixels or alter them.
    It is possible upon export using the Mogrify Plug-In, other than that it is a PS job. You can always place a feature request though here.

  • Ken Burns Effect  - select "outside" the image

    I have some photos that are too tight and need to zoom out more. I am okay with having black areas.
    Is there a way to select the crop square beyond the border of the images?

    There is no way to do this within iMovie. You will need to use a photo editor such as photoshop to add the black space. You can do this with iPhoto, using an Automator action "Pad Photos".
    See this thread for details...
    http://discussions.apple.com/thread.jspa?messageID=7271342&#7271342

  • Setting the image size within a JFrame!

    This is the code i have implemented
    import javax.swing.*;
    import java.awt.*;
    class SampleJFrame extends JFrame
         JLabel l1;
         ImageIcon image;
         SampleJFrame()
              image=new ImageIcon("G:/java files1/images/aa.jpg");
              l1=new JLabel("DEDICATION",image,JLabel.RIGHT);
              l1.setSize(100,100);
              //this.setLayout(new FlowLayout(FlowLayout.RIGHT));
              this.add(l1);
    public class JFrame2
         public static void main(String args[])
              SampleJFrame samplejframe=new SampleJFrame();
              samplejframe.setTitle("FRAMES WITH JLABELS WITH IMAGEICON");
              samplejframe.setSize(400,400);
              samplejframe.setVisible(true);
    }When i run this the image occupies the entire JFrame.I want to resize it to a width of around 100,80 pixels.How can i do it?
    I know when i draw a image without linking to a label i can use drawImage of Graphics class to set the size of the image.But in this case i am linking the image to the JLabel and it's occupying the entire screen and the text with the JLabel is thrown somewhere out.

    Read it.Got a lot of info from that.But the trouble with mine is that i am linking the image to the JLabel and thats why i am unable to set its size because the image will be added to the JPanel when i add the JLabel to it?If i was directly printing the image i would have rather used Graphics.drawImage( ) where i can manually specify the width.

  • Working outside the slide boundaries...  how do I see the left side?

    I want to have some objects slide in from the right side of the slide, and exit again later on the left side - and I want to be able to move them back again later.
    I can see the right outside boundary of the slide, but not the left - how can I do this? - It seems that the rulers always crop to left and top of the slide.... is there a way to change this?

    Bizarrely enough, the slide is pinned to the top left corner, and one cannot see blank off-slide space to the top and left.
    The workaround is to attach a transparent "handle" to the object -- create a long rectangle, make it transparent, group it with the object, and then you can use the "handle" to move the object off-slide.

  • Bug: the query results dialog extends outside the screen boundaries

    Hi, I observed this bug on MacOS 10.5.5 running Eclipse 3.4.1 with FlexBuilder 3.0.2 installed. Steps to repro:
    1. make FlexBuilder full screen
    2. open an MXML document
    3. make the editor full screen (double-click the editor's tab)
    4. select in the text editor the name of a Flex SDK class (e.g. Window, Button, ...)
    5. scroll the editor window so that the selected text is near the bottom of the screen
    5. click the Blueprint button, or type ctrl-B
    Result: the Blueprint query results window is only partly visible, most of it is below the bottom of the screen
    Expected: the query results window auto-positions itself to be fully visible

    Thanks for trying out Blueprint and giving us feedback!
    We have filed a ticket for this bug and will do our best to address it in the next release!
    Mira Dontcheva
    Research Scientist
    Adobe Systems

  • Cropping a selected part of the image

    hi all i have sample codes here for cropping an image...how do i crop out the image automatically after i release the mouse button? Can anyone pls help me cos i need to know how it works...
    package MapWork;
    // import packages
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JPanel;
    import java.awt.Container;
    public class CropImage extends JPanel
         BorderLayout borderLayout1 = new BorderLayout();
         private Image img;
         Dimension d;
         int x, y, width, height;
         int startX = 0, startY = 0, endX = 100, endY = 100;
         public CropImage()
              super();
              setPreferredSize(new Dimension(800,500));
              try
                   jbInit();
              catch(Exception ex)
                   ex.printStackTrace();
         public void paintComponent(Graphics g)
              /* Graphics2D is a class for rendering 2-dimensional shapes, text and
              images in Java. It is used to construct the coordinates tranformations,
              colour management, layout of text etc...*/
              super.paintComponent(g);
              Graphics2D g2d = (Graphics2D)g;
              g2d.drawImage(img, 0, 0, this);
              // Math: to perform basic numeric operations. Math.min: return the
              // smaller value between the 2 integers
              int x = Math.min(startX,endX);
              int y = Math.min(startY, endY);
              // Math.abs: returns absolute value of a double value
              int width = Math.abs(startX-endX);
              int height = Math.abs(startY - endY);
              // draw rectangle, specify the x & y axis and the width & height
              g2d.drawRect(x, y, width, height);
              //g2d.setColor(Color.red);
              g2d.clipRect(x, y, width*2, height);
              // copy the selected area to another frame
              g2d.copyArea(x, y, width, height, width, height);
              g2d.setClip(x, y, width, height);
         private final Handler handler = new Handler();
         private class Handler implements MouseListener, MouseMotionListener {
         // occurs when mouse button is being pushed down
         public void mousePressed(MouseEvent e)
              setStartPoint(e.getPoint());
              // Repaint method(): issues a request that a Component be redrawn within
              // a specified time or as soon as possible if the time is left unspecified
              repaint();
         // mouseClicked: occurs when a mouse button is pressed and released
         public void mouseClicked(MouseEvent e){}
         // mouseExited:occurs when mouse cursor exits the unobscured part of
         // component's space/geometry
         public void mouseExited(MouseEvent e){}
         // mouseEntered:occurs when mouse cursor enters the unobscured part of
         // component's apace/geometry
         public void mouseEntered(MouseEvent e){}
         // mouseReleased:occurs when a mouse button is being released
         public void mouseReleased(MouseEvent e)
              setEndPoint(e.getPoint());
              // Repaint method(): issues a request that a Component be redrawn within
              // a specified time or as soon as possible if the time is left unspecified
              repaint();
         public void mouseMoved(MouseEvent e){}
         public void mouseDragged(MouseEvent e)
              setEndPoint(e.getPoint());
              repaint();
         public void setStartPoint(Point p)
              startX = p.x;
              startY = p.y;
         public void setEndPoint(Point p)
              endX = p.x;
              endY = p.y;
         private void jbInit()throws Exception
              addMouseListener(handler);
              addMouseMotionListener(handler);
              img = Toolkit.getDefaultToolkit().getImage("koyomi.jpg");
    }

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.net.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    import javax.swing.event.*;
    public class CropIt
        public CropIt()
            final ImageEasel imageEasel = new ImageEasel();
            final ImageCropper cropper = new ImageCropper(imageEasel);
            imageEasel.addMouseListener(cropper);
            imageEasel.addMouseMotionListener(cropper);
            // make up ui panel
            final JButton
                newClip = new JButton("new clip"),
                reset   = new JButton("reset"),
                crop    = new JButton("crop");
            ActionListener l = new ActionListener()
                public void actionPerformed(ActionEvent e)
                    JButton button = (JButton)e.getSource();
                    if(button == newClip)
                        cropper.enableNewClip();
                    if(button == reset)
                        imageEasel.reset();
                    if(button == crop)
                        imageEasel.cropImage();
            newClip.addActionListener(l);
            reset.addActionListener(l);
            crop.addActionListener(l);
            JPanel north = new JPanel();
            north.add(newClip);
            north.add(reset);
            north.add(crop);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(north, "North");
            f.getContentPane().add(new JScrollPane(imageEasel));
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
        public static void main(String[] args)
            new CropIt();
    class ImageEasel extends JPanel
        private BufferedImage image;
        private Rectangle clip;
        private Area mask;
        private final int
            CLIP_WIDTH  = 100,
            CLIP_HEIGHT = 100;
        private boolean showClip, showCrop;
        public ImageEasel()
            loadImage();
            clip = new Rectangle(0, 0, CLIP_WIDTH, CLIP_HEIGHT);
            showClip = false;
            showCrop = false;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int w = getWidth();
            int h = getHeight();
            int imageWidth = image.getWidth();
            int imageHeight = image.getHeight();
            int x = (w - imageWidth)/2;
            int y = (h - imageHeight)/2;
            g2.drawImage(image, x, y, this);
            if(showClip)
                g2.setPaint(Color.red);
                g2.draw(clip);
            if(showCrop)
                g2.setPaint(getBackground());
                g2.fill(mask);
        public void setNewClip(Point p)
            if(!showClip && !showCrop)
                clip.setLocation(p.x - CLIP_WIDTH/2, p.y - CLIP_HEIGHT/2);
                showClip = true;
                repaint();
        public void reset()
            showClip = false;
            showCrop = false;
            repaint();
        public void moveClip(int x, int y)
            clip.setLocation(x, y);
            repaint();
        public void cropImage()
            if(showClip)
                showClip = false;
                showCrop = true;
                mask = new Area(new Rectangle(0, 0, getWidth(), getHeight()));
                Area clipArea = new Area(clip);
                mask.subtract(clipArea);
                repaint();
        public Rectangle getClip()
            return clip;
        public boolean isClipVisible()
            return showClip;
        public Dimension getPreferredSize()
            return new Dimension(image.getWidth(), image.getHeight());
        private void loadImage()
            String fileName = "images/cougar.jpg";
            try
                URL url = getClass().getResource(fileName);
                image = ImageIO.read(url);
            catch(MalformedURLException mue)
                System.err.println("url: " + mue.getMessage());
            catch(IOException ioe)
                System.err.println("read: " + ioe.getMessage());
    class ImageCropper extends MouseInputAdapter
        private ImageEasel imageEasel;
        private Point offset;
        private boolean newClipEnabled, dragging;
        public ImageCropper(ImageEasel ie)
            imageEasel = ie;
            offset = new Point();
            newClipEnabled = false;
            dragging = false;
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            Rectangle r = imageEasel.getClip();
            if(imageEasel.isClipVisible() && r.contains(p))
                offset.x = p.x - r.x;
                offset.y = p.y - r.y;
                dragging = true;
            if(newClipEnabled)
                imageEasel.setNewClip(p);
                newClipEnabled = false;
        public void mouseReleased(MouseEvent e)
            dragging = false;
        public void mouseDragged(MouseEvent e)
            if(dragging)
                int x = e.getX() - offset.x;
                int y = e.getY() - offset.y;
                imageEasel.moveClip(x, y);
        public void enableNewClip()
            newClipEnabled = true;
    }

  • Is it possible to make a preset that makes it crop all my images to 5x7 instead of camera crop?

    All my templates for printing are made for 5x7 crops.  So my cameras are all 4x6 crops and I want to import my images and have LR crop to 5x7. I've tried to save a 'preset' to save 5x7 but it doesn't save that crop?  I can save everything else except a default crop.
    I know that i can copy and paste those settings after I import, but it would be nice to have all that done when I import to begin with.
    Or maybe theres another shortcut to do this?
    Thanks for your consideration.
    Gary Leif

    The Picture Dude wrote:
    All my templates for printing are made for 5x7 crops.  So my cameras are all 4x6 crops and I want to import my images and have LR crop to 5x7.
    The placement of an image into an image cell within a page layout, does not require you to have cropped the image (in Develop) to that same shape exactly. The same image can be used within different page layouts at varying aspect ratios.
    Normally an image is scaled to FIT into its image cell without loss. This means that margins are left inside the image cell, outside the image area, wherever the aspect ratios do not match. However, by highlighting a given cell and checking the option to "zoom to FILL", the image is instead zoomed larger until no margins are seen. In effect, this is a second on-the-fly "crop" which only operates inside this page setup. By setting this option for all the image cells (good idea to save your layout as an updated page preset), you remove the need to crop images specially for usage within those.
    If your image is (say) 4:3 - then this "print crop" will need to trim off parts of the image, to get it to 7:5 proportion. But the same would equally be true if you used the Develop crop, instead, to get it to that same proportion.
    Benefits: you still can show / export the same image for other uses, at its original 4:3 shape - or any other shape - in parallel. You can "slide" the crop of the image to a better composition, right inside its framing window within a given page layout, interactively (if it is a free-form layout, you may need to hold the Ctrl / Command key so as to do that).
    Personally, as a rule, I retain my as-shot aspect ratio for general purposes. I treat that as a distinctive property of each image, as I took it. I don't want to affect my careful general-purpose composition, merely because I may have printed it in a certain way. Printing is to some degree a separate matter: one can either present those whole-image compositions centred generously inside a variable-margin region of the page - or force-frame them tightly to a given shape on the page - as the whim strikes. And then save that as a Print Collection for future re-use.
    RP

  • How to remove a crop from selected images

    I need to create different crops on same image from one project, from project, to album, and smart folder i have one lot of crops and now i want to make other crops but the images in the project and blue folders have all the new crops too, how do i get back to a folder with no crops, I'd like to keep the retouches to these images though, i think i should have started differenttl?
    Help appreciated
    Thanks

    Not clear on what you have, but to remove the crop on any given image; you can either clear the check mark in the crop brick or remove the crop adjustment altogether. The crop brick shows in the Adjustment Inspector when you crop an image:
    http://documentation.apple.com/en/aperture/usermanual/#chapter=17%26section=10
    For more info on the crop tool:
    http://documentation.apple.com/en/aperture/usermanual/#chapter=18%26section=6%26 hash=apple_ref:doc:uid:Aperture-UserManual-91292MAD-1013949
    Note - typically, you would create a new version for additional cropped versions of the image. You can use the 'New Version from Master' command (control-click or right-click on image for the menu). This will create a new version to work on that is un-cropped whether the current version is cropped or not, but will not include any other adjustments either.

  • How to load images in List from Xml and view the image and resize the image & save in Flex?

    Hi Friends,
    I am new to flex i am doing application for image resizing rotating and save the resize image.
    I want to load the images from xml file to listcontrol and show that images as a icon in the listview,then i want to drag that image to panel that time it should show it original size of the Image.then it allows user to resize ,crop,rotate the image.then i want to save the resize image,when i save the resize image it should replace the original image in the xmllist.
    I am looking for some useful suggession ,if you dont mind want to see some snippet code.
    It will help me to understand the concept.
    Cheers,
    B.Venkatesan

    Not in Crystal Reports Basic for Visual Studio 2008. You'll have to upgrade to CR 2008 (12.x). Then use kbase [1320507|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] as a guide on how to do this.
    Ludek

  • How do I rotate the image?

    I am using Adobe Photoshop CC and I need to know how to rotate an image.

    This is probably more than you ever wanted to know about rotating an image. It is an Information Sheet I wrote and distributed to my students and you may find it helpful.
    Three popular methods used to straighten a tilted scene, such as the one shown the first photograph above, are Image Rotation, Straighten and the Level feature in the Crop tool. Each requires you to draw a horizon line or similar reference as a first step in the process, and each produces slightly different result.
    Image Rotation*:
      1. Choose the Ruler tool. (It is nested with the Eyedropper tool.) Click and drag a reference line as shown in the middle image in the top row above.  (The area around the image was lightened and red circles were added for clarity.) Depending upon the subject, the line may be horizontal, as seen here, or vertical.
      2.  Choose Image > Image Rotation > Arbitrary. When the Rotate Canvas menu appears, click OK. The result will be similar to Fig.1 above, showing the entire image.
    Straighten*:
    Once again, begin by choosing the Ruler tool and drawing the reference line. A feature was added to the Ruler tool in version CS5 and it appears in the Options bar: the Straighten command. Click on it and the image will be rotated and cropped as seen at the top/right. If you prefer to have the image rotated but not cropped you may either:
      1. Hold down the Option key as you click on the Straighten command.
      or
      2. After clicking on the Straighten command, choose Edit > Undo Crop.
    In either case the result will be similar to Fig. 1 above.
    The Straighten command, which also appears in CS6, produces a similar image rotation and trims a small amount of picture area as seen in Fig. 2.
    The Crop Tool’s Level symbol:
    This latest innovation, introduced in CS6, uses a command found in the Options bar of the Crop tool. The equivalent of the Ruler tool is built into the carpenter’s level symbol to the left of the word Straighten in the Options bar. Click on the level and draw the reference line. The image will rotate and the largest rectangular dimensions will be framed by the Crop tool plus, in a shaded area, the part of the image that will be eliminated. This allows you to adjust the image area if desired before cropping the image. The result, before clicking on the Commit key on the right side of the Options bar, appears as seen in Fig. 3.
    * When Image Rotation or Straighten is used to tilt the image, each of which also shows blank areas created by the rotation, consider using the Content Aware Fill command,
    An oldie but goodie: Crop & Straighten
    The image below shows the result when File > Automate > Crop & Straighten Photos was applied to a three-image gang scan. Note that:
      1. Each print has clearly defined sides.
      2. Each print was separated from the others by at least a half-inch.
    This command creates a separate file for each cropped image and leaves the original file intact.

  • 2 questions - change image size within print cell, and saving print template w/ specific images

    Hi,
    Searched the forums for the answer to these but couldn't find much.
    1. Is there a way to change the image size within a cell (under print module). For example, zoom in 140% on a a specific image but still have it within the original cell size?
    2. Say I create and fill in an elaborate print template with my images - is there a way to save the FILLED IN version of the template to edit at a later time? For example if I wanted to load it back up w/ all the original images layed out in the print template, but maybe change a few and resave as jpeg?
    Thank you!

    Hi
    I'm not sure but maybe you can use a rectangle to hold the .ai image, resize the rectangle and fit proportionally the image inside it
    hope this help
    Eli

  • Centering Image Horizontally within Div Layer

    I've placed an image inside a div layer. The div layer is 200 pixels wide by 200 pixels high. My image is 480 pixels x 720 pixels. So the layer is smaller than the image. How do I center the image horizontally within my div layer? I've applied a css rule on the layer as followed:
    #pictureframe {
    position:absolute;
    width:200px;
    height:200px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    Because the image is larger than the div layer the image doesn't want to center horizontally. It seem to justify itself on the left side of the div layer even though I've applied a text-align: center on it. Any suggestions.

    Make your division at least as wide as your image.  Height of divisions should always be determined by content inside it.  If you impose a height limit on your division, increased content or text size will fail, causing content to be hidden.  If required to display a background-image, use the min-height property.
    APDivs as a primary layout method seldom works well. Here is why:
    http://apptools.com/examples/pagelayout101.php
    Also, APDivs cannot be centered as they are removed from the normal page flow. You might try wrapping an APDiv inside a relatively positioned parent container, but without seeing your page (entire code), it's impossible to say for sure if this will work for you.
    See Centering Pages, Images and other elements with CSS
    http://cookbooks.adobe.com/post_Centering_web_pages_and_other_elements_with_CSS-16640.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for