Merging images - newbie query

I have an A3 picture that I have scanned in 2 parts using my A4 scanner and would like to know to find the easiest way of stitching them together with PS. I am aware of Autostitch, but want to produce a high resolution TIFF image. Can anyone direct me to a suitable tutorial - I do need click by click instructions though as I'm still feeling my way along with PS!

What is the problem with File->Automate->Photomerge? you can then change the resolution using Image->Image Size (if you need to) and save it as a TIFF as you would any document.
Using Photomerge: http://help.adobe.com/en_US/Photoshop/11.0/WSfd1234e1c4b69f30ea53e41001031ab64-75e8a.html

Similar Messages

  • Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix.

    Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix. Worked fine until now. Thanks

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • Is it possible to mail merge images?

    Can you mail merge images from a Numbers spreadsheet into Pages instead of selecting an image from the media inspector?

    Jen,
    That's not supported, as far as I know. Interesting idea though.
    Jerry

  • Merge acting odd. Merges image in front of some and behind others.

    I use the Merge with background function A LOT and have never had an issue... until today.
    Suddenly, when I select Merge (or CTRL + M) the image I am trying to merge is only 'partially' merging. Oddly enough it is being placed in front of one image on the slide and behind another image on the slide. Super weird.  I am expecting it to just place it in front of everything as it usually does.  I am dumbfounded. 
    I have combed thru the forum for an answer but I cant find an answer.
    NOTE: I do NOT have "Use Master Slide Background" selected (.... and never have had it selected as I dont work with Master slides). I have also closed and reopened CP6 and rebooted my computer.

    Rod,
    I do not have Master Slide Objects On Top selected either.
    For now I am going to leave the image in the timeline to cover the old image but I still just dont understand why/how Master slides would have anything to do with why trying to merge the image is acting so strange.
    I continues to place the merged clipart between other images that are part of the original slide... like a deck of cards and placing the merged image between two other cards.
    Lilybiri - Do you have any suggestions on what I might do with Master Slides to get the Merge to function?
    Thanks

  • Photoshop - combine red and green channel images into a merged image?

    Hi,
    I am a developmental biologist carrying out experiments on a type of microscope known as a Confocal Laser Scanning Microscope (CSLM).  Basically, this is a microscope coupled to some lasers which allow fluorescently-labelled parts of a biological sample to be imaged in high detail.
    For each sample there will be a set of two images produced, named and numbered as follows:
    sample01_g.tif
    sample01_r.tif
    Each image represents one fluorescent wavelength and correspond to green ( g ) and red ( r ).  These images are in rgb colour.
    I want to produce a merge of these two channels to generate a new TIFF file such that:
    Green channel is taken from sample01_g.tif
    Red channel is taken from sample01_r.tif
    Which would show me how the different channels co-localise, or not.
    This is fine to do by hand in Photoshop, but takes a long time when you have a couple of hundred images to process.  So, what I would like to do is write a script that batch automates the process, like a droplet.  I have the process outlined below:
    Create a new RGB TIFF called sample01_merge.tif
    Take the green channel from sample01_g.tif and copy it to the green channel of sample01_merge.tif
    Take the red channel from sample01_r.tif and copy it to the red channel of sample01_merge.tif
    Save sample01_merge.tif into a folder named "Merged Images" on the desktop
    Close the opened images
    Go to next set of images –> sample02_g.tif and sample02_r.tif
    Create a new RGB TIFF called sample02_merge.tif....and go through step 2-6, untill the last set of images has been processed.
    I have never used script before and would love to learn, but I am making slow progress and would like to have this problem solved sooner than I will be able to do so by myself.  So... I was wondering if anyone could give me some advice on how to go about doing this?
    Any help will be greatly appreciated!
    I use a Mac Pro running OSX 10.8.3 and Photoshop CS6 Extended
    Best regards,
    John

    Yes, as I said it wasn't finished and wasn't meant to be used. It was just to show that working with image sets based on a name pattern is easy.
    Here is a version that does do the merge and save using applyImage.
    Note: for applyImage to work the images in each set need to be the same size. Some of your jpeg samples were not. This worked with one set by not the other.
    // make a reference to the savedFolder
    var savedFolder = new Folder('~/desktop/Merged Image');
    // create the folder if it doesn't exists
    if(!savedFolder.exists) savedFolder.create();
    // get the source folder from the user and store in variable
    var sourceFolder = Folder.selectDialog();
    // make sure user selected a folder
    if(sourceFolder != null){
        // get an array of red images and store in variable
        var sourceFiles = sourceFolder.getFiles(/_r\.tif$/i);
        // make a loop to process all found sets.
        for(var i = 0; i < sourceFiles.length;i++){
            var redName = sourceFiles[i].name;
            var greenName = redName.replace('_r','_g');
            var redImage = open(sourceFiles[i]);// open the red file and store reference to document
            var greenImage = open(new File(sourceFolder+'/'+greenName));// open the green file and store reference that document
            // now select each channel and apply matching channel in redImge using lighten mode
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Red=Red'))];
            applyChannel( charIDToTypeID( "Rd  " ), redImage.name );
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Green=Green'))];
            applyChannel( charIDToTypeID( "Grn " ), redImage.name );
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Blue=Blue'))];
            applyChannel( charIDToTypeID( "Bl  " ), redImage.name );
            // select the componet channel( rgb )
            selectComponentChannel();
            // save the merged document
            SaveAsTIFF(savedFolder+'/'+redName.replace(/_r\.tif$/i,'_merged.tif'),true);
            // close the open documents for next loop
            redImage.close(SaveOptions.DONOTSAVECHANGES);
            greenImage.close(SaveOptions.DONOTSAVECHANGES);
    function applyChannel( channelID, documentName ){
        // charIDToTypeID( "Rd  " )
        // charIDToTypeID( "Grn " )
        // charIDToTypeID( "Bl  " )
        var desc = new ActionDescriptor();
        var channelsDesc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID( "Chnl" ), charIDToTypeID( "Chnl" ), channelID);
        ref.putProperty( charIDToTypeID( "Lyr " ), charIDToTypeID( "Bckg" ) );
        ref.putName( charIDToTypeID( "Dcmn" ), documentName );
        channelsDesc.putReference( charIDToTypeID( "T   " ), ref );
        channelsDesc.putEnumerated( charIDToTypeID( "Clcl" ), charIDToTypeID( "Clcn" ), charIDToTypeID( "Lghn" ) );
        channelsDesc.putBoolean( charIDToTypeID( "PrsT" ), true );
        desc.putObject( charIDToTypeID( "With" ), charIDToTypeID( "Clcl" ), channelsDesc );
        executeAction( charIDToTypeID( "AppI" ), desc, DialogModes.NO );
    function SaveAsTIFF( inFileName, inLZW ) {
        var tiffSaveOptions = new TiffSaveOptions();
        if ( inLZW ) {
            tiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;
        } else {
            tiffSaveOptions.imageCompression = TIFFEncoding.NONE;
        app.activeDocument.saveAs( File( inFileName ), tiffSaveOptions );
    function selectComponentChannel() {
        try{
            var map = {}
            map[DocumentMode.GRAYSCALE] = charIDToTypeID('Blck');
            map[DocumentMode.RGB] = charIDToTypeID('RGB ');
            map[DocumentMode.CMYK] = charIDToTypeID('CMYK');
            map[DocumentMode.LAB] = charIDToTypeID('Lab ');
            var desc = new ActionDescriptor();
                var ref = new ActionReference();
                ref.putEnumerated( charIDToTypeID('Chnl'), charIDToTypeID('Chnl'), map[app.activeDocument.mode] );
            desc.putReference( charIDToTypeID('null'), ref );
            executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
        }catch(e){}

  • Merging Images

    I'm planning on purchasing a macbook or macbook pro very soon, and wanted to add Aperture, but one of the reviews freaked me out, it said they were unable to merge images to form a panorama. is this really true? I figured aperture was like adobe photoshop or paint shop pro where merging images is not a problem, does anyone out there know?

    Yes, Aperture for cataloging, editing, sorting, quantities of images,some nice exposure control, web page creation, email to client directly from Aperture, stacks for your use if you are working through images and picking the best of similar shots... a lot of neat stuff like that, but no significant pixel level editing at this point. Aperture does however work nicely with Photoshop.. you can open a file from Aperture, directly into Photoshop, modify it, and the corrected image will be saved as a nice shiny new file in Aperture library, with all of your Photoshop modifications. Your original file (the one you opened in Photoshop from Aperture) will be untouched. Buy both applications... good idea.

  • HDR Pro on CS 5 - Merged image appears but bottom with save buttons cut off??

    When I select photos to merge, either via Bridge or within CS5 (Automate/Merge to HDR Pro), the Merged image appears over the CS5 screen.  However, the bottom of the HDR screen with the photos selected for the merge along with the Cancel & Save buttons are cut off.  The only way for me to exit HDR is to force quit.
    My monitor resolution is 1440X900 which is better than the 1024x768 required for CS5.
    I noticed the same problem in Terry White's video on Youtube describing workflow between Lightroom & CS5 HDR Pro (http://www.youtube.com/watch?v=rab25UTe6HY) as well as a couple of other users mentioning the problem to Zeno Bokor of Adobe (http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-78e5a.h tml).
    Does anyone have a solution???
    Thanks.

    I found the soluion - after spending over an hour with Adobe phone support (800-833-6687) - of which 45min was being on hold.
    It turns out that for some computers, Photoshop CS5 doesn't automatically work as efficiently as it could with the monitor resolution, even if the resolution is > than the minimum 1024 X 768.  This is more frequent in those that have had older versions of Photoshop in them. This causes part of the screen to be cut off when going into HDR Pro.
    One has to "prime" CS5 to recognize one's computer monitor settings.  How to do:
    Close out of PS CS5
    Go to system preferences and select hardware settings/display (For PC would have to go through Control Panel/Hardware/Display)
    Change monitor setting to one recommended by Adobe: 1024 X 768 or 1280 X 800
    Save changes.  Monitor will look less clear if you have been using higher settings...it's ok for now.
    Now open CS5 again and access HDR Pro all three ways available, i.e. via Bridge, Mini Bridge and through PS under File/Automate. 
    Verify that the entire screen is visible including all thumbnails and Save/Close buttons.
    Close out of CS5.
    Go back to System Preferences ( for PC, go through Control Panel) and change back to your preferred resolution.
    Voila! When you open CS5 again you should be able to see the entire screen.
    For example, I use a Macbook Pro with OS 10.6.7 and the monitor resolution  was set to 1440 X 900.  However, I still couldn't see the bottom of the  screen with the Save/Close buttons so couldn't save any work (had to  force quit or escape to exit HDR).  After doing the above steps, I am now able to use HDR Pro w/o problem and access the Merge via all three modes.
    Via  Mini Bridge - Choose photos to merge--> Tools (above photos, last on right in Content bar) --> Photoshop --> Merge to HDR Pro
    Via Bridge - Choose photos to merge--> Tools (Tool Bar beside "Adobe CS5 Bridge" at left top of screen; 3rd from end) --> Photoshop --> Merge to HDR
    Via inside Photoshop - File --> Automate -->  Merge to HDR
    Since this seems to have affected several people and is a simple solution, I have asked the supervisor I spoke to, Laurie, to please have someone in Adobe post this solution.
    Hope this helped.
    MJC

  • Merged images

    I want to know the process for merging 2 images in Lightroom.
    Now I know this is not yet possible within Lightroom.
    In my examle I've taken 2 images, one exposed for highlights, the other for shadows. In essence a digital GND filter.
    What would the process be in Lightroom.
    Do I adjust the 2 RAW files first
    bring them into Photoshop and merge image
    reimport into Lightroom
    or is there a better solution to this.

    Use Photoshop's File > Automate > Merge to HDR to take advantage of the differing exposures of the two RAW images. Lightroom doesn't have any tools for combining image data from two images.

  • Data Merge Image Alignments

    Greetings,
    I'm turning to this forum, as nothing I've tried has worked.  In a data merge using only merged images from a CSV Excel Workbook, everything is displaying generally the way I want.  But in one of the frames with a merged image the images will NOT align to the bottom of the frame!  I've tried setting the frame fitting properties *before* placing the image merge field into the frame.  I've tried selecting the previewed, linked image and configuring that.  Tried dragging the image. Nothing!  When I toggle the preview to refresh, it jumps right back up to the top left of the frame.
    I know this is not the most widely used practice in InDesign.  But any ideas would be appreciated!
    Thanks!
    Bill

    Thanks Mike!  Very kind of you to check back in.  I'm working with version 7.5.3 from CS 5.5 on a Mac.  I made sure it was up to date, and tried a couple more obvioius things.  But still nothing.  I can achieve my end without aligning the image to the bottom of the frame.  But the results are less than optimal.  I always become obsessed with this kind of thing until I can find an answer or a workaround.  One idea I thought might be interesting is to establish a grid and attempt to anchor the image to that grid.  But what makes this especially challenging is that we are dealing with variable image sizes that are linked to files on my hard drive.  If this were a static page, I"d be long done with this.  :-)
    To be clear about what I'm doing, I've hand-written variables from a contact list and scanned those contact variables (address, full name, salutation, greeting) into coorisponding directories on my hard drive.  On both the inside of a card as well as the outside of an envelope, I have two VDP frames, one above the other respectively.  In the case of the envelope, for example, I'd like the top frame that contains the contact's full name to format so the full name image sits on the bottom of its frame, so I can control how closely it displays above the frame containing the address below it.
    Anyway, still unsolved.
    Thanks again for checking back!
    Bill

  • Using Photoshop SDK to merge images in Web Application

    Hi,
    More of a query than an issue. We have an ASP.NET Web application - and our client has asked that we provide the facility to merge two images on the site. Basically, a user uploads their photo to the site - and then can choose to insert it into an e.g. postcard of the Eiffel tower.
    So, we use image layers - where we use Photoshop to create the Eiffel Tower postcard - and then the website user's image is layered behind that in a particular location.
    So, the question - can we use the Photoshop SDK to integrate with ASP.NET to take the website user's image and insert it into the appropriate position on the Eiffer Tower postcard image (using layers).
    Any other suggestion?
    NiallC

    The idea of using Photoshop to power a web application is scary. I
    think Adobe have more suitable tools for this environment (without
    user interface) though I can't bring any names to mind.
    Aandi Inston

  • Newbie Query regarding creation of Recovery disks and Backups

    Hello ppl/Admins,
    Some clarification required (my questions might seem dummy ...but i have no choice).
    I'm a newbie and just received my first laptop ever Lenovo 3000 N200 0769 (WinXP).
    My queries are:
    1) If i create a 'Complete Backup' under Lenovo care application will that include the entire hidden partition? Or do i need to  use some other software like Norton Ghost to  backup the entire image of the  hard drive?
    2)  Is there a way to only backup the hidden partition?
    3) I have noticed in other threads users refering to system and recovery disks, what/how are they used/created (i dont see any
        create recovery disk option under lenovo care button)? How does a recovery or system disk differ from a backup?
    My sole intention is to save/backup the hidden partition so that i could restore the laptop into its factory settings if things go wrong, so if anyone could help....it will be much appreciated.
    Thanks!

    Hi atomic, if you look under the lenovo program file you will see two different entries that relate to restore / recovery, I'm not at my machine now to directly tell you what is called, other than one is towards the top half and the other nearer the bottom.
    The one at the bottom has two options, the first is to create recovery media (I'm presuming this is for if rescue & recovery fails to boot up).
    Under this there is then a 2nd option that refers to creating a restore cd, of which it will only let you make s single copy under MS licencing.  I'm of the impression that if required and used, it will take a user back to factory restore settings i.e. original factory restore as it arrived.  This I'm presuming will image the partition as well.
    As for the other recovery option higher up the menu, this is for actuslly creating backups and restoring  system and/or files. 

  • Can't see the raster image in query model

    Hi,
    In RasterId model, I can see the raster image, the request XML is:
    <themes>
    <theme name="geor_theme" >
    <jdbc_georaster_query
    jdbc_srid="999999"
    datasource="scott"
    georaster_table="city_images"
    georaster_column="image"
    raster_id="1"
    raster_table="city_images_rdt"
    raster_pyramid="0"
    raster_bands="0,1,2"
    asis="false">
    </jdbc_georaster_query>
    </theme>
    </themes>
    But in query model, I can't see it, the request XML is :
    <themes>
    <theme name="geor_theme" >
    <jdbc_georaster_query
    georaster_table="city_images"
    georaster_column="image"
    raster_bands="0,1,2"
    jdbc_srid="999999"
    datasource="scott"
    asis="false"> select image from city_images where image_id=1
    </jdbc_georaster_query>
    </theme>
    </themes>
    Is there some attribute wrong?
    Thanks for your help
    a-Li

    Hi a-Li,
    to set the logging level to "finest" in MapViewer.
    1) Edit the configuration file mapViewerConfig.xml located in MapViewer's WEB-INF/conf directory. Uncomment the Logging Settings section and update the parameter log_level to finest.
        <logging log_level="finest" log_thread_name="false"
                 log_time="true">
           <log_output name="System.err" />
           <log_output name="../log/mapviewer.log" />
        </logging>2) Save the configuration file and restart MapViewer.
    3) Got to MapViewer's web admin page and add the data source to your data.
    4) Go to MapViewer's request web page and execute you request. You should see the log results in the console where you started OC4J (assuming you are using the standalone OC4J). Post the log.
    Joao

  • Table.Join/Merge in Power Query takes extremly long time to process for big tables

    Hi,
    I tried to simply merge/inner join two big tables(one has 300,000+ rows after filtering and the other has 30,000+ rows after filtering) in PQ. However, for this simple join operation, PQ took at least 10 minutes (I killed the Query Editor after 10
    minutes' processing) to load the preview.
    Here's how I did the join job: I first loaded tables into the workbook, then did the filtering for each table and at last, used the merge function to do the join based on a same field.
    Did I do anything wrong here? Or is there any way to improve the load efficiency?
    P.S. no custom SQL was used during the process. I was hoping the so called "Query Folding" can help speed the process, but it seems it didn't work here.
    Thanks.
    Regards,
    Qilong

    Hi!
    You should import the source tables
    in Access. This will speed up the work of
    PQ in several times.

  • Data Merge Image Paths

    I'm using CS5 on Mac OS 10.5 and 10.6 at work (I'm at home now, so I can't be more specific at the moment), and experimenting with Data Merge. I place an image, and use the "copy full path" feature in the links manager and paste it into my spreadsheet. When I do the actual merge, it works (the image is imported with the merge) if the path leads to a folder on my hard drive, but not if the path leads to an external drive.
    Does anyone know if the path that the links manager creates is the wrong syntax for using data merge? If so, is there some place where I can read the "rules" of how the text string should look?

    Yes!! It is so frustrating! I have to use my old version of InDesign (CS5) to do all my data merges that have images saved in multiple folders.
    If anyone has any ideas see below for the image error message that I, and my whole art department staff, get in CC 2014.
    I have read through this thread and tried all suggestions... Please help!!
    Data Source File: Karns TV Template-Week 219.csv
    Target Document: Top10TV - Small.indd
    Report Generated: 2/2/15 9:22 AM
    1) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Seafood:Salmon Fresh Chilean Fillets.jpg
    2) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Pork Loin Whole Bone in Raw.jpg
    3) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Chicken Leg Quarter-Raw on Cutting Board.jpg
    4) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:New-York-Strip-Steak-USDA.psd
    5) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Pork Chops Center Cut Rib.jpg
    6) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Deli-NEW:Roast Beef Sandwich.eps
    7) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Produce-Veggies:Apples-Variety.jpg
    8) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Beverages:Nestle Pure Life Water 24 count 16.9 oz 6827493471.eps
    9) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Dairy:Sargento Shredded Cheese Mozzarella 8 oz.eps
    10) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Baking Goods:Essential Everyday Pure Granulated Sugar 4 Lbs 4130301545.eps

  • Merge to Panorama creates a split image of the whole merged image

    When I attempt to create a Panorama using "Merge to Panorama"/Auto with 11 CR2 RAW photos from my Canon 5d Mark ii the result is that I get a split image: 5 photos merged on the top of the canvas, and 6 merged on the bottom. I am using the most recent versions of Photoshop CC 2014 and a Mac Pro with OS 10.9.5. The same thing happens with "Perspective" rather than "Auto". Is there a size limit to how big the merged photo can be?

    Disk Utility>Restore will copy the OSX, the Recovery Partition and ALL user data.  It will be an identical copy of the internal HDD.
    Third party software such as Carbon Copy Cloner can also perform that same function, but also allow for incremental changes.
    Ciao.

Maybe you are looking for