Create Image Catalog using Bridge?

I have a collection of ClipArt CD's, definietly over a thousand images in total. I'd like to create a catalog of these images, so there would be ~20 per page (I guess thumbnails), along with the file name, and the CD it came from. I suppose each CD would have it's own set of pages (E.g. header of page = "CD 23").
Is there any way I can create such a catalog using Adobe Bridge, or maybe a different Adobe product? If not, would there be any other products (ideally freeware) that would do this?

Ouch. I only have the Cs3 Production Premium package. But I have some interest in getting the 'all CS3 products ever' package, whatever it was called. Good to know it's possible w/ InDesign. Thanks for the headsup Bob.

Similar Messages

  • How to create field catalog using field-symbols in normal alv report?

    hi all,
    how to create field catalog using field-symbols in normal alv report? i.e, using function modules...reuse_alv_list_display/grid_display?
    regards,
    jack

    HI
    LIKE THIS
    TYPE-POOLS : slis.
    DATA : t_fieldcat TYPE slis_t_fieldcat_alv,
           st_fieldcat TYPE slis_fieldcat_alv.
    st_fieldcat-fieldname     = 'STATUS'.
      st_fieldcat-seltext_l     = 'STATUS INDICATOR'.
      st_fieldcat-outputlen     = 17.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'VBELN'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Sales Document No.'.
      st_fieldcat-outputlen     = 10.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUDAT'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Document Date'.
      st_fieldcat-outputlen     = 10.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'VBTYP'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Document Type'.
      st_fieldcat-outputlen     = 4.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUART'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Category'.
      st_fieldcat-outputlen     = 1.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'AUGRU'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Reason'.
      st_fieldcat-outputlen     = 3.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'NETWR'.
      st_fieldcat-do_sum        = 'X'.
      st_fieldcat-seltext_l     = 'Net Amount'.
      st_fieldcat-outputlen     = 15.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
      st_fieldcat-fieldname     = 'WAERK'.
      st_fieldcat-do_sum        = ' '.
      st_fieldcat-seltext_l     = 'Unit'.
      st_fieldcat-outputlen     = 5.
      APPEND st_fieldcat TO t_fieldcat.
      CLEAR st_fieldcat.
    *sortinfo
      st_sort-fieldname = 'AUART'.
      st_sort-up        = 'X'.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'VBTYP'.
      st_sort-up        = 'X'.
      st_sort-subtot    = ' '.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'WAERK'.
      st_sort-up        = 'X'.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
      st_sort-fieldname = 'VBELN'.
      st_sort-up        = ' '.
      st_sort-subtot    = 'X'.
      APPEND st_sort TO t_sort.
      CLEAR st_sort.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       EXPORTING
         i_list_type     = 0
       IMPORTING
         et_events       = it_eventcat
       EXCEPTIONS
         list_type_wrong = 1
         OTHERS          = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      IF grid = 'X'.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
         I_INTERFACE_CHECK                 = ' '
         I_BYPASSING_BUFFER                = ' '
         I_BUFFER_ACTIVE                   = ' '
          i_callback_program                = g_program
          I_CALLBACK_PF_STATUS_SET          = 'SET_PF_STATUS'
         I_CALLBACK_USER_COMMAND           = ' '
          I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
         I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
         I_CALLBACK_HTML_END_OF_LIST       = ' '
         I_STRUCTURE_NAME                  =
         I_BACKGROUND_ID                   = ' '
         I_GRID_TITLE                      =
         I_GRID_SETTINGS                   =
         IS_LAYOUT                         =
           it_fieldcat                       = t_fieldcat
         IT_EXCLUDING                      =
         IT_SPECIAL_GROUPS                 =
          it_sort                           = t_sort
         IT_FILTER                         =
         IS_SEL_HIDE                       =
         I_DEFAULT                         = 'X'
         I_SAVE                            = ' '
         IS_VARIANT                        =
         IT_EVENTS                         =
         IT_EVENT_EXIT                     =
         IS_PRINT                          =
         IS_REPREP_ID                      =
         I_SCREEN_START_COLUMN             = 0
         I_SCREEN_START_LINE               = 0
         I_SCREEN_END_COLUMN               = 0
         I_SCREEN_END_LINE                 = 0
         I_HTML_HEIGHT_TOP                 = 0
         I_HTML_HEIGHT_END                 = 0
         IT_ALV_GRAPHICS                   =
         IT_HYPERLINK                      =
         IT_ADD_FIELDCAT                   =
         IT_EXCEPT_QINFO                   =
         IR_SALV_FULLSCREEN_ADAPTER        =
       IMPORTING
         E_EXIT_CAUSED_BY_CALLER           =
         ES_EXIT_CAUSED_BY_USER            =
          TABLES
            t_outtab                          = it_final
          EXCEPTIONS
            program_error                     = 1
            OTHERS                            = 2
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    REWARD IF USEFULL

  • How to create feild catalog using Tcode MC18

    Hi firends,
                I want to create a field catalog using the Tcode MC18 as well as i have to add some fields other then the fields provided in the characteristics stuctures. Can u please give the step by step help to how to do it.
    thanks and regards
    Gaurav Lashkari

    this should provide you with all you have to know ...
    ... and a bit more:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/8c/fd5878a94711d1890a0000e8322f70/frameset.htm

  • To create images continuously using a byte array  while streaming video

    Can someone please help me in creating images from a byte array continuously which is required while streaming video on implementation of RTP?

    seems like this could be the class you want to look at
    Package javax.imageio

  • Image Problems using bridge

    Hi there.
    Im having a wierd problem when placing images into PS from Bridge (vCS5). The image breaks up into numerous parts as shown by the image below. The only thing I can think of is that when shooting the image I sometimes set the camera to multishot to give myself a choice of image! Could this be my problem? I would be grateful for any advice. Many thanks Trev

    This is a video driver problem.  Update to latest.  If using CS6 companies struggling to make them work.  Latest does not always mean the best.

  • Create Flash Catalog Using CS4?

    Is it possible to use Indesign cs4 to create one of those flash type catalogs like you see on the best buy/officedepot/staoples/officemax catalogs. I know Indesign can export to flash but what is needed to create those hover over bxes and zooms to the product like I see on those sites. Are those created fully in flash? Appreciate any info/help.
    Rob

    No you can´t do those directly from indesign. You can do swf-file with quite nice page turn... and you actually can do all kinds of mouse over things by using buttons, mouse over states and show/hide button actions... but that´s about all...
    Most of the catalogues you mentioned have been made by sending a PDF file to a service provider who converts it to flash/swf based catalogue. Better ones are usually quite expensive.
    If you want to create your catalogue directly from InDesign, you may want to check eDocker: http://www.prepress.fi/eDocker_eng
    With it you can export one or multiple SWF files directly from InDesign CS4 and create a user interface for them, including zoom and lot´s of other usefull features... You find it from Adobe Marketplace as well:
    http://www.adobe.com/cfusion/marketplace/index.cfm?event=marketplace.offering&offeringid=1 7503&marketplaceid=1
    You can try it for free (3 days).

  • Trying to Create a Catalog file using WSIM (Windows System Image Manager)

    I have been looking online for a solution to htis problem for days and come up with nothing so any help would be amazingly helpful.
    I have created a Windows 8.1 image which I would like to role out to all users within my company but when trying to create a catalog file I am getting an erorr message saying "Windows SIM was unable to generate a catalog."  It says "Mounting
    Windows Image file......This might take a few minutes" and then fails after 6-7mins.
    When opening the log file I get this:
    10:00 : Cannot obtain read/write access for F:\sources\install.wim.
    In order to generate a catalog file, you must have read/write access to the Windows image file and its containing folder.
    10:13 :
    10:13 : Windows SIM was unable to generate a catalog. For troubleshooting assistance, see the topic: 'Windows System Image Manager Technical Reference' in the Windows OPK or Windows AIK User's Guide.
    10:13 :
    10:13 : System.InvalidOperationException: The operation failed to complete. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentNullException: String reference not set to
    an instance of a String.
    Parameter name: source
       at System.Globalization.CompareInfo.IsPrefix(String source, String prefix, CompareOptions options)
       at ?A0xfe36268f.ConvertToNtPath(String path)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.CbsSessionAdaptor..ctor(String bootDrive, String imageWinDir, String servicingPath)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageImpl.InitializePackages()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageImpl..ctor(OfflineImageInfo imageInfo)
       --- End of inner exception stack trace ---
       at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPtr declaringType)
       at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.Cpi.PlatformImplementation.CreateOfflineImageInstance(OfflineImageInfo imageInfo)
       --- End of inner exception stack trace ---
    The one image that did work (LiteTouchPE_x64.wim) was from the OS I imported to Microsoft Workbench but the components are different to any that I have seen online when looking on how to do this.
    I have made sure that the architecture is x64 and tried from ISO files I have on the system already but get the same error.
    This is the first project I have been involved in and only ever done IT support before this.
    Thanks for your help in advance.

    Yes I am trying to capture a reference image that I have created on another machine and then reploy this through MDT. I am trying to open the Unattend.xml file because the "Capture and Sysprep" fails on the reference machine when trying to run
    Sysprep. When I try to open the Unattend.xml file in MDT I get the error below:
    Performing operation "generate" on Target "Catalog".
    Starting: "C:\Program Files\Microsoft Deployment Toolkit\Bin\Microsoft.BDD.Catalog35.exe" "D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim" 1 > "C:\Users\*****\AppData\Local\Temp\3\Microsoft.BDD.Catalog.log"
    2>&1
    No existing catalog file found.
    PROGRESS: 0: Starting.
    PROGRESS: 0: Creating mount folder: C:\Users\*****\AppData\Local\Temp\3\IMGMGR_install_Windows 8.1 Enterprise_njegg3ph.con.
    PROGRESS: 5: Creating temp folder: C:\Users\*****\AppData\Local\Temp\3\IMGMGR_install_temp_qj0x3ga5.obv.
    PROGRESS: 10: Mounting Windows image: D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim. This might take a few minutes.
    ERROR: Unable to generate catalog on D:\Windows8.1 TEST3\Operating Systems\Windows8.1 x64\Sources\install.wim: System.ComponentModel.Win32Exception: The process cannot access the file because it is being used by another process
       at Microsoft.ComponentStudio.ComponentPlatformInterface.WimImageInfo.PreCreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageInfo.CreateCatalog()
       at Microsoft.BDD.Catalog.Program.DoCatalog()
    Non-zero return code from catalog utility, rc = 2002

  • Using Bridge as Image catalog

    We are using Bridge to catalog our reference images and have run into a snag. When I was showing another person how to connect to our image library through Bridge and do a search, he did not get the same search results as I did, even though he was doing the same search in the same way. He only got a fraction of the images I got in response to the same search. I had him click on a directory which I knew contained other images that should have appeared and the images loaded into the main window. After that was done, then the images showed up in the search. So it was like the files won't appear in a search until they've been indexed in Bridge by loading them in the main window. I'm just guessing here.
    Does anyone know of this issue and the best way to work with it? An image search doesn't do much good if you can't trust it to find all the right images, even ones that have been recently added by someone else.
    Help!
    thanks
    Su

    So it was like the files won't appear in a search until they've been indexed
    in Bridge by loading them in the main window. I'm just guessing here.
    Your guess is at good it gets!
    Does anyone know of this issue and the best way to work with it? An image
    search doesn't do much could if you can't trust it to find all the right
    images, even ones that have been recently added by someone else.
    Here is the tricky bit, it seems that indexing files like cache is user
    specific. When using the export cache to folder option I don't believe this
    also export the index but I'm not sure about that. But even exported cache
    files need to be read first by other users to gain same speed and previews
    when exported. Personal I can't use export cache to folders due to a
    longstanding bug on my system. But then again, I also don't have the need
    for that function.
    As I'm a known big fan of Bridge the use of it as a Digital Asset Management
    system for archive purpose is far from ideal if not unusable in the long
    run.
    To my opinion it is not suitable for this function due to the constant
    change of used cache files throughout different version and still cache
    handling is far from what it should be and we are not sure what they come up
    with in next version (And I hope it is a completely other way that can be
    used ).
    The Image Browser that was the Bridge predecessor in PSCS1 was until today
    the best in handling and exporting cache and yet we are in Bridge version
    4...
    They changed it for the better and albeit CS5 handles cache reasonable
    stable I still dump the complete cache every know and then to start over.
    Working with large amount of big DNG files as I use in my workflow combined
    with HQ preview results in very large central cache files that often reach
    40 GB in size.
    To compare, for DAM I use Canto Cumulus single user. The cache size for over
    50 K of developed files (my keepers) has a size of 1 GB. Search takes a
    split second and building the catalog is light speed compared to building
    cache and indexing when using Bridge.
    There are some other DAM applications that do this job also much better then
    Bridge, while on the other hand they aren't that good in sorting, rating,
    renaming, metadata as Bridge is
    But be aware that they are build for single user, if you want trustable
    working over network you better start saving and look at a suitable
    application for this that will mostly be build to be customized to your
    situation. Canto Cumulus does so but as said, the single user version is
    around 300 dollar while the network version starts about ten times that
    price.

  • Can I use Bridge to export image data into a .txt file?

    I have a folder of images and I would like to export the File Name, Resolution, Dimensions and Color Mode for each file into one text file. Can I use Bridge to export image data into a .txt file?

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • How do you create a pdf catalog in bridge?

    How do you create a pdf catalog in bridge?

    Bridge is not a robust DAM (Digital Asset Manager), just a file browser.  It started out as nothing more than Photoshop's File Browser.
    Before anything else, would you please you are talking about a PDF Catalog of your images?

  • Problem using Image Processor from Bridge

    I have been using the Image Processor to process photos from Bridge for quite some time. However, I recently received an error message when I try to initiate Image Processor from Bridge and I have not been able to find any help topics that address my problem: I select images in Bridge to process, then click "Tools>Photoshop>Image Processor". Photoshop opens and the familiar Image Processor dialog box opens. Item 1 in the dialog box says "Process files from Bridge only" and has the number of files I have selected in parenteses. I select the file type and other settings in #3, and preferences in #4. When I click "Run", I get an error message window that says: "Script Alert. There were no source files that could be opened by Photoshop". The Image Processor works if I open the files in Photoshop first, then run it by selecting "File>Scripts>Image Processor" and tell it to process all open files.
    Would someone be able to help me with this problem?
    Thanks, Larry

    Usually when it worked before and not now, and you have added no new software or hardware I recommend resetting the preferences.  Hold down the Ctrl key and click on the Bridge icon to start.  You should get a reset window with 3 options.

  • LR 5.6 on Mac desktop all of a sudden will not read any card from any reader but will work on my laptop. I can work on previous images but not import new ones. Even if I create a catalog on laptop and import to my desktop on a thumb drive, the images are

    LR 5.6 on Mac desktop all of a sudden will not read any card from any reader but will work on my laptop. I can work on previous images but not import new ones. Even if I create a catalog on laptop and import to my desktop on a thumb drive, the images are only accessible as long as the thumb drive is inserted.

    Sounds like you may need to repair the Disk Permissions on your drive where your images are stored.

  • How to create Image as Custom Property Type used in Configurable Web Part?

    I wanted to create custom configurable web part property for Image.
    Example - the screenshot of Image property used in Image web part is shown below:
    My goal is to create as many images as possible in custom configurable web part.
    I tried to write the code:
    [WebBrowsable(true),
    WebDisplayName("Example Photo"),
    WebDescription("Example Photo of the user"),
    Category("Custom User Profile"),
    Personalizable(PersonalizationScope.Shared)]
    public Image ExampleUserPhoto { get; set; }
    However, the result does not display Image configurable web part property.
    I wonder why the data type Image does not cause the custom web part to have Image configurable web part property.
    Other data types such as Boolean, Enum, Integer, String and DateTime can be used.
    How can I create Image as Custom Property Type used in Configurable Web Part?

    I have examined that context node __00 has been enhanced,and  has a class name  z___00. But  when I created a new attirubute by right click " Attributes" with wizard under context node __00.There is still  a error message "view is not enhaced or copied with wizard".
    But  when  I created a method  "getvaliation "  in the class of context node zcl__00, the attribute  'valiation' automatically created(at the same time the method "getvaliation' automatically  created for the attribute 'valiation') and I need not to create attibute 'validation' by wizard .  It seemed as if the problem is resloved. But when I make test for it in web ui .There is a runtime erro message.
    Do I need to make some configurations in  the business object layer  for the checkbox? but  the checkbox is only used as a flag  to decide whether a backgoud job is needed to be executed.
    Edited by: samhuman on Jun 22, 2010 10:31 AM

  • After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    Ok, the issue seem to be solved. The problem was this:
    The many hundred files (raw and xmp per image) have been downloaded by ftp in no specific order. Means - a couple of files in the download queue - both raw and xmps. Most of the time, the small xmp files have been finished loading first and hence the "last change date" of these xmp files was OLDER than the "last change date" of the raw file - Lightroom then seem to ignore the existence of the xmp file and does not read it during import.(a minute is enough to run into the problem)
    By simply using the ftp client in a way that all large raw files get downloaded first followed by the xmp files, we achieved that all "last changed dates" of the xmp files are NEWER than the related raw files. (at least not older)
    And then LR is reading them and all metadata information has been set / read correctly.
    So this is solved.

  • How to batch resize in Bridge CS6 or Image Processor using height only?

    I have batches of images that need to resized based on height only and would like to do so using Bridge/Image Processor. My height requirement is 1140px, however the original images are varied in landscape/portrait orientation and are of different aspect ratios (2:3, 3:4, etc). So far what I have had to do is filter in Bridge just the landscape images then select an aspect ratio, then plug into Image Processor the exact pixel dimensions of the resized images (that I discovered using Photoshop to resize and check the resulting pixel dimension). There has to be a more efficient way.
    An example of what I am running into:
    Image 1
    Original file = 5616 h x 3744 w Portrait orientation
    Resized file = 1140 h x 760 w
    Image 2
    Original file = 3744 h x 5616 w Landscape
    Resized file = 1140 h x 1710 w
    Image 3
    Original file = 4652 h x 3489 w Portrait
    Resized file = 1140 h x 855 w
    From that example, is there a way I can plug just the height number in Image Processor (or any other Photoshop utility) so I can just batch out a bunch of images all at once?
    FYI - I am not interested in buying any new software such as Lightroom to accomplish this task. I would like to remain within Photoshop/Bridge if possible.

    You can do what you want with Image Processor without a script.  All you have to do is enter the number of pixels you want for the height (1140 pixels in your case) and then enter a number for the width that is wider than any image you will process.  Image processor will always resize the images to fit inside this rectangle.  That is, the height will always be 1140 and the width will fall where it may.  It works like the Fit Image command in Photoshop.

Maybe you are looking for

  • I need your help with Droid Razr HD

    My HD Keeps Locking up. I cant turn it off or change screens.  It gets stuck 'on the screen with power off airplane mode  but wont let you power off or swipe down and see setting . It wont move at all. Been like this for 4 hours. I even tried holding

  • My mini iPad screen is flashing all the time

    My mini iPad screen is flashing all the time

  • Message Server in place of Application Server in DS Datastore

    Hi, I'm trying to configure my SAP Application Datastore, linking it to the SAP message server instead of one of the four SAP application nodes available. The idea is to let the message server manage on which node the DS abap will be executed. I trie

  • Hisk Disk I/0 on Big table!!

    Hi, We have one big table in our production database 1 GB+ and most of online search done through application & reports use this table. Hence, large amount of I/O occurs & and response time is slow. To reduce the amount of disk reads i've moved the t

  • Lumia 920 heats up then loses cellular signal

    I've been having a problem with my Nokia Lumia 920 for the past 2 days already. It suddenly heats up, and then automatically, the phone loses its cellular signal! I can still use the phone because it's not freezing, but the signal just disappears. Wh