Isolating images in Landscape vs. Portrait

I'm having a weird problem with images. I'm not sure what the exact term is for this function, but normally if I tap on an image in landscape or portrait mode (assuming the image is in the media track in the latter mode), the image will isolate and fill up the screen. I'll call this isolate mode (it's also where you can toggle on or off the title/caption of the image, or click the X in the top left to return from the image back to the previous page you were on).
For some reason however, there are a few images in my file that won't isolate in landscape mode. I know that an image has to have a caption and/or title to work in isolate mode. But beyond that, even some images in landscape mode that have a title still won't isolate. At first, this seemed to be arbitrary. But after looking through my book (which is about 800 pages with 700+ images), I've noticed that it seems to be confined to images that I've placed that lay over a complete textbox area that's on my template.
For example, I have one template page with two large text boxes side by side (basically a normal landscape page divided in half, recreating a facing pages-type layout). If, then, on a landscape page using this layout, I then place an image over the same area size as one of these text boxes (basically covering it up exactly), even if the image has a title and/or caption, it still won't isolate when I finally export the file. However, the image will show up and isolate in portrait mode.
Is this a glitch, or something about the spec I'm missing?

make sure your image is above your textbox (bring to front under "arrange")
and make sure "full screen" is selected.
Hope that helps

Similar Messages

  • Script to make landscape and portrait images square

    I am new to scripting and could use a little help.
    We are currently rebuilding our enitre website from the ground up. New look, new products, new images (about 2,800 of them). Here is where it gets tricky.
    Some of the photos are landscape and others are portrait. I have resized the images to the required 200 pixels wide, but we are now running into the issue where they also need to be 200 pixels high. I could just separate them into two folders, landscape and portrait, and run two different actions, but I would prefer to run an if/than script if possible. Can someone tell me if this is possible in Photoshop? These are images of products, so there is no background.
    If the image is larger than 200 pixels high, reduce the image to 200 pixels high. Then, enlarge the canvas to 200 pixels.
    If the image is smaller than 200 pixels high, Then enlarge the canvas to 200 pixels high.
    These are all 72 dpi, RGB images. Any help would be greatly appreciated.

    I have found this JaveScript that does what I need on the PC side, but keep getting an error when it tries to save the image. Is anyone able to recreate this into AppleScript with a correct save function... I am running a MAC, so I need an AppleScript. My coworker has Photoshop on the PC and is trying to use this JavaScript below.
    //  resize canvas  & export JPG
    #target photoshop
    app.bringToFront();
    // Save current dialog preferences
    var startDisplayDialogs = app.displayDialogs;    
    // Save current unit preferences
    app.displayDialogs = DialogModes.NO
    // Source and Destination Folders
    var inputFolder = Folder.selectDialog("Select the Source folder");
    var outputFolder = Folder.selectDialog("Select the Destination folder");
    ProcessImages();
    function ProcessImages() {
      var filesOpened = 0;
       if ( inputFolder == null || outputFolder == null) {
       if ( inputFolder == null) {
                alert("No Source folder selected");
        if ( outputFolder == null) {
           alert("No Destination folder selected");
       }else{
    var fileList = inputFolder.getFiles();
      for ( var i = 0; i < fileList.length; i++ ) {
           if ( fileList[i] instanceof File && ! fileList[i].hidden) {
                     open( fileList[i] );
                     ResizeCanvas();
                     filesOpened++; 
      return filesOpened;
    function ExportJpeg(filePrefix, fileSuffix){
    try
    var docRef = app.activeDocument;
    var docName = app.activeDocument.name.slice(0,-4);
    var jpegOptions = new JPEGSaveOptions();
    jpegOptions.quality = 8
    docRef.flatten()
    docRef.bitsPerChannel = BitsPerChannelType.EIGHT
    jpegFile = new File( outputFolder + "//"  + filePrefix + docName + fileSuffix );
    //Save Document As
    docRef.saveAs(jpegFile, JPEGSaveOptions, true, Extension.LOWERCASE);
    catch (e)
    alert("Error when attempting to save the image. \r\r" + e);
    return;
    function ResizeCanvas()
       function CanvasSize() {
          var docRef = app.activeDocument;
          var docWidth = docRef.width.as("px");
          var docHeight = docRef.height.as("px");  
          if (docWidth < docHeight)
                docRef.resizeCanvas(docWidth = docHeight, docWidth, AnchorPosition.MIDDLECENTER);
          else if (docWidth > docHeight)
                docRef.resizeCanvas(docHeight = docWidth, docHeight, AnchorPosition.MIDDLECENTER);
          else if (docWidth == docHeight)
    var docRef = app.activeDocument;
    var savedState = docRef.activeHistoryState;
    CanvasSize();
    app.displayDialogs = DialogModes.NO;
    ExportJpeg("", ".jpg");
    docRef.activeHistoryState = savedState;
    docRef.close(SaveOptions.DONOTSAVECHANGES);
    docRef = null;
    // Reset preferences
    app.displayDialogs = startDisplayDialogs;
    alert("Operation Complete!" + "\n" + "Images were successfully exported to:" + "\n" + "\n" + outputFolder.toString().match(/([^\.]+)/)[1] + "/");

  • Print SSRS Server Report in landscape or portrait mode directly(without report viewer control)

    Hello,
    .Net 4.0\VS2010\C#\ssrs 2008 on Sql Server 2008R2
    Having a problem printing a Server report while controlling the orientation and the size of the emf rendered to the physical page.
    I have the report cutting off in both landscape and portrait modes. I'm passing the following deviceinfo to the render function:
    string DeviceInfo =
    @"<DeviceInfo>
    <OutputFormat>EMF</OutputFormat>
    <PageWidth>8.5in</PageWidth>
    <PageHeight>11in</PageHeight>
    <MarginTop>0.25in</MarginTop>
    <MarginLeft>0.25in</MarginLeft>
    <MarginRight>0.25in</MarginRight>
    <MarginBottom>0.25in</MarginBottom>
    </DeviceInfo>";
    return DeviceInfo;
    string mimeType;            string fileExtension;            Stream pageStream = serverReport.Render("IMAGE",  deviceInfo, firstPageParameters, out mimeType, out fileExtension);
    No other settings seem to have an affect on controlling the output to printer or pdf.  i.e. The deviceinfo params fed to server report's render function are all you get.  I think my original code comes from an MSDN or CodeProject example. I'm not
    inventing anything new here.
    Links below indicate similar problems but they are looking at the issue from just landscape mode. Seems like I ought to be able to squash or expand the image to whatever size I specify, separate from the 'page' size.  Please let me know what i need
    to know to make these reports print without bleeding onto 2 pages or slicing off the right side of the document image.
    http://stackoverflow.com/questions/25652415/cant-print-ssrs-rdlc-report-in-landscape-mode-directly-to-printer-using-suggest
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/06a9b432-c8a5-4952-a07c-867742a26c47/print-rdlc-without-report-viewer-either-in-portrait-or-landscape?forum=sqlreportingservices
    print ssrs rdlc report in landscape mode directly
    Thanks!

     Hi
    FraterJoanni,
    Thanks for posting in MSDN forum.
    I am not expert in SSRS. You should get better response in SQL Server > SQL
    Server Reporting Services, Power View forum.
    After take a look at the similar threads links as you posted above.
    The conclusion is we needn’t tell the program o this report is landscape not portrait. If the width is larger than the height, the report will be printed in landscape; otherwise, it will be printed in portrait.
    >>Links below indicate similar problems but they are looking at the issue from just landscape mode.
    But in C# forum, we only from the point of code, code looks OK to me.
    A similar blog talking about this
    Controlling Page Size in a Reporting Services Report
    And  I have got the default page size in the US is Letter, 8.5in x 11in.  In other parts of the world A4 (8.3in x 11.7in) is the standard. 
    65: //build the device settings (A4 8.3 × 11.7)
    66: string deviceInfo = string.Format("<DeviceInfo><PageHeight>{0}</PageHeight><PageWidth>{1}</PageWidth></DeviceInfo>", "11.7in", "8.3in");
    67:
    68: //get report bytes
    69: result = rs.Render(format, deviceInfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
    70:
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • LANDSCAPE or PORTRAIT ?

    Dears,
    After book was submitted, I got following msg from Apple:
    "All vital content (images, text, etc) now needs to be available in both landscape and portrait mode. Currently, all content is missing in portrait mode.
    Surely some of you already experienced this issue."
    It is clear to me what it means but my question is: IS IT MANDATORY TO HAVE IT AVAILABLE IN BOTH MODE?
    If so, is there a clever way or I have to past and copy the text and widgets from every pages? 
    Thanks in advance for help!!
    Ugo

    It is mandatory for your book to be seen in both orientations.  I received a similar message last week.  My book has many images and only 1 was displaying in portrait mode.  After much trial and error, I discovered that the image was Inline, the rest were not.  I spent about 24 hours total re-formatting my entire book so that it was viewable in both formats.  Keep switching back and forth between the two orientations as you work on your mac.  Save both versions.  You cannot edit in portrait, only landscape.

  • Landscape v portrait orientations

    Uploaded my book package yesterday.  Received report ticket from itunes connect.  Portrait view doesn't show any of my images.  How do I solve this problem?  I did attempt to copy and past the images from landscape view into portrait.  I ended up with duplicate images in landscape orientation.  Am I able to edit the two orientations separately?  Thanks.

    Quoting another thread:
    Do your editing in portrait, and formatting in landscape. Media will always be sidebar thumbnails in landscape, when you click on them, however, they become full screen. You do have control over the placement. There is a thing in the toolbar to change between floating, inline, and anchored; floating allows you to move them around where you want them to be. With anchored, there is a target-looking anchor in the text. Change it to floating, move it, then anchor it if you want. You might have to change orientations to change to floating.
    Try that and see if both orientations cooperate in a preview.
    Ken

  • My profile in camera calibration in lightroom 5 show only embedded. How to set profile to landscape or portrait. I can't find any other option, only embedded.

    My profile in camera calibration in lightroom 5 showing only embedded". How to set profile to landscape or portrait. I can't find any other option, only embedded. How to install all profile's?

    The profiles are there, but they only display and are only available for raw images. The image that you are highlighting is either a JPEG or some other non--raw file format. The only profile available for non-raw images is the embedded profile.

  • Printing landscape and portrait orientations in LR

    I have usually been printing from Qimage or QTR for my black and white, despite having heard good things about LR's print module.
    This afternoon I thought I would give LR a whirl at printing. I had a series of 4 photos (3 portrait orientation, 1 landscape) selected which I wanted to print one per page. In Print they all appeared oriented in the most logical fashion as I paged through the 4 pages (i.e. the longest dimension of the image ran down the longest dimension of the paper).
    I then selected my profile for my paper and hit Print... to go into my printer settings (Epson 3800) for that paper. These latter settings exist for both landscape and portrait orientations of my papers. As I had both landscape and portrait images I wished to print and the settings for the printer driver dialog are identical for both apart from the media orientation, I chose the landscape to get a quick feedback on whether LR would be able to handle a mixed bag of portrait and landscape images.
    As I feared, my first print (which was an image in portrait orientation) came out with the long axis of the image squeezed into the short dimension of the paper....so LR saw the choice I had made of a landscape orientation within the printer driver as a hard and fixed choice. Does this mean one can only do print runs of either portrait or landscape oriented images in LR and never combine the two?
    I realize there may be an easy answer to this as I've really not used LR for printing till now.
    Thanks for input,
    Dave M

    Thanks DJ-G....I can't swear but I am almost positive I had Rotate to Fit checked....indeed that would explain why when paging through the 4 pages in LR they were rotated to fit in the correct orientation. I'll check again. I do understand with Custom Package etc. we can print landscape and portrait when printing multiple images on the same page but my specific concern is printing one image per page and whether LR can handle a series of such prints in one print job if the images are a mix of landscape and portrait orientations.
    DM

  • My iPad 2 home button has stopped working I have tried the swivel from landscape to portrait whilst holding the button, I have tried holding the off button then the home button and I was told I could create my own home button in the settings but I can't!

    My iPad 2 home button has stopped working all together, I have tried the swivel from landscape to portrait whilst holding the home button, I've tried pressing the off switch then pressing the home button, the other thing I was advised to do was create a home button in the settings under the accessibility option but I don't have the option I was advised to use under there! Help! It's really frustrating having to turn the device off everytim I want to switch apps and I really can't afford to send it away to be mended! Many thanks in advance

    The accessibilty setting that was mentioned is:
    * Enable AssistiveTouch
    Enable AssistiveTouch which floats a virtual button on-screen which can mimic all hardware buttons on the device:
    Settings>General>Accessibility>AssistiveTouch: turn ON
    *Note* If you power off the device using the AssistiveTouch panel (tap the on-screen AssistiveTouch button, Device>Lock Screen (tap and hold to power off)), you will NOT be able to power on the device *if your Sleep/Wake (power) button is not functioning*. You will need to connect the powered off device either to a PC's USB port or an external charger to power the device back on.

  • I need to make Landscape and portrait in the same file ? plz I don't want to go back to word

    Hi there I am trying to have page in landscape and portrait in the same file, but I couldn't, however, if there is a way where we can perform it please advise me as I need to do that for my thesis. Am happy to work only in pages if this feature is not in pages, please find us a solution.
    Regards
    Mohammed

    Export te document to PDf. Open it in Preview. Here you can rotate the a page to horisontal.

  • Mix landscape and portrait in one report

    Is it possible to have a container report have a mix of subreports that are portrait and some landscape?   Is it possible to embedd the printer portrait/landscape control characters on each subreport so it prints properly?   ...or something to print sideways for landscape subreports.
    I am using VS 2008, Crystal 2008, Vista Business ...this is a windows application - not a web app.
    When I mention container report, this is just a report that I use as a container for subreports.
    Thanks,
    Jeff

    Jeff, thinking about how to do this I realize that there will not be a way to get this done, not for subreports. For individual sections without subreports, yes. E.G.; this can not be done in the designer and typically, if it can not be done in the designer, it can not be done at runtime.
    While there is a way of setting a particular section to print a different orientation than the rest of the report, if there is a subreport in the section, the section's orientation property will not be passed on to the subreport.
    Alternatively, if a main report is set to portrait orientation and the subreport is set to landscape, the subreport will print landscape, on a portrait oriented page, thus resulting in data being cut off. In the reverse scenario, main report is landscape, subreport portrait, the subreport will print portrait on a landscape oriented paper and as above, data will be cut off.
    Ludek

  • Landscape and portrait mode

    My iPad is slow between rotating from landscape o portrait mode at the home screen. In apps though it is very fast. Anybody know why? It hasn't always been like this

    Hi,
    Try restarting your iPad.
    Press and hold the Sleep/Wake button until the red slider appears. Slide your finger across the slider to turn off iPad. To turn iPad back on, press and hold the Sleep/Wake until the Apple logo appears.
    See if that made a difference.
    If not, you may have an app that needs "force quitting" ...
    Try this... Press and hold the Sleep/Wake button on top of iPad for a few seconds until a red slider appears, then press and hold the Home button until the application quits.
    Try again. If it's still slow, connect your iPad to your computer, launch iTunes. Check available storage at the bottom of the iTunes window. Might be a good idea to have at least 10% free space available.
    Carolyn

  • Landscape and portrait phots?

    Hi
    I want to use some phots to make a youtube video the photos are both landscape and portrait , but when i add the media it only shows the photos in one orientation (landscape) any advice gratefully recieved

    Before you import the photos into your project, go to your preferences (under the Edit menu on a PC) and uncheck Scale Stills to Frame Size.
    Also make sure your photos are sized to no larger than 1000x750 pixels or they are going to be way to large to work with. You may need to resize them once youv'e added them.
    Unless your concern is that the portrait photos are coming in sideways. If that's the case, you'll need to open them in Photoshop Elements, rotate them 90 degrees and then resave them. Note that, although many photos will appear to be oriented correctly in the Organizer or in Windows, they still may not actually be oriented correctly until you open them in Photoshop.

  • Landscape and portrait mode in Epub

    Hey!
    When I export from Indesign to .epub with a fixed layout - is there a way to use it in landscape and portrait mode on an Ipad or Iphone? Mine stays in landscape.

    @Steve – don't think so…
    @Kaz Till – do you mean the following:
    1. Without setting "auto":
    2. After setting "auto":
    Don't think, that this is to the advantage of the reader…
    Uwe

  • Landscape and Portrait Orientation Problems

    Hello everyone,
    I am working on my first iBook using iBook Author. I am having a heck of a time understanding how to make something look good in both Landscape and Portrait orientation.
    For example, I am curious how to make the spaces between paragraphs disappear in portrait view, if I had to use them in order to make the landscape view look proper in terms of formatting. In depth, if I have a text for a section in the book that I need to have at the top of the next column, I am putting my cursor before the text and pressing enter a few times in order to move it along and onto the next column so it is at the top of the page.
    Here is a picture of what I am talking about:
    The highlighted text has been shifted down so it will be at the top of the next page.
    Now this is what it looks like in Portrait orientation:
    There are way too many empty lines between them. Also, you will notice at the top that Not Getting In the Way is also too close to the text above it. Correcting that by putting a space between the lines will screw up the Landscape formatting.
    Also, adding pictures makes it even MORE difficult to keep both formatted properly and clean.
    Any advice would be INCREDIBLE.
    Thank you everyone!

    Layout in landscape. Edit in portrait....assuming you've not disabled support for it.
    Preview/check in both.
    See the tips in this forum and
    Publishing With iBooks Author
    http://shop.oreilly.com/product/0636920025597.do 

  • Change landscape-and-portrait-folio to landscape-only

    Is it possible after mistakenly having produced a folio with landscape-and-portrait-mode setting it back to landscape-only?
    In the new content viewer, if a folio is set for both landscpae and folio, but only one layout exists, it shows a grey empty page in the second alignment (before it didn't change the alignment and the picture wasn't changed when turning the iPad).
    Now, when you create a new folio, you are asked if this is landscape-and-portrait or portrait-only respectively landscpae-only. We mistakenly have chosen both-alignments and are now having the problem of the empty grey mode in portrait.
    Can this be changed after upload the layouts? Is this also happening within the app itself?

    Hi Bhaskar,
    thanks for your help. My intention is to create a single-orientation layout, but I created a both-orientations-layouts. Before v20 (or 19?) when just uploading one of the orientation into that folio, content viewer and the branded app just showed one orientation and fixed the layout within the iPad. Now, if you choose both-orientations and just upload a single one, you are getting a grey screen in the missing orientation.
    I wasn't aware of this fact (maybe because german customers weren't invited to sprint v20 presentation) but I'm afraid that you are right an  have to created the folio completely from the ground (which is a lot of more work with import function not running )
    Maybe this solves my push notification error with one of my folios I have
    Richard

Maybe you are looking for