Jpegs

How can I combine two jpegs on to one slide?

Open both jpegs in the Elements editor. Make a note of the dimensions e.g. 300 x 200 pixels each.
On the menu bar click File à New à Blank File
Choose Custom preset and type your dimensions into the width and height boxes so that both images will fit e.g. 600 px width and 200 px height. Set resolution to 72 ppi (or 300 ppi if you intend to print) and set background color to white or whatever you prefer. Then click OK.
Now click on your first jpeg in the project bin and drag it on to your blank template. Do the same for the second jpeg. If they both drop in the centre you may need to drag them apart by selecting the move tool.
They should snap to the edges of your template.
If you need a space between the two images, make your document slightly bigger.
When finished click File à Save As and create a new jpeg file.
 

Similar Messages

  • Image is not saved in jpeg/bmp file but ok with png

    Hi i am unable to save the image in disk in jpeg format.
    Here is the code.
    public void saveImage(){
    //if no filechooser is there means no image file opened.
            if(fileChooser==null){
                if(errorWindow==null)
                    errorWindow=new ErrorWindow(XXX.getPrimaryStage());
                errorWindow.showErrorWindow("There is no image to save !!\n");
            else{
                fileChooser.setTitle("Save The Image");
                File saveFile=fileChooser.showSaveDialog(XXX.getPrimaryStage());
                if(saveFile!=null){
                    System.out.println("saveFile path= "+saveFile);
                    //get the extension of output image to be saved.
                    //XXX: is the main class name(say)
                    outExtension=*XXX*.getImageExtension(saveFile);
                    //if user does not give extension: set default extension as jpg
                    if(outExtension.equalsIgnoreCase(saveFile.getName())){
                        outExtension="jpg";                   
                        String newPath=(saveFile.toString())+".jpg";
                        saveFile=new File(newPath);                   
                    Task task = new Task<Void>() {
                        @Override
                        public Void call() {
                            Platform.runLater(
                                    new Runnable() {
                                        public void run() {
                                            try {
                                                //The image is inside ImageView->inside ScrollPane-> inside TabPane.
                                                Image curImage=XXX.getCurrentImage();
                                                int width=(int)curImage.getWidth();
                                                int height=(int)curImage.getHeight();                              
                                                System.out.println("cur image width= "+width+" ht= "+height);
                                                bufferedImage=new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB );
                                                //set the current image to awt Buffered Image
                                                SwingFXUtils.fromFXImage(curImage, bufferedImage);
                                                    imageTabPane=xxx.getImageTabPane();
                                                    Tab tab=imageTabPane.getSelectionModel().getSelectedItem();                                    
                                                    TabPane childTabPane=(TabPane)tab.getContent();
                                                    ScrollPane sp=(ScrollPane)childTabPane.getSelectionModel().getSelectedItem().getContent();
                                                    final ImageView imageView=(ImageView)sp.getContent();
                                                    WritableImage wim = new WritableImage(width,height);
                                                    imageView.snapshot(null, wim);
                                                    System.out.println(" snapShot width= "+wim.getWidth()+" ht="+wim.getHeight());                             
                                                    *ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);*
                                                       //<------ its not working  for png,jpeg,bmp,gif                                          
                                                    // the below lines are working only for png and gif
                                                    OutputStream out = new FileOutputStream(saveFile);                                                
                                                    ImageIO.write((RenderedImage) bufferedImage, outExtension, out);
                                                    out.flush();
                                            } catch (Exception ex) {
                                                Logger.getLogger(FileMenuController.class.getName()).log(Level.SEVERE, null, ex);
                                                //ex.printStackTrace();
                                            System.out.println("finished");
                            return null;
                    Thread th = new Thread(task);
                    th.start();
                }else{
                    System.out.println("File is not saved");
        }//saveImageNote: The above code is executed in ubuntu(10.04) using Netbeans 7.2(Javafx(2.2), java(1.7.0_11).
    When i run(from terminal) separately in a new class with an image in an Imageview( inside a Vbox) and take the snapshot
    of the imageview and write into the file using ImageIO.write(SwingFXUtils.fromFXImage(wim,null), outExtension, saveFile);
    with any extension (jpeg,png etc) it is working fine.
    Please help me.
    Any small hint is also helpful.Please feel free to comment or give suggestion.
    Edited by: 963038 on Feb 17, 2013 7:14 PM

    When i omit the line OutputStream out = new FileOutputStream(saveFile);
    and write only
    ImageIO.write((RenderedImage) bufferedImage, outExtension,saveFile);
    //out.flush();
    then saving the image even in "png" also fails.
    The following is the error code:
    Note : FileMenuController is my file where the saveImage() is wrtten.
    javax.imageio.IIOException: I/O error writing PNG file!
    finished
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at *newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)*
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more
    javax.imageio.IIOException: I/O error writing PNG file!
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1168)
         at javax.imageio.ImageWriter.write(ImageWriter.java:615)
         at javax.imageio.ImageIO.doWrite(ImageIO.java:1612)
         at javax.imageio.ImageIO.write(ImageIO.java:1536)
         at newciptk.controls.menu.file.FileMenuController$1$1.run(FileMenuController.java:205)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.io.IOException: Operation not supported
         at java.io.RandomAccessFile.writeBytes(Native Method)
         at java.io.RandomAccessFile.write(RandomAccessFile.java:499)
         at javax.imageio.stream.FileImageOutputStream.write(FileImageOutputStream.java:124)
         at javax.imageio.stream.ImageOutputStreamImpl.writeInt(ImageOutputStreamImpl.java:91)
         at com.sun.imageio.plugins.png.ChunkStream.finish(PNGImageWriter.java:136)
         at com.sun.imageio.plugins.png.PNGImageWriter.write_IHDR(PNGImageWriter.java:401)
         at com.sun.imageio.plugins.png.PNGImageWriter.write(PNGImageWriter.java:1135)
         ... 9 more

  • Since updating Firefox as suggested, when I 'save as' a jpeg, it automatically finds the folder and it's always the wrong folder. How can I disable this feature and go back to the original mode where it remains in the folder I choose until I change it?

    For example, I saved a jpeg named 'picasso the guitarist'. I have folders titled A to Z. When I click 'save as' it might open the 'K' folder and I have to manually search the 'P' folder for 'Picasso' and save file. The most irritating thing is, when I 'save as' another jpeg of say 'pieter mother & child' it goes to another folder and does not remain in the 'P' folder, rather it goes to the 'X' folder or some other. This didn't happen before the last upgrade. Can I disable this new 'help' feature that is taking more time than the old version?

    Current Firefox versions remember the download directory based upon the URL, so if the URL changes then the default folder may be chosen if there hasn't been selected a download folder before for that server.
    *[[/questions/889958]]
    *[[/questions/882443]]
    Bug 536503 - Last downloaded-to directory should be remembered on a site-by-site basis
    Firefox 11 will have a workaround by providing a pref (browser.download.lastDir.savePerSite) to disable this feature.

  • When creating a DVD face in Photoshop 13 my save options are limited to .PSE and .PDF.  Why can I not save as a jpeg or other file format?  This was never an issues in Elements 10 (my previous version).

    I just recently purchased Elements 13. I am in the process of creating a DVD face for a video. The design is complete and I would like to be able to save it as a JPEG so I can use it in another program that prints my DVD's. The problem is that it only allows me to save the file as at PSE or a PDF. No other options are available. Why is this?  I upgraded from Elements 10. In Elements 10 I have never had a problem saving this type of project as a JPEG.  Any help would be greatly appreciated.  Thanks!

    ANSWER FOUND!
    Once I finished composing my question I went back and spent some time to figure out the problem. Rather than choosing the "save as" option, which doesn't work, or attempting to choose "export" (grayed out), the correct option is to choose "export creation", which is near the very bottom of the initial drop down options. That works!  I still think it would make sense to have it as an option in the "save as" area.

  • How to set jpeg resolution when saving pdf file as jpeg

    I'm running Acrobat using interprocess api, I can invoke a script to save a pdf file as JPEG, but I need to be able to set the resolution of the saved jpeg file.
    Any clues as to how I can do that ?
    Peter

    Hi
    I am running a stand-alone version of Framemaket 10.I try to convert a documentation with a lot of screenshots in it. Regardless of the settings on the Reference pages of the first document of the book, Framemaker converts all graphic files to *.gif, and these are downsized so much that they become illegible. I would like to have them converted to JPG, with little resolution loss, so they are still readable.
    I think Robohelp is too expensive…
    Best regards
    REIDEN TECHNIK AG
    Alexander Keller
    Tech Writer

  • Media Encoder CC won't import a JPEG sequence to the queue

    I am running Media Encoder CC 7.2.2.29 (64-bit) on OSX 10.9.4.
    I have a JPEG sequence GoPro timelapse image sequence that I want to encode into a video clip. All files have a .jpg extension. They are 4000x3000 and have an RGB color space. The Color profile is SRGB IEC61966-21. All images are 3.9MB.
    According to the ME help I should do the following.
    To add an image sequence, choose File > Add Source. In the Open dialog box, choose the first file of the image sequence. Enable the  Sequence Import checkbox for your file type, and then click the Open button.
    I follow the instructions and select the first image in the sequence. The "JPEG File Sequence" checkbox is active and I check it and click the Open button. The dialog disappears and nothing happens. There are no warnings.
    How does one get JPEG sequences to import to the queue?
    Please advise.
    -Travis

    Yes, import into premiere work fine. The nice part about using AME directly is you don't have to have to create a project or use an old one every time you want to crunch a timelapse. Also, AME has this nice feature where it will autoname the output file IMG[FirstStill]-[LastStill] (ie IMG[GP001234-GP001297]). This was helpful because GoPros change the first number in the sequence every time you stop and start time lapse.

  • Adobe Bridge (CS6) - bulk action - JPEG Options must be OKed for every image

    Hi all-
    I created an action script for a watermark in Photoshop CS6. Then, I ran my script as a bulk action in Adobe Bridge (CS6) against my JPEGs. However, the JPEG Options dialog/window appears for every image in PS. Is there a way to have this automatically OK (and at the highest quality) so that I don't have to sit and click OK over and over?
    I am on a Mac btw.
    Thanks!

    Please help

  • How to view .jpeg files in Yosemite

    Am using Yosemite (10.10.2) on my iMac and want to view rather old .jpeg photos. When I attempt to open them, I get an error message saying Photoshop 3.0 is required. When the file titles are displayed in Finder, I can see the little-bitty picture, so I think the Mac knows the picture is there, just reluctant to let me view it.  (I tried using Preview and iPhoto and neither one works for this.)
    Is there some way to view these photos with the existing Mac programs?
    Thank you,
    TBS2

    Thanks for all the replies. I tried to respond to everyone individually, but the rules say I can only post content every 30 seconds. Hence this combined reply.
    Don't have "Quick Look" on my iMac. I did use the "Get Info" option to open all .jpeg files with Preview. Didn't work. Did try to open the files from within Preview using the "Open file" option.
    Tried opening with Firefox (thanks to whomever posted that hint somewhere on the blog) and the Firefox error message says there is an error in the file.
    I am able to open other .jpeg files with Preview, so I am now of the belief there is a problem with the file, not with how my system is handling it.
    Suppose a "fixer" of some kind is in order, but I don't know what that is!
    Thanks again for everyones help.
    TBS2

  • Lightroom JPEG export VS Photoshop Image Processor

    Hey guys:
    Long time photoshop and lightroom user (long time user of all things Adobe). First post here in the forums. I did a search for my question but I think it was too specific, so it returned zero results.
    My question is about Lightroom's JPEG export vs Photoshops Image Processor. When I export a RAW file to JPEG from Lightroom, the file size is freaking huge. The JPEG is as big as my original RAW file (~25mb). Settings are set to default - 100 quality. Everything else remains untouched.
    However, when I use Photoshop's image processor (I launch it through Bridge, easier that way for me) and process the RAW images that way, my JPEGs are roughly 5-10mb in size. Settings in Image Processor are quality 10 and thats it. No actions being run or anything.
    Can anyone shed some light as to why Lightroom exports JPEGs that are roughly 2-4 times the size of Photoshop's JPEGs? My initial thoughts are that the 100 quality setting in Lightroom is more like Photoshop's quality 12 (that always makes me think of Spinal Tap - "Why don't you just make ten louder and make ten be the top number and make that a little louder?" "These go to eleven.") Ideally, exporting out of Lightroom would be much easier for my workflow.
    Thanks in advance.
    -The Doctor

    DrMilesBennell wrote:
    Can anyone shed some light as to why Lightroom exports JPEGs that are roughly 2-4 times the size of Photoshop's JPEGs? My initial thoughts are that the 100 quality setting in Lightroom is more like Photoshop's quality 12 (that always makes me think of Spinal Tap - "Why don't you just make ten louder and make ten be the top number and make that a little louder?" "These go to eleven.") Ideally, exporting out of Lightroom would be much easier for my workflow.
    You are correct: LR Quality 100 = PS Quality 12
    Despite LR having 101 Quality settings (0 to 100) it actually only has 12 Quality settings the same as PS 'Baseline Standard':
    JPEG Quality Setting Comparison
    PS
    LR
    LR Range
    Typical Reduction
    0
    0
    0-7%
    11%
    1
    10
    8-15%
    23%
    2
    20
    16-23%
    14%
    3
    30
    24-30%
    14%
    4
    35
    31-38%
    16%
    5
    40
    39-46%
    24%
    6
    50
    47-53%
    4%
    7
    55
    54-61%
    27%
    8
    65
    62-69%
    25%
    9
    70
    70-76%
    31%
    10
    80
    77-84%
    35%
    11
    90
    85-92%
    41%
    12
    100
    93-100%
    I keep a small copy of the above table taped to my monitor. I chose the numbers under the 'LR' column for the 12 steps (not AA's) to make it easier to remember. In actuality ANY number in the LR Range column will produce the same results for each step.
    Under the 'Typical Reduction' column notice the small amount of reduction for PS 6 (LR 47-53%) Quality setting. If interested why AND why you probably shouldn't use PS 7 (LR 54-61%) Quality setting see this post:
    http://forums.adobe.com/message/5641903#5641903

  • "Save image" button of Camera Raw does not save JPEG with modifications made.

    I am using Bridge CC to process my RAW images and make modifications to some JPEG images as well.  I have no need to further alter images in Photoshop at the moment, so I do all modifications in Camera Raw. After altering my images, I then press the "save image" button at the left bottom corner of Camera Raw and choose the settings to save in JPEG.  However, when I upload these JPEG images to a website or when I email them, the image is uploaded without the modifications I had done!  It seems to me that Camera Raw is saving JPEGs the same way it does for RAW images, in a non-destructive manner, only attaching instructions for the images to be displayed properly on Photoshop. But when I save an image in JPEG, I expect the image to be saved entirely with the modifications I made while still keeping the original RAW file.  What goes on then?  What is Camera Raw doing and how do I get to save a modified image in JPEG with Camera Raw?  Would you please explain?
    Many thanks for your help,
    Beza

    Hi,
    What version of camera raw and operating system are you using?

  • Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help

    Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help with this, please.

    jpg does not support Layers.
    Just to make sure, what exactly do you mean by "stacking photos" and what do you want to achieve thereby?

  • Photoshop CS2 won't save files in JPEG format

    I have Windows Vista and am using Photoshop CS2 Version 9.
    Until today everything was working fine, but there are two problems.
    1. Only today I have a limited amount of formats to save a .PSD file in:
    PSD, CIN, PDF, RAW, PNG, and TIFF.
    Whereas if I want to save a JPEG file per say as another format, I get the full list to choose from.
    2. If I choose a layer on an image, not all the filters show up that I can run it through. The 'Artistic, Brush Strokes, Pixelate, Sketch, and Stylize' are not clickable.
    Thank you.

    You slipped into 16 bit mode. Try going back to 8 bit.

  • Can not save jpeg file

    I wish to capture jpeg images from my webcam and keep them in webserver so that live video can be downloaded. Because my adsl connection can upload @ max. 256 kbps, I can only transmit 2/3 frames per second. But for testing purpose on local machine I am capturing 10 frams per second ( seting timer for 100 milliseconds)
    My program starts capture but after 2/3 or 5/6 frames it simply exts without giving any errors. I have tried to debug. But can not find which exception is causing the program to exit. Pl. help me diagnosing the problem :
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.imageio.*;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.util.*;
    * Grabs a frame from a Webcam, overlays the current date and time, and saves the frame as a PNG to c:\webcam.png
    * @author David
    * @version 1.0, 16/01/2004
    public class FrameGrab
    static String filName;
    static int no = 1;
    static CaptureDeviceInfo deviceInfo;
    static Player player;
    static Image img;
    static BufferedImage buffImg;
    static FrameGrabbingControl frameGrabber;
    static Buffer buf;
    static Graphics2D g;
         public static void SaveFrame() {
    onceAg:
    System.out.println("Trying to grab frame !");
    frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
    buf = frameGrabber.grabFrame();
    System.out.println("grabbed frame !");
    // Convert frame to an buffered image so it can be processed and saved
    try {
    img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
    } catch (Exception e) {
    System.out.println("exception using BufferToImage " + e);
    SaveFrame();
    try {
    buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
    } catch (Exception e) {
    System.out.println("exception creating new BuffImg " + e);
    SaveFrame();
    System.out.println("Buffer image created !");
    try {
    g = buffImg.createGraphics();
    } catch ( NullPointerException e) {
    System.out.println("exception creating graphics 2d " + e);
    SaveFrame();
    g.drawImage(img, null, null);
    filName = Integer.toString(no) + ".jpg";
    System.out.println("saving " + filName);
    // Save image to disk as jpg
    try {
    ImageIO.write(buffImg, "jpg", new File(filName));
    } catch ( IOException e ) {
    System.out.println(" IOException " + e);
    SaveFrame();
    } catch ( Exception ex ) {
    System.out.println(" Exception " + ex);
    SaveFrame();
         no++;
    public static void main(String[] args) throws Exception
    // Create capture device
    deviceInfo = CaptureDeviceManager.getDevice("vfw:Microsoft WDM Image Capture:0");
    player = Manager.createRealizedPlayer(deviceInfo.getLocator());
    player.start();
    // Wait a few seconds for camera to initialise (otherwise img==null)
    Thread.sleep(2500);
    final java.util.Timer timer = new java.util.Timer();
    timer.scheduleAtFixedRate(new java.util.TimerTask() {
    public void run() { SaveFrame();}}, 0, 100);
    // Grab a frame from the capture device
    // Stop using webcam
    player.close();
    player.deallocate();
    System.exit(0);
    Files are saved as 1.jpg, 2.jpg and so on. My another html page downloads these pictures @ every 100 milliseconds using javascript so that no seperate program is needed to show the video.
    Pl. let me know how can I continue to save files .

    Thank you so much catfoss.
    I gave thread.sleep(60000) and was able to record more than 300 frames !. So, once again thanks a lot to pinpoint the error.
    Now I am modifying the program and instead of using Thread.sleep I am going to use keyboard input ( Program will wait till Q is pressed. )
    For thoe who are interested in viewing these pictures here is my javascript source, which show the live video :
    <html>
    <head>
    <script type="text/javascript">
    var no = 1;
    var filn = "";
    var myId;
    function stopIt()
    alert("stopping!");
    clearInterval(myId);
    alert("Interval Stopped!");
    function startIt()
    alert("Starting animation!");
    myId = setInterval("changePic()",400);
    //setTimeout(stopIt(),27000);
    function changePic()
    // alert("change time");
    no++;
    filn = no + ".jpg";
    // alert(filn);
    document.getElementById("b1").src =filn;
    </script>
    </head>
    <body>
    <img border="0" alt="Live video" src="1..jpg" id="b1"/>
    <input type="button" name="startbut" value="Start Animation" onclick="startIt()">
    <input type="button" name="stopbut" value="Stop Animation" onclick="stopIt()">
    </body>
    </html>

  • Unable to open JPG file, getting "unknown or invalid JPEG marker was found", help needed

    Info:
    MS Windows 7 Home Premium 64-bit SP1
    Adobe Photoshop 64bit CS5 etxended (Version 12.0 x64)
    So downloaded some JPG files from the web and trying to use some of them as wallpapers. I am able to open them in Windows viewer and some other prgrams but they are the wrong size for my screen so I wanted to change the resolution and opened them into CS5 and sound that some of them would not open. I am getting the following error "Could not complete your request because an unknown or invalid JPEG marker was found" and yet there does not seem to be anything I can do to resolve this to open them into CS5.
    Any thoughts or advice?

    Open them into another viewer, copy, then FIle-New in Photoshop and Paste.
    Photoshop is picky and a file that does not properly follow the JPEG standards could cause this kind of problem.  Other apps are sometimes more forgiving.
    -Noel

  • I cannot erase alias JPeg images on a memory card so that it will not accept any more which I try to load onto it, yet there are no actual images available if I click on any of them. The error message states that one or more cannot

    Cannot delete aliases for JPeg images on a lumix camera memory card even selecting individual images anjd trying to move to trash -error35 one or more items cannot be found. No image available on clicking or if card put back into camera-"no images to disply" Yet if try to add more images, message that card is full! Any suggestions?

    Deleting from iPhoto or image capture after import should be fine and shouldn't cause any issues. Deleting from the folder view of finder, can cause issues as the camera can the image is still there. You can try emptying the trash on your mac if you deleted them via the finder, as although you've deleted it, it's only marked as trashed and not actually deleted until you empty the trash - ie it won't relieve the space taken by the files.
    If your still having issues after you try this, you may be best formating the memory card. This will wipe all data on it though, so make sure you do copy anything off that yo u want to keep! Format from the camera, so that choosing the format>erase all option from the menu of most cameras.

  • RAW files converted to JPEG files on my mac can't be seen by my customer who has a PC: WHY?

    I have been using Adobe CS5 for over a year now but only recently discovered how Adobe Bridge helps with work flow and post processing. My first time using Bridge I put all my RAW NEF files into folders and, after processing them in Photoshop, put all the JPEG files into a seperate folder. Before sending said JPEG images to my client, I batch renamed them to make sure the image file numbers were in the proper consecutive order. My client, who is a PC user, received these images and said she was unable to view them. Her computer system isn't outdated and I'm not sure what the issue is. I'm wondering if there was a formating change that happened when I did the batch rename or if the problem is Adobe Bridge altogether? I did all these on my Mac Book Pro which is only a year old..What am I missing??

    Did each image have its .jpg extension? i think Windows likes to see the extension, Macs don't care.

Maybe you are looking for

  • F-32 for one time customer code

    Hi, This is related with F-32 cusomer open item processing. It involves some of these document type....billing type RV , DA i.e. credit memo and many other. After processing open item if debit credit matches with differnce zero system easily post the

  • Process Controlled WF for Shopping Cart

    Hi, We have implemented process controlled workflow for shopping cart approval. 1. Created a bespoke schema for the approval process 2. Defined 5 process levels in the schema 3. changed the BRF event at the schema evaluation level. It now contains a

  • How do i put text in the picture

    how do i put text in the picture ?

  • Extraction and staging

    hi gurus... I am looking for TCodes in Extraction and staging of data in BW/BI...and the major upgrades from BW3.5 to BI7.0 regarding reporting only... Help is much appreciable.... Regards Sandeep

  • Cannot determine Internet graphics server on portal

    Hi Experts, We have installed BI server and EP (NW2004s). BI Java is installed on Portal. While running the BI query from WAD, with a template, only the tabular data is displayed and we are unable to display the graphs. There is an error message in p