Stitching images with overlays

I am stitching one large imaq image from several smaller images using image to image copy.  The small images each have several overlays.  After the image to image copy the overlays from the small images are lost. How can this be avoided.  Or at least how can I get the overlay image information to manipulate it and reapply the data.
Is this possible, it seems that it should be.
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

The image overlay data is lost when performing the image to image copy because you lose the origin (0,0) of the small image, to which all overlays are relative.
You are going to need to user the IMAQ set overlay properties VI to configure the behaviors of the overlays before you copy them.
An easier method would be to merge the overlay with the picture before copy, but you would lose pixel data under the overlay, and the image would convert to RGB.
Machine Vision, Robotics, Embedded Systems, Surveillance
www.movimed.com - Custom Imaging Solutions

Similar Messages

  • Saving Binary Image with Overlay?

    Hi
    I'm having some issues saving an image with overlay information. I'm using IMAQ Find Circles to measure the radii of holes in a binary image. The hole data is then used with IMAQ Overlay Oval, to draw on ovals to highlight the circles detected. Works fine and the image is shown as expected in the image output on screen, pallette is set to binary. (See second image of 3, below)
    When I try and save the image to PNG I just get a blank (black) image. If I use the IMAQ Merge Overlay tool, I just get the green circles on the black (see last image of 3 below). Is there something I'm missing with pallettes/merging? Any help much appreciated. Snapshot of (messy) code attached.
    Solved!
    Go to Solution.
    Attachments:
    forum2.PNG ‏47 KB

    The problem is the binary image is all zeroes and ones.  A normal image goes up to 255, so a value of 1 looks black.
    One solution is to multiply the binary image by 255, which makes the image black and white.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Captuer image with overlay view

    Hi.
    i m on this for last 2 or 3 days.
    i have a UIImagePicker and set its source type to UIImagePickerControllerSourceTypeCamera. and i have an overlay view on it. Now i want to capture image with overlay view.
    i m not using camera controls picker.showsCameraControls = FALSE; and have my custom toolbar with camera button. code i tried is
    //btnCameraTaped
    -(void)btnCameraTaped:(id)sender
    CGRect contextRect = CGRectMake(0, 50, 320, 430);
    UIGraphicsBeginImageContext(contextRect.size);
    [picker.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    //above code save overlay view in viewImage
    [picker takePicture];
    - (void)imagePickerController:(UIImagePickerController *)picker1 didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *camImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    //trying to merge viewImage and camImage i don't know what it is doing i found it on stackoverflow
    UIGraphicsBeginImageContext(camImage.size);
    [camImage drawAtPoint:CGPointMake(0,0)]; //crash on this line
    [viewImage drawAtPoint:CGPointMake(0,0)];
    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    //saving it in photo library
    UIImageWriteToSavedPhotosAlbum(newImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    but code crashes on [camImage drawAtPoint:CGPointMake(0,0)];
    if any one have any idea what i m doing wrong. or is there any better way to do this.
    Usman

    finally found the solution from http://trandangkhoa.blogspot.com/2009/07/iphone-os-drawing-image-and-stupid.html
    - (void)imagePickerController:(UIImagePickerController *)picker1 didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *camImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    int width = camImage.size.width;
    int height = camImage.size.height;
    CGSize size = CGSizeMake(width, height);
    //create the rect zone that we draw from the image
    CGRect camImageRect;
    if(camImage.imageOrientation==UIImageOrientationUp
    || camImage.imageOrientation==UIImageOrientationDown)
    camImageRect = CGRectMake(0, 0, width, height);
    else
    camImageRect = CGRectMake(0, 0, height, width);
    UIGraphicsBeginImageContext(size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    //Save current status of graphics context
    CGContextSaveGState(context);
    //Do stupid stuff to draw the image correctly
    CGContextTranslateCTM(context, 0, height);
    CGContextScaleCTM(context, 1.0, -1.0);
    if(camImage.imageOrientation==UIImageOrientationLeft)
    CGContextRotateCTM(context, M_PI / 2);
    CGContextTranslateCTM(context, 0, -width);
    else if(camImage.imageOrientation==UIImageOrientationRight)
    CGContextRotateCTM(context, - M_PI / 2);
    CGContextTranslateCTM(context, -height, 0);
    else if(camImage.imageOrientation==UIImageOrientationUp)
    else if(camImage.imageOrientation==UIImageOrientationDown)
    CGContextTranslateCTM(context, width, height);
    CGContextRotateCTM(context, M_PI);
    CGContextDrawImage(context, camImageRect, camImage.CGImage);
    //After drawing the image, roll back all transformation by restoring the
    //old context
    CGContextRestoreGState(context);
    //For viewImage
    CGRect viewImageRect;
    if(viewImage.imageOrientation==UIImageOrientationUp
    || viewImage.imageOrientation==UIImageOrientationDown)
    viewImageRect = CGRectMake(0, 0, width, height);
    else
    viewImageRect = CGRectMake(0, 0, height, width);
    CGContextSaveGState(context);
    CGContextTranslateCTM(context, 0, height);
    CGContextScaleCTM(context, 1.0, -1.0);
    if(viewImage.imageOrientation==UIImageOrientationLeft)
    CGContextRotateCTM(context, M_PI / 2);
    CGContextTranslateCTM(context, 0, -width);
    else if(viewImage.imageOrientation==UIImageOrientationRight)
    CGContextRotateCTM(context, - M_PI / 2);
    CGContextTranslateCTM(context, -height, 0);
    else if(viewImage.imageOrientation==UIImageOrientationUp)
    else if(viewImage.imageOrientation==UIImageOrientationDown)
    CGContextTranslateCTM(context, width, height);
    CGContextRotateCTM(context, M_PI);
    CGContextSetAlpha (context,0.5);
    CGContextDrawImage(context, viewImageRect, viewImage.CGImage);
    //After drawing the image, roll back all transformation by restoring the
    //old context
    CGContextRestoreGState(context);
    //DO OTHER EFFECTS HERE
    //get the image from the graphic context
    UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();
    UIImageWriteToSavedPhotosAlbum(outputImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    //commit all drawing effects
    UIGraphicsEndImageContext();
    Usman

  • Exporting linked images with overlays

    Hi,
    I'm using InDesign CS5.5 on OS X Lion.
    I have linked images in my InDesign document that I want to export as JPG and maintain the original file naming scheme. That part is easy (export as HTML, look in the images folder; export as ePUB, look in the images folder of the archive; etc.). But what I'm struggling with is when there are overlays added in InDesign. Some examples of overlays: part labels (e.g., "a", "b", "c"), text labels, arrows, lines, etc. The only way I've found to export the overlays is to do this:
    -Group the placed image and overlay items together
    -Apply Object Export Options to the grouped item such that Custom Rasterization is checked
    -Export via one of the options (e.g., HTML, ePUB)
    I get one image per group, which is what I want. The problem is that the filename for that image is now a random number. What I really need is the filename for the original image to be used.
    I've also tried exporting to other formats, e.g., PDF (and using the extract all image options) but that doesn't preserve the overlays in the extracted images (which makes sense since the PDF sees the letters as text).
    I figure to do this I have to write a script. So before I embark on that quest, I was hoping to get opinions on whether a) such a script is possible and b) whether there is a better way. For specific workflow considerations, moving the adding of these overlays to the images outside of InDesign (e.g., via Photoshop) is not an option.
    I envision a script that does the following:
    -Set custom rasterization on every grouped object
    -Export all grouped objects and other linked images as JPG (with certain settings)
    -The exported images for the links would preserve the original filename (adding "_fmt" like InDD does now would be okay) and for the grouped items it would use the filename of the linked image that is part of the group (and fallback to a random number if there is no such image). In the case that the filename could not be specified, then embed the original filename of the linked image in the group
    Obviously, if a script could also do the grouping of objects (e.g., finding a linked image, checking to see if there is anything on top of it, grouping it all together), then that would be even better, but I'm not holding my breath. :-)
    Thanks,
    Steve

    This is where the Adobe DNG could shine.
    http://www.adobe.com/products/dng/index.html
    Worth the read ... this can save the changes that one
    makes.
    DNG does NOT help in this case.
    There is a huge misunderstanding that this is part of what DNG can or should do.
    But if you think about it, what good are the adjustments being stored in DNG if you have to use a particular program to open it anyway?
    Think about Aperture's Edge Sharpen for a second. Lets say you store that value in a DNG. Fine, what other program is going to able to reproduce that result EXACTLY to how you were previewing it at 100% on your monitor?
    Lighroom is trying to do something along these lines by passing editing commands off to Bridge through DNG. But here you run into another problem - it constrains what editing any one program can do. If Lightroom is limited to only ever having editing commands that are the same as what Bridge offers, and no other program on earth supports them, then what have you really accomplished? Will unknown editing commands simply be dropped without warning?
    That's why I think simply exporting projects, which hold master images alongside sidecar files (very like XMP) that describe edits are about as good as you are going to get. If you want to truly preserve editing work and you care about quality, nothing beats a TIFF file where 100% of the pixels are exactly as you reviewed them during editing. I personally trust Aperture enough to back up master images along with edits, and am fine with that.

  • Can I save an IMAQ image with overlayed tools and text/ROI graphics.

    I am using LabVIEW 6.0.2/IMAQ 2.5 on WinNT.
    Thanks, Jeff

    Hi Jacy,
    Yes, you will need to use "IMAQ Write Image and Image Info" vi to save the extra information. This VI allows you to save overlay, pattern match, and calibration information associated with an image.
    Hope this helps.
    Ken Sun
    Applications Engineering
    National Instruments

  • Illustrator CS4 exporting images with subtle grid overlaye

    I've run in to a rather troubling issue where Illustrator seems to be exporting images with a very subtle white grid overlay.
    The raw images do not have this grid, neither do the images as viewed in Illustrator.
    The grid appears when exporting as .png and .jpg in a variety of resolutions.
    Any ideas what's going on or how to remedy?

    The images were part of a web mockup that was created in AI.
    "Save for Web" did not change the outcome.
    I defaulted to Photoshop, which fixed my immediate problem.. but still does not answer my question as to why this is now happening when I have completed this process trouble-free numerous times before.

  • I want to create an image gallery with forward back nav, master image with a click to pop out zoom

    Hi Musers,
    I'm currently building a photography website and need some help building a specific type of gallery.
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Below is a description of the gallery I want to build:
    On the gallery page the gallery appears as a single 'Master Image' with forward and back 'Navs.' and a 'Counter' underneath this single 'Master Image'. Lets say that there are 10 images in this gallery. When the viewer clicks on the forward 'Nav.' the 'Master Image' changes to the next image in the sequence of 10 and the 'Counter' below confirms this progression, in this example the 'Counter' changes from 1 of 10 to read 2 of 10, the 'Master Image' displayed is the second image in the sequence.
    Simple so far.. This above I can do as this is just a basic gallery. What follows is what I cannot find a solution for.
    I want the gallery viewer to be able to click on the 'Master Image' and launch an enlargement of that image overlaying the gallery page, very much like the way the 'Lightbox' widget displays an enlarged image. When the viewer clicks off the 'Ligtbox' or enlarged image it dissapears, reverting the page view back to the standard gallery view with 'Master Image', 'Navs.' and 'Counter'. I do not want the expanded / Enlarged 'Lightbox' image accompanied by a thumbnail gallery, 'Navs.' / Navigation arrows or a 'Counter'. What I want is to be able to launch an enlarged version of the 'Master Image' as an overlay on the gallery page, something like a pop out.
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Can anyone explain how I can do this? Is it possible?
    The solution I want seems to be a highbrid between the standard gallery with navigation arrows kept but minus thumbnails and captions with some of the functionality of the lightbox gallery widget.
    I very much appreciate any help anyone can give.
    Thank you

    Hi Harriet,
    Thanks for the message. I'm sure as time goes on new features will be introduced but it's a bit of a shame that the widget library is a little basic, oh, and at times it's just that little bit buggy. So far I'm really impressed by Muse despite being ever so slightly disappointed by some of it's limitations. I'd like to see more image gallery options, the ability to set up a client login area or a client ftp within a site, I also tried embedding video but as I'm no programmer the result looked clumsy so some focus on this would be a help. Considering that a good number of people benefiting from a Muse site will be online retailers a zoom function should have been there from the start.
    Best regards
    Jacques

  • Importing images with Lightroom 2  & Camera RAW 4.5

    The following query has been raised with Adobe Technical Support (5 days ago and I am still waiting for a response/reply. They claim to reply within 24 hours but they have not on this occasion......they seem to be ignoring me
    Perhaps a fellow user can help to identify or resolve the problem.
    Operating System:
    Windows XP Professional (Service Pack 3)
    Software:
    Adobe Design Premium CS3 (10.0.1); Photoshop Lightroom 1.4 (which was working fine) and Lightroom 2 (on trial and not working particularly well)
    I am using a trial download of Photoshop Lightroom 2 (with Camera RAW 4.5 in Photoshop CS3).
    I am having a few problems with editing Lightroom 2 images in Photoshop CS3 but I understand that Adobe is currently investigating a solution to this problem.
    I have also noticed another potential problem since I have started to import images from a computer drive to Lightroom 2 and converting the Manufacturers RAW files to DNG (with the option to leave the files at their current location/drive).
    My RAW and JPEG files open ok in Camera RAW (v 4.5) for basic editing and subsequently to Photoshop for more detailed work. The problem is that all my images are now opening as Smart Objects by default in Photoshop CS3, as opposed to opening as a Background layer". (I have not knowingly opted to use the Open as Smart Object option.
    I am not entirely sure how this came about but I have also lost the capacity to edit images with empty Levels adjustment layers or percentage (%) grey fill option).
    I am able to highlight the respective layer and create the empty Levels adjustment layer, change the blend mode to either Multiply or Screen, fill the Layer Mask with Black (Alt & backspace), change the opacity level as desired, select the brush tool and change the foreground colour to white to enable the applicable Dodge or Burn processes.
    Unfortunately, it does not function irrespective of the preferred opacity level. The Dodge or Burn feature is static with no effect on the image.
    I cannot recall any settings to open all files as Smart Objects in Photoshop CS3 but would welcome some help in identifying such a setting if it exists. Alternatively, I would welcome any other suggested methods of correcting the above difficulties.
    The same difficulties are evident when I try to use the Dodge or Burn features via the Edit and Fill option with a percentage of Grey and the Overlay Blend Mode.
    The "Common Denominator" of the above difficulties appear to be Lightroom 2 and Camera RAW 4.5 (individually and or collectively) and now I am stuck between a rock and a hard place.
    Are any other users experiencing similar issues or have any suggestions about how I might correct or resolve these problems? ......
    I am not afraid of hearing or accepting that the "Dummy Factor" has played some part or how I may release myself from the said "Dummy Factor".....any help is welcome help.
    Adobe Technical Support seems to be ignoring me......I wonder why?
    Regards
    Bob Wallace

    Essentially you are wrapping the raw image data into a special type of layer, a "smart object". You can then revisit and fine tune the Camera Raw conversion as often as you want and take advantage of working directly on the raw data in its pre-Photoshop purity. You can also apply to this smart object layer a number of Photoshop adjustments and filters - and again redo and fine tune them as often as you wish.
    You'll find them explained in a number of recent books. I know Scott Kelby is keen on them, there are examples on Russell Brown's site, and my own book last year on B&W strongly advocated their use.
    Have a play.
    John

  • How do I select an image with motion blur so that I can put it onto a different background ?

    How do I overlay a image with motion blur on a white background (like the first image) onto a different background (to look like the second image)? any help would be greatly appreciated, many thanks ,ed
    Message was edited by: motoredd

    I’m afraid you may have bitten off more than you might want to chew.
    The resulting pixels of an in-camera-blur combine information about the color/brightness of back- and foreground (edit: the result of surface properties and lighting conditions) with motion (basically transparency for this task) in such a way that it seems exceedingly difficult (maybe even improssible) to isolate the foreground in a »pure« form.
    One may get a halfway decent mask (as the backgound is at least almost uniform and brighter than the foreground elements) but you may have to manually decontaminate the transparent areas, otherwise the masked object in front of a dark background would have a bright edge.

  • Saving AVI with Overlay.. slow.. any workaround​?

    Hello there
    I couldnt find any clear answers so I'll just ask here
    My application needs to do the following:
    1 - grab an image from camera
    2 - add overlay (overlay is consisting of dynamic items)
    3 - view image w/overlay in a external window
    4 - save AVI with overlay
    The most importent thing is that the external window showing the overlay and picture has a high refresh rate. Below is the code for this: (wow it got quite huge.. Im sorry about that.,.)
    First, it grabs an image from the camera. This grab function removes any overlay that was there before (blæh.). Second a clear error is used (Im lazy and havent included errorhandling.. yet), third, each 200ms (the loop runs at 20 ms) the dynamic overlay items are updated on my own overlay picture. The reason I use an own picture with the overlay is that I want to minimize redrawing of static elements on the overlay. Fourth - copy the overlay from my static overlay picture to the grabbed image. Fifth - show the picture in an external window. Sixth - Set the IMAQ reference to a func. global.
    This loop runs perfectly. The reason for not using "merge overlay" here is that is goes to slow and messes with the update frequency..
    Second, the loop that saves the AVI file:
    First - the func global is red with the IMAQ ref that has both the grabbed image and the overlay.
    Second - This IMAQ pic is duplicated. Why? well, if the merge overlay is going to merge the original IMAQ picture, it would somehow slow up the external display (and that gets choppy) (althrough, beats me why this happends)
    Third - The overlay is merged
    fourth - The merged overlay is saved.
    Now what happends is that this saving is just going way to slow, (but by doing it the way I did, it doesnt messes with the update frequency of the external display) And it all has something to do with the merge overlay. If I disable the merging everything is fine - but the video does not show any overlay.
    Below is an example of how the overlay may look like:
    Does anyone have any clues how I can further improve this to be faster? my AVI file gets like mega choppy when merging overlays like the picture above!
    Solved!
    Go to Solution.

    BlueCheese, thanks a lot.
    I understand it is difficult to read. The camera application stuff is only a smaller part of a larger software
    FYI: The reason why I used one loop for aquisition & showing, and one for saving (and merging) was simply that if I put the merging in the aquisation loop, it slows it down significantly and the poor operator who looks at the camera picture w/overlay would grow tired of that laggy stuff. So I needed to handled aquisation w/overlay in one loop, and saving/merging in another.
    It perfectly makes sense what you said, and yes, this solves the flickering in the AVI. However logically, the performance dropped a bit to the ext. display due to that the copy function was introduced in the aquire loop, and created a bit longer lag there. Without overlay you wont notice, but when the dynamic overlay gets updated its noticed - I then introduced wait on multiplum in the update case, due to that previous using the Queue timeout (20ms) the total time would be a lot higher since the copy function is used in addition the total aq time would be around 30-40 ms I guess (or more) each time the update dynamic overlay function kicks in. A possible solution would be to put the overlay updating in an own loop,and introducing another paralell case (and two more IMAQ picture refs) but I hope to avoid this due to that the compexity increases. I will try to see if I can tune in the timers, however they are depended on the amount of overlay that gets drawn. Since the user can draw and create its own overlay (the software will be used on many sites) I have no clue what they will configure individually.
    The AVI save loop now does not have any flickering, and Im able to save to file with approx 5 frames per second. Going higher results in that the copy function & merge overlay function, in addition save to AVI would consume more time and it not able to save to AVI with the faster frame rate. I will try and see how much time that case uses, althrough again - its depended on how large the overlay is.
    I'll leave this open for some days in case someone sees something else (or that I used the wrong strategy) that could be done to increase performance, if not I'll mark your comment as a solution and try to live with the performance issue.

  • Script that takes 2 images and overlays one on the other

    I have a folder with 200 raw images in it. 100 of them might be called 1001-1001-1072 (Yellow).jpg and it's sister image would be 1001-1001-1072 (Yellow)_Overlay.jpg - making 200 images. The next image in the series might be 1001-1001-1073 (Red).jpg. It's really the last string of numbers that the script should look at.
    Basically each image will have a sister image that will be used in photoshop as an overlay layer (of a script defined percentage). Can one of you geniuses create a script for me that will do this to all the images in a folder?
    I'd like to use this inside of an action, if that means anything in the script parameters...
    Thanks in advance for trying -
    Ian

    Sorry, the correct layer interaction should be SCREEN on top of the other image, not Overlay.
    tnx

  • Capture image with webcam: how to change image orientation

    Hi all,
    I have taken the code shown in thread http://forum.java.sun.com/thread.jspa?threadID=570463&tstart=0, and it works ok (many thanks for it).
    However, all webcam resolutions are in "landscape" mode (e.g. 320 x 240), but I would like to capture a "portrait" image (e.g. in 240 x 320).
    Do you know any easy way to do it (but not physically tilting the camera, so that the video in the screen is shown in its correct orientation)?
    Best regards.

    Hi Owen,
    in my current application I don't need right now to use any large image, so that I have decided to implement a "simple" solution as the first one that you appointed: to use a transparent rectangle above the image, and then crop the saved image withing the limits of this rectangle.
    In order to do it, I have modified your code so that the panel (visualContainer) where to show the image is using an OverlayLayout format:
    <address>visualContainer = new JPanel();</address>
    <address>OverlayLayout overlay = new OverlayLayout(visualContainer);</address>
    <address>visualContainer.setLayout(overlay);</address>
    I have added one class to create the transparent rectangle, using a code like this:
    class TopPanel extends JPanel
    Point loc;
    int width, height;
    public TopPanel()
    setOpaque(false);
    width = 50;
    height = 50;
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    if(loc == null)
    init();
    g2.setPaint(Color.blue);
    g2.drawRect(loc.x, loc.y, width, height);
    private void init()
    int w = getWidth();
    int h = getHeight();
    loc = new Point();
    loc.x = (w - width)/2;
    loc.y = (h - height)/2;
    In order to show the rectangle, what I have done is to add a TopPanel() to visualContainer just before adding the Player visualComponent.
    However, by doint in this way, the rectangle is not shown, but only the webcam image. I don't know if I'm doing something wrong, so any help on this issue is welcome.
    Best regards,
    izk

  • Where can I find the scale value of mx:Image with scaleContent enabled?

    Hey all
    Like the topic says, where can I find the scale value of the image content using an mx:Image with scaleContent set to true. Both the scale on the image object and the image.content is 1 (resizing is probably done by a matrix).
    To put things into context: I'm loading a picture from the filesystem and then use the Marilena facedetection to check for faces. When I find any faces I draw on a overlaying UIComponent the box where the face is. Because the detections returns the position of the face based on the unscaled bitmapdata the box indicating the face is not in the right position. In order to get this right I need the scale factor of the mx:Image scaleToFit.
    tnx in advance!

    Nope, there it is also 1.
    I solved it by calculating it myself:
    detectLayer.scaleX = detectLayer.scaleY = image.width>image.height?Bitmap(image.source).width/image.width:Bitmap(image.source).heig ht/image.height;

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Bridge CS4 won't output to pdf multiple images with same filename

    Hiya...my googling efforts have thus far failed!
    I've got CS4, and in Bridge, I created a New Smart Collection to find all filenames in a folder containing "." or ".jpg" - which in turn searched through all the subfolders like what you used to be able to do in Photoshop CS3.  Very simple stuff, but all the images are jpg's, but in multiple folders (I don't want to move them out of the folders, as the files came from an external source, and there are heaps of folders, and I don't want to pdf each subfolder seperately as it will take forever).
    The problem is that some of the files have the same filenames (again I'd prefer not to rename, as it happens a lot on this project, and they are all over the place).  So whilst Bridge will show the thumbnail images correctly in the content tabbed screen in my New Smart Collection, but once I've done the Output to PDF thing, for example, instead of showing both different images it has pdf only the first image but repeated it twice.  And this happens multiple times throughout the pdf, the more times the same filename is used, the more times the first image gets repeated.
    I know that it is messy to have multiple similar filenames, but why can't bridge just place the image anyway?  It allocated a space for it on the pdf and does show it in bridge, it just doesn't seem to survive the transfer to pdf well.
    The only other thing that I have done is use the below link (which was posted on another adobe forum thread) to create a custom pdf output template (nothing too fancy, just number of rows / columns, size, font etc).  But I've tried using the standard bridge templates and it does the same thing.
    http://www.proficiografik.com/2009/08/03/save-custom-pdf-output-template-in-adobe-bridge-c s4.html
    Any help would be appreciated...even if to tell me that I am being unreasonable!
    UPDATE 16/11/09
    Just to let you know that I seem to have resolved the bug inadvertently with one of the Adobe updates. The below is the link for the AdobeOutputModule-2.1-mul-AdobeUpdate.zip which was released on 2/19/2009 - which allows for headers & footers to be placed in the Ouput pdf. I finally installed it today, and everything seems to be working fine now (i.e. I can pdf multiple images with the same filenames and the pdf will actually show each different image rather than repeating only 1 of the images).
    Must have been a fix installed in the contact sheet templates that get installed with the update - not sure why the original version was corrupted, but I've left that with the Adobe guys (I submitted a bug report - and they were able to replicate the problem but hadn't fixed it as yet).
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    Message was edited by: djtun71 (16/11/09)

    When I click import from disc I am asked to choose a disc and then I get this message:
    The following photos will not be imported because they are already present in the catalog. To see these photos in the catalog select 'Show in Library' (the import will be canceled).
    This is followed by a long list of images. If I click 'Show in Library' I can see all the images with the same filename. And then they start to automatically write over those images with images from the disc. However they keep the same metadata and keywords from the previous images. If I click on Import and deselect the "don't reimport suspected duplicates" box, it imports only the images that don't share filenames and none of the images that do.
    Is there a way of setting the "Don't reimport suspected duplicates" box in preferences?

Maybe you are looking for

  • The mysteries of JDBC, JNDI, and Tomcat 5.5.4

    Like thousands beforefore, I can't get connection pooling to work in Tomcat. I followed all the steps: - put jar file for MySQL JDBC driver in TOMCAT_HOME/common/lib - put the Jakarta Commons libs in the same location - put resource declaration in ME

  • Can't buy item suddenly

    can't buy item suddenly

  • Font display size

    How do I decrease the font on my display, I clicked something and now it's huge!

  • HT4059 Can you print pages from iBooks?

    I have not yet purchased an iBook textbook, and I do better with math if my homework problems are printed. Can you print pages from your iBook?

  • Strange Behaviour when opening pdf files using search results

    Hi I have observed inconsistencies between opening a pdf file when in the document library itself (it opens in a browser - good). However, when I click on a the same file in my search results having used Search and the Search Centre it opens in the a