How to duplicate the same image side by side with automation

I need to create sets - many photos, I want to do it in batch or automated because it is a lot too. I need to reproduce the same image next, basically to make the beds twin-packs. Can someone help me please?

Thank you

If I understand what you're trying to do it right, then it could work. It is very similar to my previous post, but now uses a little action that I created.

(1) first, you need to action that I downloaded here

DupSideBySide.atn - box

(2) you then need to install the action. On the keyboard, press alt + F9 or option + F9 on a Mac to open the Panel actions. I always identify any existing action in the Panel. This does not remove them but clears the mess in the Panel shares. Then click «Clear all actions» Later, in order to restore the default actions just click on 'reset actions.

(3) in the Panel shares will now be empty. Click the icon in the upper right and select "load actions".

A dialog box opens and all you have to do is drag the action you just downloaded in this dialog box, highlight it and press load down.

(4) you should see action in the Panel shares.

(5) with the action in place start "image processor".

(6) fill out the dialog box as needed. I opted to save jpeg, psd and tiff, but action does not care what kind of file selected. There is also no need to use the same folder names and places as I used it because they are not hard coded in the action. I created a folder named duplication on the office, which contains a subfolder called sidebyside but once again the subfolder is optional. The big difference here is the 'perform action' box and my DupeSideBySide action is selected, as shown below.

(7) now, press the run button and it must duplicate and place next to all the images in the folder "duplication". The spacing between the images side by side is coded in the action are the borders hard, but I'm sure you can work out how to change them if necessary.

Tags: Photoshop

