File browse image item not saving

Hi,
Im faced with a problem whereby i created a file browse item to load/save images, thing is the image only gets saved when i edit the record and not on creation.
Any help please.
Thanks

Forms doesn't support multipage tifs.

Similar Messages

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • "File Browse" type item: at what point the fields mime_type, file_name, last_update_date get their values?

    Hi there,
    I have an issue with "File Browse" type item, my question is: at what point the fields mime_type, file_name, last_update_date get their values? I want to add them to the collection but if I try to do it in Process "On Submit - After Computations and Validations" the values in those fields are still null (that's for the insert, and for the update they have old values). Also I don't seem to be able to add blob to the collection ("File Browse" type item (which has the source as blob database column) can't be assigned as parameter p_blob001 of APEX_COLLECTION.ADD_MEMBER, error is: PLS-00306: wrong number or types of arguments in call to 'ADD_MEMBER').
    What I am trying to do is this: I have parent table (TABLE1), and child table (TABLE2).  In TABLE2 I store documents. I have a main page that is form on TABLE1, and on it I have button "Add documents" that opens popup window with form on TABLE2. On submit of popup page I want to avoid inserting document into TABLE2, instead I want to send data to the main page (using collection) and insert in only once the main page is submitted.
    I would appreciate any advice on this...
    Thanks,
    Tanya

    Hello Tanya,
    Can you post your PL/SQL code which you are trying?
    Regards,
    Hari

  • HT2506 I'm using Preview with a MacBook Pro and MacOS 10.6.8. When adjusting sharpness in the Adjust Colour tool, images are not saved. Any hint? Thanks.

    I'm using Preview with a MacBook Pro and MacOS 10.6.8. When adjusting sharpness in the Adjust Colour tool, images are not saved. Any hint? Thanks.

    I too experienced the same issue.  Here are my details:
    Recently I bought a 15” Macbook Pro and last night I tried to connect and use a Edirol FA/66 Firewire 400 connected outboard audio interface using a Firewire 400 to 800 adapter then connected to a Firewire 800 to Thunderbolt adapter since the MBP doesn’t have a native Firewire port.  What I observed is that the Edirol was not getting power from the bus nor did the MBP (running Yosemite) recognize the Edriol.  At first I thought there was a problem with the Edirol since I haven’t used it in a while but when I connected it to an older MBP that has a native Firewire port, it worked normally.  Is there a known issue with these sorts of external audio interfaces working properly with newer MBP running Yosemite?  I’m hoping that a software update will fix this issue.

  • File is shown as not saved even if it's just opened

    I recently upgraded Logic Express 8 to 9, the downloaded and installed updates. When I open any Logic project it shows up as unsaved (window closing widget has black dot in it). I save project as Logic 9 file, close it, but when I reopen it, again black dot in the window closing widget showing file as changed and not saved. Why? Any ideas how to solve this?

    what the **** is the "window closing widget"? If you want your question to be understood, post a picture with comments.
    It is so EASY to make: first use Grab (Applications/Utilities) to make a screenshot; save it as a Tiff file, then open this file in Preview, annotate it there and save as a Jpeg file!
    You can post pictures on any photo-sharing service, like Flickr, or file-sharing service, like sendspace.com and provide links here.

  • I'm using iphone 4s, whenever i take a photo using front camera mirror view of the image is NOT saved

    I'm using iphone 4s, whenever i take a photo using front camera mirror view of the image is NOT saved. i.e, left becomes right & vice versa. To elaborate if you take a photo with your left hand index finger on your left chin it shows up as though i'm holding my right hand index finger on my right chin. This was not the case initially, i suspect this happened after photoshop app. was installled. Can someone assist?

    Ok!! After checking couple of my friends phone i realise this is BY design!!.. i still don't understand the logic behind this though.Nevertheless this ain't a bug!!!

  • 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

  • File Browse Page Item Layout

    Hi,
    I have a page with a file-browse item which I created with APEX 4.1: there's a "Choose"-Button on the right hand side of the file path. Now I created another page with a file-browse item in Apex 4.2 and it looks slightly different: now the button is named "Browse" and is on the left hand side of the file-path. I'm wondering how to influence the layout of the browse item. Is there a way to do this?
    Thanks,
    Stephan

    Hi Stephan,
    the button text and position is defined by the browser. It's not something APEX can control. Is it possible that you use a different browser now. If you have a look at your 4.1 app, does it still show "Choose"?
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Sent items not saved in personal sent items when shared mailbox is open in outlook

    hi,
    user is using exchange 2010 and the shared mailboxes are in exchange 2003. when user send an email as send as to the shared mailbox the sent items is not saved in her personal sent items. she can look up the sent items on her shared mailboxes sent items.
    I tried recreating her profile when the shared mailboxes are not added in the outlook, personal sent items is okay  but when the shared mailboxes is added , sent items doesn't go to her personal sent items. Please help. Is it by design?

    Hi,
    Since Exchange 2003 server is out of support, I still suggest migrating to Exchange 2010 server.
    How about this behavior on OWA, if everything going well as expected, it should be an issue on the Outlook client side.
    Please try to run Outlook under safe mode to avoid some AVs and add-ins.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Prompts on image item not  appearing

    Hi,
    Am using forms 10g.In the form, I placed an image item and placed a text box with its prompt on image item. Only text box is visible its prompt is not visible. I tried using the option send to back and send to front in layout option .But of no use.
    Can anybody help.
    Thanks,
    Rekha

    Rekha,
    In the Object Navigator View, Under Data block, make image item as the last item. Then The Prompt will show.
    In the case of 6i, the image position should be first.
    Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Photoshop 2014 - File Generator Image Assets not working

    Win7 Pro 64bit
    Photoshop 2014.2.1
    Draw three layers with the brush and add extension .PNG to each layer name
    Edit > Preferences > Plug-Ins  : Enable Generator is checked
    File > Generate > Image Assets : no check mark ever appears by "Image Assets" and no files are created
    What am I doing wrong?  Any help will be greatly appreciated!

    I actually reported my results from my mid 2009 Macbook, so now from Windows 7 x64/Dell CC 2014.
    Create new file
    Check Image assets, no checkmark.
    Convert background into floating layer, rename it 1.png, swipe a brushstroke.
    Now I'm able to checkmark and extract 1.png.

  • Login items not saved

    I haven't read about this one yet so I thought I should at least mention it. Since my upgrade to 10.9 the login items for my (admin) user account are not being saved. After a reboot the list is empty again. I have re-entered them several times but that just seems a bit pointless now   Also repaired permissions on the OS X drive, just for good measure but to no avail. Login items are Mail, Messages and just one third party app: Google Chrome.
    So.... Bug or something else I should try?

    This happened to me from an out-the-box mac without any 3rd party software installed which makes me think this is a mavericks issue as opposed to anything else installed after.
    Im not trying to be a dick BTW.
    Hardware Information:
              MacBook Pro (Retina, 15-inch, Late 2013)
              MacBook Pro - model: MacBookPro11,3
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel Iris Pro - VRAM: 1024 MB
              NVIDIA GeForce GT 750M - VRAM: 2048 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A3017) - Uptime: 0 days 17:32:34
    Disk Information:
              APPLE SSD SM0512F disk0 : (500.28 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (269.05 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Internal Memory Card Reader
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              Action Star USB2.0 Hub
                        Action Star USB HID
              Apple Inc. Display Audio
              Apple Inc. Apple LED Cinema Display
              Apple Inc. Display iSight
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        Apple Inc. Thunderbolt to Gigabit Ethernet Adapter
    Kernel Extensions:
              at.obdev.nke.LittleSnitch          (4052)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] at.obdev.littlesnitchd.plist
              [loaded] com.adobe.SwitchBoard.plist
              [loaded] com.cisco.anyconnect.vpnagentd.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.vyprvpn.authorization.plist
    Launch Agents:
              [loaded] at.obdev.LittleSnitchUIAgent.plist
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.cisco.anyconnect.gui.plist
              [loaded] com.wacom.wacomtablet.plist
    User Launch Agents:
              [loaded] com.google.keystone.agent.plist
    User Login Items:
              iTunesHelper
              Alfred 2
              Google Drive
              Dropbox
              Mail
              MemoryFreer
    3rd Party Preference Panes:
              Java
              WacomTablet
    Internet Plug-ins:
              Default Browser.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              WacomNetscape.plugin
              WacomTabletPlugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                  15%          osascript
                   4%          WindowServer
                   1%          iTunes
                   1%          SystemUIServer
                   1%          Little Snitch Agent
                   1%          coreaudiod
                   1%          EtreCheck
                   1%          MemoryFreer
                   1%          fontd
                   1%          taskgated
    Top Processes by Memory:
              410 MB             WindowServer
              328 MB             firefox
              229 MB             Finder
              197 MB             Safari
              180 MB             Mail
              180 MB             iTunes
              164 MB             com.apple.WebKit.WebContent
              147 MB             Skype
              131 MB             Adium
              115 MB             mds_stores
    Virtual Memory Statistics:
              9.14 GB            Free RAM
              3.97 GB            Active RAM
              694 MB             Inactive RAM
              1.32 GB            Wired RAM
              1.04 GB            Page-ins
              0 B                Page-outs

  • New/Modified login items not saving

    Within the System Preferences > Users & Groups > Login Items (for Admin user)....
    I am trying to add an application to open upon login. However when I add it (both with the Lock unlocked or locked)... and then reboot it doesn't save.
    I set the new login items, and even remove an old one... exit System Preferences. All appears saved when I go back into it (meaning it sticks).
    However upon reboot... the new app doesn't start upon login.
    I go back into system preferences pane and the changes are no longer present. So it isn't really actually saving my changes.
    Any ideas?

    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Preferences/com.apple.loginitems.plist
    Right-click or control-click the highlighted line and select
    Services ▹ Show Info in Finder (or just Show Info)
    from the contextual menu.* An Info dialog should open.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    What is the Modified date?
    If you don't have read and write access to the item, change the settings as directed here. Note, however, that if one file has wrong access settings, most likely others do as well. If the item is locked, unlock it.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Image processor not saving settings for images to process

    Hello,
    I have raw images taken by a Canon G9.  I am trying to convert these .CR2 images to LZW tiff's.  This is my process:
    In Bridge, select images to process
    Click tools > photoshop > image processor
    Image processor window comes up.  I have the following settings:
         -Open first image to apply settings
         -Save in same location
         -Save as TIFF
              -LZW
         -Include ICC profile (no idea what this is, but it's checked)
    Click 'run'
    First image appears.
    Apply settings by clicking the pre-sets button and selecting my preset
    Image looks great
    Click 'Done'
    Images process
    At the end of the process, I get a message that says Sorry, I could not process the following files: (c:\temp\IMG-9678.CR2.  Which is the first image in my process where I applied my preset for the remaining images.
    The remaining images are in my TIFF folder as tiff images, but none of my preset settings from the first image carried over.
    Am I missing a step?
    Thanks in advance for any help.  I'm lost.

    I guess that could mean that Adobe Camera Raw isn’t part of Photoshop’s Document Object Model.
    But I suppose in such a case it should be possible to open all the images in ACR and apply the settings to all of them in one step with the Synchronize-button and then use a Script to save all open files.
    Admittedly that would be less convenient than Your proposed way, but maybe someone else has a better idea.
    »-Include ICC profile (no idea what this is, but it's checked)«
    Please don’t take this the wrong way, but You should read up on color-management.
    Not including the profile can generally be considered unprofessional (except maybe in an internet-specific context) and a potential source of problems.
    An images’ pixels’ RGB-values can be correctly translated to the originally intended color only when the »key« (the icc-profile) for said translation is known.

Maybe you are looking for