How to resize images on book pages

Friends,
My wife is making a book in Aperture (latest version). Somehow, she structured it so that each image has a border around it, like a snapshot. This probably makes sense, since her theme is "snapshots." However, she is unable to resize the images on the page. Is it possible to do so? How?
As an aside, we can add new photo boxes, but they lack a border. However, they can be resized.
Any thoughts would be helpful.
Thanks!
Steve

It is possible to resize photos with or without borders while in "Edit Layout" mode, but not in "Edit Content" mode.
To adjust and add/remove borders, click on the gear below the pages window, then click on "Show Layout Options". The options then appear above the pages window where you can adjust the size (thickness) and color of the border.
You can also rotate the photo box too, with the "Angle" setting. Increasing the angle number rotates the photo box counter clockwise, so in order to get to rotate the "other" direction you simply have to increase the angle around the higher end of a circle (360 degrees), or say 345 degrees. Play with it, it makes sense when you do it.
Hope that helps.
Bob

Similar Messages

  • How to resize a table in Pages 5?

    How to resize a table in Pages 5? It can be resized vertically but not horizontally.

    stuart13 wrote:
    How to resize a table in Pages 5? It can be resized vertically but not horizontally.
    The controls are in the Format panel, Arrange Tab.
    Jerry

  • How to resize image using java imageio

    Hello ,
    I want to know how to resize image using java imageio.
    I dont want to use java awt because i am writing a web application.
    help is very much needed
    thank you.

    Just use an AffineTransform !
    Its much easier

  • How to resize image on my mac?

    How to resize image on my mac?

    What version of Mac OS X do you have? In Preview under 10.9 Mavericks (I believe 10.8 too), this is what I see:
    The padlock is next to the unit (pixels, etc) selection box.
    Matt

  • How to open image added to Pages doc in Preview app?

    Hello,
    Anyone know hot to open images added to Pages in preview app on Mac? When I click on any image with right mouse button I have in menu these options - "Open in Pixelmator and Capture selection from screen".
    I tried to make my own Automator service "Open img in Preview" and it work well in Finder and other apps (I selected it in Automator option to work in all apps) but this service is not show in Pages > Services.
    Anyone know how to fix it or how to make this service visible in Pages? I tried to found "Open in Pixelmator" workflow on my Mac to rewriting or save my "Open img in Preview" workflof into same folder but no chance. In (Library > Services etc)
    Thank you for you kind, sorry for my English
    Jan.S

    I don't know how Pixelmator created their Service, but I suspect it involves programming that is beyond my abilities.
    The following AppleScript will copy the selection in Pages and open a new preview window from the clipboard. It could be run as a Service with Automator. (It will also leave the image on the clipboard; if that is a problem, it could probably be modified, but I didn't get that sophisticated with it.)
    tell application "System Events"
              tell process "Pages"
                        set frontmost to true
      click menu item "Copy" of menu 1 of menu bar item "Edit" of menu bar 1
              end tell
              tell process "Preview"
                        set frontmost to true
                        click menu item "New from Clipboard" of menu 1 of menu bar item "File" of menu bar 1
              end tell
    end tell

  • How to resize image in JSP using JAI ??!!

    Please help me how to resize an JPEG image from my JSP, could I use JAI lib ? how ?

    Hello,
    I had the same problem few months ago ( in that case i used Jimi instead of JAI).
    The answer to your question is: use the java class called "Image".
    Infact you can use JAI just for load or save to disk your image that you have to resize and then use the following code to resize the image :
    Image imgResized = img.getScaledInstance(100,1,Image.SCALE_AREA_AVERAGING);
    The object "img" is the image to resize and the object "imgResized" is the image resized with width equals to 100 and with a right height.
    I used Jimi just to save my image and i think that with JAI there is a method to do this.
    You can use JAI to load in memory your image too so you can avoid problem with MediaTraker class.
    I hope that this can help you.
    Cheers.
    Stefano

  • How to resize image in flash

    Hi guys any tips or advise on how to resize an image i know
    there are various tools but is there a tool in Adobe flash
    professional and how can I do it
    cheers

    In what way do you want to resize the image? Are you
    importing graphics that you want to resize when you import them at
    runtime? Do you want to resize the images to a specific size or
    relative to one imported image? Or do you want to resize one or
    more images for a specific purpose at runtime based on some user
    input? Or is it something else?

  • How to display images in a page?

    Hello
    I would like to show a specific image in the main page of my application. The images to display will be in a table in the database. The idea is that when a user login into the application, the main page shows the image associated and some links.

    Hello,
    You can put an HTML region on your page and then use img tags to display it....How are your images in the database? are they image.gif? or?
    Since your images are in a table, you could do some sql...
    select '(img src="server:port/dir/dir/' || IMG || '" alt="image"/)'
    from table
    where
    Remember to replace the ( with < and ) with >
    Hope this helps out some.
    -Chris

  • How to resize image with high quality

    I refer lot of examples in image resizing. But quality of resized image not good. pls can give me solution for that with code?

    I refer lot of examples in image resizing.Have you read [_this article_|http://today.java.net/pub/a/today/2007/04/03/perils-of-image-getscaledinstance.html]?
    db

  • How to resize Image Jpeg ?

    I have a problem when I scale file image Jjpeg.
    My code :
    public void resize(Image img){
    BufferredImage bimg = toBufferedImage(img);
    AffineTransform tx = new AffineTransform();
    tx.scale(125,125);
    AffineTransformOp op = new AffineTransformOp (tx,AffineTransformOp.TYPE_BILINEAR)
    bimg = op.filter(bimg, null);
    public static BufferedImage toBufferedImage(Image image) {
    if (image instanceof BufferedImage) {
    return (BufferedImage)image;
    // Determine if the image has transparent pixels; for this method's
    // implementation, see e661 Determining If an Image Has Transparent Pixels
    boolean hasAlpha = hasAlpha(image);
    // Create a buffered image with a format that's compatible with the screen
    BufferedImage bimage = null;
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    try {
    // Determine the type of transparency of the new buffered image
    int transparency = Transparency.OPAQUE;
    if (hasAlpha) {
    transparency = Transparency.BITMASK;
    // Create the buffered image
    GraphicsDevice gs = ge.getDefaultScreenDevice();
    GraphicsConfiguration gc = gs.getDefaultConfiguration();
    bimage = gc.createCompatibleImage(
    image.getWidth(null), image.getHeight(null), transparency);
    } catch (HeadlessException e) {
    // The system does not have a screen
    if (bimage == null) {
    // Create a buffered image using the default color model
    int type = BufferedImage.TYPE_INT_RGB;
    if (hasAlpha) {
    type = BufferedImage.TYPE_INT_ARGB;
    bimage = new BufferedImage(image.getWidth(null), image.getHeight(null), type);
    // Copy image to buffered image
    Graphics g = bimage.createGraphics();
    // Paint the image onto the buffered image
    g.drawImage(image, 0, 0, null);
    g.dispose();
    return bimage;
    }

    This is my code :
    private ImageIcon getImageIcon(String path){
    ImageIcon iIcon = new ImageIcon(path);
    if(iIcon.getIconHeight() > 125 || iIcon.getIconWidth() > 125){
    Image img = iIcon.getImage();
    int iw = img.getHeight(null);
    int ih = img.getWidth(null);
    BufferedImage bImage1 = toBufferedImage(img);
    BufferedImage bImage2 = new BufferedImage(400,400,1);
    AffineTransform tx = new AffineTransform();
    tx.scale(400,400);
    AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
    BufferedImage bImage3 = op.filter(bImage1, bImage2);
    img = Toolkit.getDefaultToolkit().createImage(bImage2.getSource());
    return (new ImageIcon(img));
    if(iIcon == null)
    return null;
    return iIcon;
    public static BufferedImage toBufferedImage(Image image) {
    if (image instanceof BufferedImage) {
    return (BufferedImage)image;
    // Determine if the image has transparent pixels; for this method's
    // implementation, see e661 Determining If an Image Has Transparent Pixels
    boolean hasAlpha = hasAlpha(image);
    // Create a buffered image with a format that's compatible with the screen
    BufferedImage bimage = null;
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    try {
    // Determine the type of transparency of the new buffered image
    int transparency = Transparency.OPAQUE;
    if (hasAlpha) {
    transparency = Transparency.BITMASK;
    // Create the buffered image
    GraphicsDevice gs = ge.getDefaultScreenDevice();
    GraphicsConfiguration gc = gs.getDefaultConfiguration();
    bimage = gc.createCompatibleImage(
    image.getWidth(null), image.getHeight(null), transparency);
    } catch (HeadlessException e) {
    // The system does not have a screen
    if (bimage == null) {
    // Create a buffered image using the default color model
    int type = BufferedImage.TYPE_INT_RGB;
    if (hasAlpha) {
    type = BufferedImage.TYPE_INT_ARGB;
    bimage = new BufferedImage(image.getWidth(null), image.getHeight(null), type);
    // Copy image to buffered image
    Graphics g = bimage.createGraphics();
    // Paint the image onto the buffered image
    g.drawImage(image, 0, 0, null);
    g.dispose();
    return bimage;
    When I recieve Img3 which is not same original Image (img1)
    Please help me ?

  • How to resize images

    Probably an easy one but I haven't found out:
    how can I resize an image (jpeg, tiff etc)??? Using standard Tiger tools that is (not having to buy stuff).
    Thx in advance
    Manfred

    Did you get a copy of iPhoto with your Mac Book Pro? If so, drag your images into it. After that, double click on an image in the iPhoto library to edit it (such as cropping or color correcting). Then, click on File > Export. On this window you will be able to resize the image and save it to another location such as your Desktop.

  • How do I convert coloring book page to live paint group?

    Have coloring book and clip art image. How do I color them?

    Here are the steps you can use.
    Step 1: Create a new Illustrator document and insert the scan / photo of the image.
    File > New
    File > Place, navigate to the image, select it, click Place
    Click and drag on the page to insert the image.
    Step 2: Turn the pixel based image into Illustrator vector art
    With the Selection tool, click on the Image to the select it.
    Display the Image Trace panel (Window > Image Trace).
    From the Preset menu choose an option that closest resembles your image trace requirement, and select Preview and click Trace.
    Check the results, and make adjustments to the settings as required.
    Once you're happy with the result, in the Control panel, click Expand. Note that once you expand the Image Trace you will no longer be able to adjust the trace settings, and you've created Illustrator vector art.
    Step 3: Change the artwork to a Live Paint group and start colouring.
    Select the vector art, and choose Object > Live Paint > Make.
    You can now use the Live Paint Bucket and Live Paint Selection Tool to colour your artwork.
    Cari

  • When creating a book in iBooks Author, how do I get the book pages to flip instead of scroll?

    I'm interested in knowing if there's a way to get iBooks pages to flip instead of scroll when creating then in iBooks Author.  I think having the image of turning a page, instead of it just scrolling, is appealing to the reader, but I don't see how to do this in the iBooks Author program.  Any advice is welcome.  Thanks.

    It is a silly feature, but Apple would be remiss if they did not offer it.
    Go to the App Store someday and read the reviews of iBooks.There is an incredible amount of bellyaching because the new (iOS 7) graphics don't look as touchy-feely as the iOS 6 graphics. A lot of people want to feel like they are holding a piece of tree in their hands when they read eBooks. Doesn't compute for me, but as an author, I don't want Apple to kick these people in the shins, either.
    As for the processing hit...uhm...unless you happen to be rendering 3D animations at the time, it probably isn't going to ruin your chip's day.

  • How to adjust images in a page to take printout

    Hi,
    I have few images that I want to first adjust in photoshop in a single A4 page to take print out. I would like to know how to adjust the page and arrange the photo in a row and column way.

    you launch bridge from the top bar in Photoshop, then change the options in the output panel.

  • How to resize image to flow with my theme?

    Hello there,
    I have a site (removed) and I think my logo does not flow with the rest of my theme.
    How can I resize the logo that is already uploaded to my site?
    Thanks

    Hello, could you rather post a screenshot, (Printscreen on a PC, switch to Photoshop, new document, paste, and save, then use the camera icon here to upload your image.)
    We are sorry, but we've seen too many users create posts making fake invite for critiques, just to bring traffic to their site, so we have to draw a line (nothing against you, or we don't mean that you are doing it) and remove all such links.

Maybe you are looking for

  • R12 - check printing : How to set RTF template for preprinted stationary

    Hi all, We are on R12 instance and have requirement of check printing on preprinted stationary. For this requirement we are customizing standard RTF template. Preprinted stationary layout is like upper part ( check nmber, check date) then body part (

  • Newest ACR 5.5 Update will not load into Elements 7.0 - what gives?

    Hello All: This situation is now becoming ridiculous (well, for me that is).  I just tried to install the new ACR 5.5 update and it is "unable to install" into Elements 7.0.  I downloaded the update several times, unzipped the install file, but when

  • Questions on workbench versioning

    I learned the hard way that one should not really be using designer in workbench to modify forms, due to the version incrementing with each save and possible database bloat that could result.  Knowing that, the following questions come to mind: 1.  C

  • Weblogic 12c JAX-WS usernametoken policy authentication issue

    I created a simple JAX-WS webservice on weblogic12c. I added a cutom policy -a simple usernametoken policy. I added the policy to the webservice via the admin console. (inbound only) Testing from soapui, I was able to get a good response with correct

  • Another sound problem

    Hi I need some help getting the sound to work on logic express. I've tried looking through the manual but I couldn't find my answer. I know its probably something simple I'm forgetting to do so I would be thankful if some one could help me out with f