Similar Questions

  • How to print the same image twice on a piece of paper

    I try to print a graph of 5 x 7. I can open it in Microsoft photo viewer and the option to print as a 5 x 7 (2) is displayed, but when I click it it just pushes the chart to the top of the paper and leaves half white background. Is it possible that I can essentially put 2 of the same graphics on a piece of 8 x 11 paper and print it like that? I was just going to cut them after printing, so that way I can use half of the book, I'd use if I were to print everything on their own piece of paper

    If you select "5" x 7 "(2)" then replace "Copies of each image" 2, and you should get two 5 x 7 images side by side.

  • How can I print 2 of the same images on 1 page with bridge or CS4?

    Hello people

    Need to do a very simple task. I have an image created in photoshop is a particular size of a model I created. I need to put 2 of these photos on 1 page to print, to save on paper and effectiveness, etc.

    Is a very simple task yet, I'll get out my mind trying to do. I used the bridge after watching the tutorials. Very well, but the 2 images were not their original size.

    Any help would be appreciated. Thank you!

    The big P

    in CS3 or more you can make a contact othrwise Board create a new canvas in A4 to your resolution of printers and paste the image twice

  • How to create the ISO image of windows 8 with the help of boot, efi, sources, and support files

    Hello
    I followed folders in my USB key:

    Boot
    EFI
    Sources
    Support,

    and the following files:

    Setup
    Bootmgr.EFI
    Bootmgr

    How can I create an ISO image of windows 8 with the help of these files and folders. I even installed ADK, but I couldn't keep up with it.
    I would be very grateful if someone could help me out here.

    Secondly, I would also like to know how to create a system image of WINDOWS 8, where the hard drive breaks down.

    Concerning
    MAK

    If you have the upgrade key, go here

    http://Windows.Microsoft.com/en-us/Windows-8/create-reset-refresh-media

    You can go for the use of win8 / win7 / vista to match highlights you want - and download the win8 installation and run the installation with your key to download you need to install windows from that.  Will allow you to have an iso bootable.

    Make a picture of the control panel system / Windows 7 file recovery / system Image.  I certainly wouldn't put it on dvd.  It will be too.   Find an old preference portable hard drive and buy a $ 20 usb box, get an external hard drive.

  • How can I print wallet size of the same image on Photosmart Essential 3.5

    How to repeat the same image in paperback on Photosmart Essential 3.5

    Hello

    Don't know if its possible Essentials 3.5 but it is very easy in windows itself. Access the photo in windows explorer, right-click and select print. Selecht the size of paper you use, and then select Pocket on the right. See my photo of example for more details.

  • How to convert the Bitmap Image in BlackBerry

    Hello

    In my application, I get the picture from the server. Now, I want to convert this Bitmap Image to display on the screen. For this I use below codes. But it doesn't give me the same image does not mean with the clarity and the exact size. He's smaller than the picture.

    I used the codes below:

    private Bitmap getBitmapFromImg(Image img) {
            Bitmap bmp = null;
            try {
                Logger.out(TAG, "It is inside the the image conversion        " +img);
                Image image = Image.createImage(img);
                byte[] data = BMPGenerator.encodeBMP(image);
                Logger.out(TAG, "It is inside the the image conversion---333333333"+data);
                bmp = Bitmap.createBitmapFromBytes(data, 0, data.length, 1);
                } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return bmp;
            // TODO Auto-generated method stub
        }
    

    Here is the BMPGenerator class:

    public final class BMPGenerator {
    
            /**
             * @param image
             * @return
             * @throws IOException
             * @see {@link #encodeBMP(int[], int, int)}
             */
            public static byte[] encodeBMP(Image image) throws IOException {
                    int width = image.getWidth();
                    int height = image.getHeight();
                    int[] rgb = new int[height * width];
                    image.getRGB(rgb, 0, width, 0, 0, width, height);
                    return encodeBMP(rgb, width, height);
            }
    
            /**
             * A self-contained BMP generator, which takes a byte array (without any unusual
             * offsets) extracted from an {@link Image}. The target platform is J2ME. You may
             * wish to use the convenience method {@link #encodeBMP(Image)} instead of this.
             * 

    * A BMP file consists of 4 parts:- *

      *
    • header
    • *
    • information header
    • *
    • optional palette
    • *
    • image data
    • *
    * At this time only 24 bit uncompressed BMPs with Windows V3 headers can be created. * Future releases may become much more space-efficient, but will most likely be * ditched in favour of a PNG generator. * * @param rgb * @param width * @param height * @return * @throws IOException * @see http://en.wikipedia.org/wiki/Windows_bitmap */ public static byte[] encodeBMP(int[] rgb, int width, int height) throws IOException { int pad = (4 - (width % 4)) % 4; // the size of the BMP file in bytes int size = 14 + 40 + height * (pad + width * 3); ByteArrayOutputStream bytes = new ByteArrayOutputStream(size); DataOutputStream stream = new DataOutputStream(bytes); // HEADER // the magic number used to identify the BMP file: 0x42 0x4D stream.writeByte(0x42); stream.writeByte(0x4D); stream.writeInt(swapEndian(size)); // reserved stream.writeInt(0); // the offset, i.e. starting address of the bitmap data stream.writeInt(swapEndian(14 + 40)); // INFORMATION HEADER (Windows V3 header) // the size of this header (40 bytes) stream.writeInt(swapEndian(40)); // the bitmap width in pixels (signed integer). stream.writeInt(swapEndian(width)); // the bitmap height in pixels (signed integer). stream.writeInt(swapEndian(height)); // the number of colour planes being used. Must be set to 1. stream.writeShort(swapEndian((short) 1)); // the number of bits per pixel, which is the colour depth of the image. stream.writeShort(swapEndian((short) 24)); // the compression method being used. stream.writeInt(0); // image size. The size of the raw bitmap data. 0 is valid for uncompressed. stream.writeInt(0); // the horizontal resolution of the image. (pixel per meter, signed integer) stream.writeInt(0); // the vertical resolution of the image. (pixel per meter, signed integer) stream.writeInt(0); // the number of colours in the colour palette, or 0 to default to 2n. stream.writeInt(0); // the number of important colours used, or 0 when every colour is important; // generally ignored. stream.writeInt(0); // PALETTE // none for 24 bit depth // IMAGE DATA // starting in the bottom left, working right and then up // a series of 3 bytes per pixel in the order B G R. for (int j = height - 1; j >= 0; j--) { for (int i = 0; i < width; i++) { int val = rgb[i + width * j]; stream.writeByte(val & 0x000000FF); stream.writeByte((val >>> 8) & 0x000000FF); stream.writeByte((val >>> 16) & 0x000000FF); } // number of bytes in each row must be padded to multiple of 4 for (int i = 0; i < pad; i++) { stream.writeByte(0); } } byte[] out = bytes.toByteArray(); bytes.close(); // quick consistency check if (out.length != size) throw new RuntimeException("bad math"); return out; } /** * Swap the Endian-ness of a 32 bit integer. * * @param value * @return */ private static int swapEndian(int value) { int b1 = value & 0xff; int b2 = (value >> 8) & 0xff; int b3 = (value >> 16) & 0xff; int b4 = (value >> 24) & 0xff; return b1 << 24 | b2 << 16 | b3 << 8 | b4 << 0; } /** * Swap the Endian-ness of a 16 bit integer. * * @param value * @return */ private static short swapEndian(short value) { int b1 = value & 0xff; int b2 = (value >> 8) & 0xff; return (short) (b1 << 8 | b2 << 0); }

    Where an error in my code? Is there another way to do the same thing?

    Why you want to use a bmp image?
    You can just use png, jpg or whatever of the original image is.
    If there is a situation where you need the bitmap image call http://www.blackberry.com/developers/docs/7.1.0api/net/rim/device/api/system/EncodedImage.html#getBi...

  • I have accidentally subscribed an additional license of the same image to the title of the subscription of ten images, how can I remove it?

    New on adobe stock and try to find where to get the image without watermark trying I accidentally bought an additional license of the same image, can it be fixed and how I would get the image without the watermark?

    Hi Sarah,.

    You can't delete or off licence an image under license from the Stock. Since we Stock for the first time and have done that accidentally, I added a free credit on your account.

    Make sure you please use it properly to proceed.

    ~ David

  • Photoshop retains a recovery time and again the same image. How can I get him to stop?

    Photoshop retains a recovery time and again the same image. How can I get him to stop?

    I don't need the image. I tried to register on multiple locations.

    Looks like you have an orphaned recovery file. See thread http://forums.adobe.com/message/4664463#4664463

  • I have 2 folders with the same image

    I am new to lightroom and downloaded 7 years worth of photos. Before making this download of mass I had practiced setting up files and importing images in files. After I did the download of mass I have now 2 folders with some of the same images. How can I remove photos from a file and store it in the other. When I remove the image it removes them both files. Thank you

    No image files are in LR. They are just referenced where they are stored on your hard drive in the LR database file, catalog file. So if you have the same image in LR 2 different folders on your drive then you have the same image in 2 different folders. Go to one of the folders using the Manager program for your OS files and remove, delete, move to the trash or recycle bin, images which are duplicates of the other folder.

    You can also do in LR, displaying the contents of two folders and by selecting one of the duplicate images, then right-click on one of the selected images, and select Delete Images. then remove the disc to the next dialog box.

  • How to overlap the 2 images of data acquired in real-time?

    Hi all

    I'm now a measure of the FRET in the laboratory. 2-channel data are acquired and shown in 2D images separately analysis by using Labview. They are at the same scale and pixel. Now what I want to do is to put them into a single image, but the signals are shown in two different colors.  Or in another word, cover them in the same image. How this could be done? BTW, I now work with LabVIEW 6.1 (I know this is a pretty old version, but since the work earlier are to do with that, I have to stay with this version). Thanks in advance.

    Dear Franceing,

    I have studied your request, but I'm not convinced that you need to stay with the old version of LabVIEW. You can upgrade to the latest version of LabVIEW, but in this case you need to upgrade your nationalities created in version 6.1 Traoré. This could be quite a big job (if you use a lot of 'old' vi), but will give you the latest features and ease of use of LabVIEW 2009 in return.

    For your question, you might think using the function "IMAQ And.vi" (if it is available in your version). This function works as a logical AND (or NAND) VI and merges the two images together.

    I hope this will help you develop your application!

    Best regards

    Peter S

  • How to set the background image on my request.

    Hi all

    I use jdev 11.1.2.4.0 version

    use case: I create mobile applications and using the skin by default 'mobileFusionFx '.

    so when I run application there show black screen as a background image on my application

    My question is how to change the background image.

    Thank you

    Manish

    Resources of the Application open-> descriptors-> ADF META - INF-> adfmf-config. XML

    Check the family skin it and use in the skin of skin-addition id attribute.

    With this way automatically all your pages will use the same background image.

    In addition, background - image: url("images/back.png");    ---> It denotes that this images folder is inside the css file. If the pictures folder is a brother to css file, use

    background-image: url("..) (' / images/back.png ');

  • How to export the same MB size of my cr2 files in jpg or tiff files in Lr?

    How to export the same MB size of my cr2 files in jpg or tiff files in Lr?

    Let's say that my height is 22 MB, when I export the file in TIFF or jpg, although careful Iam with size of file settings, size, resolution, I can't manioukate how I want it.

    With jpg I tried everything, no matter what I do or a change in file size or meanless remains the same size - 7 mb instead of 22...

    Please advise,

    Best wishes

    T

    You should not even try to do it.

    JPG uses compression technology, so the files will have to be smaller than the original size of your RAWs. In addition, JPGs are 8-bit, while your RAWs are probably 14 bits, so the size needed to store your image will be smaller.

    Thus, there is absolutely nothing wrong with getting a 7 mb JPG of a 22 MB RAW.

  • Link to graphic images and display the same image on two different series

    I create a brochure DIN A5 landscape (l x h - 210 x 148) that has two pages each Board. Now, I want to connect two graphic frames on two different series (starting page 4 continued on page 5) to display the same image. This image is then next to each other after printing.

    Please take a look at the photos (situation and endresult).

    Could you please help!

    Thank you!

    Phil

    CURRENT situation

    link-image-to-another-page_1.jpg

    endresult

    link-image-to-another-page_endresult.jpg

    It is not clear to me that you understand that you should be setting this up as a file "facing pages" where each page is half of a spread, not the full-spread by page you started with. In order to impose the pages must be independent of each other in the file.

    From the screen shot it seems that when folded your book will be A5 landscape format, so if this is the case, you will want to set up as faced with pages A5 landscape. Guests will have a single page for the first and last pages, and the rest will be displayed as two-page spreads, just like your reader will see them. Given that this seems to be a folded booklet, you should also keep in mind that the number of pages should be a multiple of 4 - two sides of two pages per sheet.

    To a printer you will probably offer a PDF file, exported as a single document with individual pages in the reading order. If you want to print yourself, InDesign has a module simple integrated tax called booklet print in the file menu.

  • LR synchronize the same images in different folders

    I need to keep multiple copies of the same images in different folders (to follow the presentations to different agencies), but LR seems very erratic in the synchronization of the images that he considers already exist in the catalog - some duplicates appear, others do not, but it seems impossible to get all records to synchronize correctly. Is there a way to get around this?

    Yes, I remember, David. Happy, is always working.

    Assuming that the current workflow, I think that the answer will lie to determine which files are omitted. If file names don't match all files already in the catalog, I expect to arrive safely. But if the name a jpg corresponds to an existing file (ignoring the extensions) then there might be a conflict. A field's Edit > Preferences > Import where you can try JPEG process next to delayed raw files as separate files. But see if you can establish the model of which is imported and what is not.

    A pure solution of Lightroom would be not not to keep all these files. If you would have the main image (a gross or a tif worked) and then create virtual copies for each of the uses that you want to track - right - click on a thumbnail and create a virtual copy. Each CV has a copy name, which I would say setting (metadata Panel) use, Getty, Alamy etc. When you need to send it to the Agency, get the VC and export to the size and the required format, send the exported file, but do not keep a copy of the actual file - the VC could suffice. I put is more for you think more.

    John

  • Loading the same image several times

    I'm trying to dynamically load one image several times in flash. Basically, I want to end up with two movieclips mc1 and mc2 that contains the image. I am currently using the load (connected to the ProgressBar) component to dynamically load the image. It works very well for the loading of the image once, but I don't really know how to create a second clip with the image.

    Here is my code for loading the first image:


    var mc1:MovieClip = new MovieClip();
    var listener: Object = new Object();
    Listener.Complete = function (eventObj:Object) {}
    nextFrame();
    };
    imageLoader.addEventListener ("complete", listener);
    MC1 = imageLoader.content;
    imageLoader.load (imgURL);


    But everything that I tried to load mc2 with this same image has failed. I tried 'mc2 = imageLoader.content', 'mc2 = mc1', "attachMovie", "duplicateMovieClip", called imageLoader.load () twice on the imgURL and creating a second component Loader and load the image again. All of these methods have failed. Most of them can load mc1 alright and sometimes even mc2 appears on the scene, but in the mc2 AS is always undefined.

    Can someone point me in the right direction for the loading of multiple copies of the same image? It really shouldn't be so hard, does it?

    Well I found a solution. It turns out that Flash does not reproduce the content dynamically loaded as an image into a movieclip. But there is a small class called BitmapData that will do exactly what I was looking for. Here is the link that I got this info from: http://www.senocular.com/flash/source.php?id=0.174

Maybe you are looking for

  • Tecra A11 - Video No. via mini DisplayPort

    Hello I recently bought a mini DisplayPort-> HDMI cable to use with my Tecra A11 Notebook. My intention was to run two external displays by running a cable VGA for my LG W2242 monitor and run the mini DP to HDMI Cable to my HP 2509 m Monitor. Unfortu

  • Fact my reocvery for Satellite L350-170 drive works fine

    Hello I had my 2 discs of recovery for Satellite L350-170 and after putting the first says something about loading the files and the Microsoft bar comes on.Now I have a black screen with a cursor white arrow on it. Does that mean his work? I am a nov

  • measure 4-wire RTD

    Any module can do 4-wire RTD measurement with resistance heat about 10 to 20 k ohms, total 20 channels, thank you.

  • My CD-ROM drive used to work, now it says it's missing! Can anyone help?

    I don't know what happened, computer laptop, it is only 7 months old.

  • Compaq Presario cq60 - 219tu processor upgrade

    Hello I need to upgrade my Compaq Presario cq60 - processor of the computer laptop 219tu for a quick. Is this possible? If so, what are the processors compatible with this model? And what I need to change the power supply for the new processor? Help