Stamps not saving as JPG

I insert custom stamps into a PDF and sometimes they won't save to the JPG file...  what am I doing incorrectly

So after you stamp a PDF, you're converting the PDF to JPEG, or something else? If you're converting the stamped PDF to JPEG, you can first flatten the PDF and then convert. Here's a link to a free JavaScript-based tool you can install and use to flatten the stamps: UVSAR : Selective Flattener tool for Adobe Acrobat 8, 9 and X

Similar Messages

  • Capture time is not saved into JPG file! (LR 2.0)

    Hi,
    I have this JPG file with no EXIF data whatsoever but I know it's capture time so I went to Metadata » Edit Capture Time and changed the capture time. Now, on Lightroom in the Library module, I can see the capture time there and then I save the metadata with Metadata » Save Metadata to File. However, when I check the file on Windows Explorer, the capture time (or date taken as named by Windows) is not specified at all.
    Why isn't the "Save Metadata do File" working correctly?

    @William Porter
    I don't have that box checked but it shouldn't matter because I'm not talking about exporting new files to update the metadata. I'm talking about updating the files metadata within the files that are already added to the library.
    @Richard Earney
    That option was already checked from the beginning but it's not helping. That's exactly why I don't understand why this is not working.
    Maybe a bug on LR 2.0 Final?

  • JPG Not Saved.

    All of a sudden, my edited Elements photo will not save in JPG. What can I do? It will save as Tiff or PSD or camera raw, but I want to save as a JPG.

    Do you get any error messages?  Have you tried to reboot the machine to see if this is a temporary problem?
    Perhaps you may need to reset the settings of PSE but let us know the answer to the questions I have posed here.
    G/L

  • 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

  • Image Adjustments Not Saved with DNG?

    It appears that the adjustments (i.e. all of the work you do to "develop" your pictures) are not saved with the image file. They appear to be saved in the LR Library. So if anything happens to your library, your developing work is gone. I thought my adjustments were saved with the DNG, but this does not appear to be the case.
    So, to be sure that my work is saved with the image, it appears that the processed files must be saved to a different format like JPG, TIFF, or PSD. With JPG quality is lost, and your ability to edit is severely compromised. With PSD and TIFF, you have another copy of extremely large files to deal with.
    Is my understanding correct?
    What are your suggestions to deal with this?
    Thank you.

    Geoff and John,
    Thank you very much.
    You confirm the critical point that your work is saved in the Library, and the Library must be closely supervised and backed up.
    Beside my on-site backups, I set up a Stuffit schedule to back up a daily version of my library. My current library is 57.6MB and Stuffit compresses it to 8.7MB and automatically FTPs it to my web site for archiving.
    I found that my 2GB file of previews is unnecessary, since my computer creates new previews almost as quickly as it reads the preview file, at least on a folder basis. So, I removed my preview files, and I have them saved for only one day in prefrences.
    For my DNGs, beside my on-site backups, I create a DNG with the RAW (NEF) file embedded and back them up on my web site. Then I create DNGs with Adobe DNG converter, without embedded RAWs (LR embeds the RAWs)to use for my working files.
    One of the reasons I decided to use DNGs is to avoid having separate XMP files. However, it sounds like you can export the XMP to the DNG without creating separate XMPs. I'll look in to that. I assume that exporting the XMPs to the DNGs will allow me to open them directly in CS2 (not by exporting from LR) or other programs with my adjustments intact. This would solve the problem of losing adjustments if the Library becomes dysfunctional.
    Thanks again.
    Eric

  • "Could not save x.jpg because the file is already in use or was left open...

    Win 7 pro 64, CS5.0 using InDesign 7.0.4 and Photoshop 12.0.4 x64.
    Using InDesign to create a manuscript with images. Right click on image to "Edit Original"
    Opens image in Photoshop. Make changes, go to save.
    Error message "Could not save x.jpg because the file is already in use or was left open by another application"
    Using a free utility called Unlocker Assistant, it shows that the file has been locked by InDesign
    The workaround is to then use Unlocker Assistant to unlock the image in in the Links folder, but this is a pain and it is happening too frequently.
    Putting in that error message I get no google matches.
    Anyone know why Indesign is locking the image, when it is the InDesign program that is supposed to be sending it to Photoshop for editing so it can be changed and then overwrite the original image?
    Note that it is not consistent but I cannot find any pattern to determine why it sometimes fails and other times allows the altered image to be saved.

    You will get a quicker response to post this in the InDesign Fourm http://forums.adobe.com/community/indesign/indesign_general

  • Files saved as JPG converting to Gray

    Strangest thing. A user is opening an RGB color image from Bridge CS4 into Photoshop CS4, then doing a simple Save As... to JPG format. In Bridge, the new file will show briefly in color, then convert to Grayscale. And when the new file is opened, it really is grayscale.
    Those are literally the only steps we're doing -- Open, Save As... (jpg format), close.
    I moved the file to my computer and I don't get this result -- my JPG stays RGB.
    We can't find any preference in Bridge that would be doing an auto-conversion, nor does there appear to be anything in the file that would suggest it should save as anything but color. We completely reset Bridge and the problem persists.
    Anybody got any ideas?
    Thanks,
    --Mike

    Thanks Wayne!
    No, I don't have MS Excel installed.
    But my question is more to do with why Numbers opens my .xls file as a .number file.
    In Finder, both identical files are side by side, one with XLS written across it.
    When I click this, it opens in Numbers with the extension .numbers across it.
    So, is this because it's Numbers that's opening it (and really it's still an .xls file)?   Or is it not saving as an .xls file at all?
    Thanks,
    Megan

  • Time stamps not linear

    Hi,
    I have a DAQ USB-6251 driven by labview.
    The time stamps on the text file have backward and forward jumps in them.  See attached for picture.
    They increase linearly for about 12000 samples, then jump backwards
    about a 3 sec, linearly increase for about 1000, then jump forward
    about 6 seconds.  This cycle then repeats ie increasing nice and
    linearly for about 12000 samples, jumping back etc.
    I suspect there is a buffer somewhere which fills up and then acts strangly when trying to reset.
    Any explanations?  Any solutions?
    Here's some further info about my setup:
    Producer loop:
    I generate a continuous analog output signal which I feed back into one of analog input pins which I also continuously acquire.
    The generation and acquisition both have sample rates of 4096
    samples/sec and 1024 samples are set to acquire/generate per loop.
    The recorded input is enqueued.
    Consumer loop:
    Dequeues data and write to text file.
    Regards,
    Jamie
    Using Labview version 8.0
    Attachments:
    time stamps not linear.jpg ‏17 KB

    Ben,
    Maybe this is a good chance for me to learn (be convinced of) something then.  I'd try this out for myself on hw, but I've got tests running now.
    Let's suppose I have both an AI and an AO task, both set up to start off the same sample clock.  However, the AO outputs on the leading edge of a clock while the AI samples on the trailing edge of the clock.  Let's further stipulate that the clock is generated by an on-board counter at 5 kHz with 90% duty cycle.  So the AO update occurs 180 microseconds before the AI.  How do waveforms handle this offset in t0?  Will t0 simply be set to 0 because of the use of an "external" sampling clock?  Or will the two t0 values be equal and non-zero?  Or will they be sometimes equal and sometimes different, depending on the "phase" of the system clock -- either the 1 msec one or the 16 msec one used for system timestamps?
    Now, concerning triggering:  Does t0 represent the time of the trigger?  Or of the first sample / output *after* the trigger?  Or is it the time you call DAQmx Start prior to receiving a trigger signal?
    Other concern: even when not *strictly* necessary, I try to make a habit of making code that runs pretty efficiently, unless that puts an undue burden on development / maintenance effort.  My experience with processing large arrays vs. processing clusters containing large arrays has suggested that pure arrays are typically significantly more efficient to manage.  (I'm sure it depends on sizes and kinds of processing too.)  Aren't waveforms essentially cluster-like?
    Well, enough of the blah, blah, blah.  I really *am* interested.  I know many of the analysis functions prefer (if not require) waveform inputs rather than raw arrays these days, so there are some clear code simplicity advantages to waveforms IF I can be convinced that I'm fully informed of the downsides and gotchas.  (Another example of worry: when integrating a waveform, how does the floating point roundoff accumulate from the 'dt' value?  Will results late in a long array contain more cumulative roundoff error?)
    -Kevin P.

  • How to extract the data from the chart. Data were not saved

    Hi everyone. Beginners question, but could not find an answer to it
    How can I get the numerical data from the chart. Chart is already on the screen and data vere not saved into file during VI run. All I have - just chart, but I need numbers       
    Thanks
    Message Edited by olka on 07-18-2007 09:41 AM

    You can still do it, the process just changes a bit...
    Copy the control to a new VI as before, and change it into a control.
    Create the diagram shown in the attached screen shot.
    Run the new VI. You will get two arrays: one of x-axis values and one of y-axis values.
    Mike...
    Message Edited by mikeporter on 07-18-2007 12:21 PM
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    extracting xy data.JPG ‏5 KB

  • Photoshop not saving pngs properly

    My team and I have been having issues with generate image assets not saving png files correctly. Photoshop has been saving them with the png extension, but the file has a white background like a jpg. Has there been in recent updates that may be causing this? Is anyone else experiencing this issue?

    I think the default with Generator is 24 bit, but I tried an 8 bit one and I was able to get transparency.  Can you post a screen shot of you layer pallet to see what you've got?  Here's a sample with a layer forcing an 8 bit png and the result - pretty bad quality - png 24 is much better!

  • Pictures automatically saved as jpg.rem

    Hello! For some apparent reason, the pictures that I take with my BB are now being saved as jpg.rem photos.  When I attempt to transfer them to my computer, the photos are not visible at all.  Does anyone have the same problem?  If so, what's the solution to retrieving these photos?  Thanks for your help!

    You have encryption set to your media.
    Article ID: KB12999 How to encrypt files on an installed media card in the BlackBerry smartphone
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Photoshop CS5.1: The message box reads: Could not print "________.jpg" because of a disk error. Fix?

    Photoshop CS5.1: The message box reads: Could not print “________.jpg” because of a disk error. Fix?

    How To Get Help Quickly!
    Is the printer driver up-to-date?
    Could your disk actually be faulty?
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • Can I recover raw edits not saved as a catalog?

    I have raw files that have been imported and edited, but not saved as a catalog/collection. LR crashed &amp; I had to un/reinstall LR (4.4). Can I recover those changes and reapply them to the raw files? If so, how?
    Thanks

    I've had LR for about 6 months or so and have done the backup every week. Hopefully, I can revert back.
    For the most part, I import, develop, then export jpg versions. I dont usually make a "collection" mainly because I haven't taken the time to learn the ins &amp; outs of LR file management (yes, regretting that now).
    I don't think that the catalog was damaged. I do remember changing the location. I guess I just need to know if I need to do anything specific to load them
    Thanks for the response!

  • Album Art Not Saving

    I have iTunes 11 and have imported a CD of my own making.  I have a JPG file that I want to use for album artwork.  I select the album and Get Info and then paste the image into the album artwork field.  The artwork appears, but it is not saved when I click OK.  All other album artwork I have added saves just fine.
    Any ideas?
    Thanks,
    John

    Mario,
    Thanks, but I think I figured out that the problem is with the file format.  I have some files in WAV format and those do not seem to allow album artwork to "stick".  Once I changed the file to Apple Lossless format, the album artwork "stuck" just fine.
    What was confusing is that iTunes gave no indication of the fact that album art does not work with WAV files.
    Thanks,
    John

  • Iphoto11 not saving edits

    Currently using Os10.8.4, iPhoto11 on a MacBook Air, I can not duplicate pictures and after making changes, my pictures are not saved. Exporting them does not save changes. When viewing pictures in the screen, they apprea original, but as soon as I hit enter to allow the editing bar to open, they will change (after a few seconds) to the edited version. Lots of odd little things happening. What could be wrong? I am not a strong apple user. I have learned some basics, but no more.
    Most of my library that I use comes from a WD My Passport for Mac. I try exporting the files to the SDD on the MBA in smaller versions of jpg. My originals are all in RAW.

    Verify the format of your external drive - it should be Mac OS extended (journaled)
    Is it?
    LN

Maybe you are looking for

  • M, How to connect ipad with computer?

    We need I tune program

  • Is it possible to import / bulk upload content and associated metadata?

    We are just getting started with the Oracle portal (migrating from a previous portal vendor) and I wanted to check with other users to see if what we're thinking about trying is within the realm of feasibility. Here's our situation. In our current po

  • URGENT, bdc uploaded wrong data

    Dear all SAP-ABAP consulatants,                                                  i would request you people to kindly help me out from my scenario. i need to delete records from transaction 'cs02' , where in  by validating the field so that  it wont

  • Internal order number

    Hi, Please let me know how to get the internal order of a material? Thanks in advance.

  • Cant find Flash Player on my pc

    Hi I have problem when playing a game, Tankionline, i need to clear FPcash and adjust how much memory to use. I use windows 7 proffesional, internet explorer11 and have the latest FP 15.0. I have seen Pictures of some controlpanel for FP but i cant f