Error in Image subtract

I have two images and I apply IMAQ subtract among these two. Image 1 is much brighter in intensity with respect to Image 2. But, I see a complete black image after the IMAQ subtraction. How can this happen.
Abhilash S Nair
Research Assistant @ Photonic Devices and Systems lab
[ LabView professional Development System - Version 11.0 - 32-bit ]
LabView Gear:
1. NI PXI-7951R & NI 5761
2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
MEMORY - [ 16.0 GB RAM ]
GPU - [ NVIDIA GeForce GT 530 ]
Solved!
Go to Solution.
Attachments:
Subtract_Images-DEV-2.vi ‏56 KB
Back=up.zip ‏544 KB

Image 2 subtracted from Image 1. No it is not zero. I removed the write IMAQ 2.vi and checked the images in the VI front panel. I can see the images. But when I write it to a file (bmp, jpeg, tiff or png) I see only black image.
Abhilash S Nair
Research Assistant @ Photonic Devices and Systems lab
[ LabView professional Development System - Version 11.0 - 32-bit ]
LabView Gear:
1. NI PXI-7951R & NI 5761
2. The Imaging Source USB 3.0 monochrome camera with trigger : DMK 23UM021
OPERATING SYSTEM - [ MS windows 7 Home Premium 64-bit SP-1 ]
CPU - [Intel Core i7-2600 CPU @ 3.40Ghz ]
MEMORY - [ 16.0 GB RAM ]
GPU - [ NVIDIA GeForce GT 530 ]
Attachments:
Subtract_Images-DEV-2.vi ‏53 KB
Back=up.zip ‏544 KB

Similar Messages

  • I cannot move photos from iphone to MacBook.  I get an error message that says: Error downloading image. iPhoto cannot import your images because there was a problem downloading an image. How can I fix/remedy this?

    I am receiving an error message every time I plug my iPhone 4S into my MacBook: Error downloading image. iPhoto cannot import your images because there was problem downloading an image.  How can I fix/remedy this?

    try Image Capture - in your applications folder
    LN

  • Editing Error - This Image cannot be rendered for editing...

    Editing Error - This Image cannot be rendered for editingbecause Aperture doesn't support the image format.
    Thats the message that appears when I'm exporting to Photoshop CS5 (I tried CS4 too), or even other Plug-ins such as Silver Efex Pro...
    That had never happened before, and I use Aperture for over 2 years.
    Its RAW image format from the same camera and all, nothing has changed. just randomly decided not to export anymore to other programs, Regular exporting works, so it's nothing to do with exporting it self, but the communication between aperture and other softwares, I think.
    I've seen some other people having the same problem, does anyone have a take on it, in how to solve this? I can't edit anymore outside of aperture. (of course not including the idea of exporting and doing everything away from aperture, which is totally not viable with the amount of content to be edited and not being in aperture anymore.)
    I've tried deleting the preferences, tried repair permissions of the Library, and still didn't work.
    Didn't go to the other 2 options (repair and rebuild database) because it would take days if chosen, and still not sure that would solve. or if has anything to do with.
    Any light anyone?

    What kind of file is it? (i.e.jpeg, Canon RAW, Nikon RAW etc..)
    As a workaround until you get the issue fixed, why not reimport the image from the original file, lift and stamp any adjustments you've made in Aperture, and see if the same problem occurs?
    A

  • Read Error of images in libre office

    read error in images of LibreOffice
    Hi, when loading this file, do not load images in the document, this only happens since version 3.5, instead of pictures, a box appears with the message "read error".
    The file I downloaded from the Internet, the images are correctly loaded into abiword.
    I would appreciate your help, thanks.
    The File

    Crystal Reports is limited in how it works with images - large images or a large number of images, etc. Much as CR is not a good database archiving tool, it's not a very good graphics presenter. I find stand-alone versions of CR are a bit better, but that may just be a perception. My recommendations:
    1) Try an eval of a stand-alone version of CR:
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Go for CR 2008 as CR 2011 does not have any SDK
    2) Make sure the picture  blob  what ever, never spills beyond the designer pane of the report. This may change from site to site depending on printer drivers used (CR depends on these to render the report)
    3) Have a look at the article [Causes of "Background Processing" error|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a6f5e8-8164-2b10-7ca4-b5089df76b33]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Trying to upload pic's Message error download image issue?

    Trying to upload pic's from Iphone 4 to macbook air. iphoto is sending bcak an error message error downloading image? not able to upload?

    Jeff,
    When I purchased my Dell laptop a year ago it came loaded with Adobe Photoshop Premiere Elements 11 with photo editor and video editor. Since I really have only begun to learn to use the programs, and since I kept getting a message to upgrade now!, I decided to upgrade and learn to use edition 13 from the get-go. What I ordered was Photoshop Elements 13..order nbr AD014688152.
    What is happening is that it downloads okay but when it tries to open in Elements 11 I get the error message that it can't load, wrong type of file.
    My computer op system is Microsoft Windows 8.1 (64-bit). I know I downloaded the 64-bit and not 32-bit. 
    Perhaps I ordered the wrong upgrade?
    I appreciate your help . Let me know if you need additional info.
    Fred Hoerauf
    Sent from my iPad

  • Error creating image

    Im getting error when trying to create an image from array
    when i am reading the image as array from the network
    public void write(OutputStream out) throws IOException{
        DataOutputStream dout = new DataOutputStream(out);
        //Write mood name
        dout.writeUTF(m_moodName);
        if(m_img == null){
          //Write there is no image
          dout.writeBoolean(false);
        }else{
          //Write there is image
          dout.writeBoolean(true);
          PngEncoder pngEncoder = new PngEncoder(m_img);
          byte[] array = pngEncoder.pngEncode();
          //Write the array length
          dout.writeInt(array.length);
          //Write the array
          dout.write(array);
          dout.flush();
      public void read(InputStream in) throws IOException{
        DataInputStream din = new DataInputStream(in);
        //Read mood name
        m_moodName = din.readUTF();
        //Read if there is image
        boolean bool = din.readBoolean();
        if(bool == true){
          //Read byte array length
          int length = din.readInt();
          byte[] array = new byte[length];
          //Read to byte array
          din.readFully(array);
          m_img = Toolkit.getDefaultToolkit().createImage(array);
      }This is the exception that i am getting
    Uncaught error fetching image:
    java.lang.NegativeArraySizeException
         at sun.awt.image.PNGImageDecoder.produceImage(Unknown Source)
         at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
         at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
         at sun.awt.image.ImageFetcher.run(Unknown Source)I am getting this error from this line... (i think)
    m_img = Toolkit.getDefaultToolkit().createImage(array);and here is PNG encoder that i am using
    http://catcode.com/pngencoder/
    please help...
    shay

    There are many possible reasons, for example:
    - pngEncoder produces wrong result.
    - byte array is corrupted on transition.
    I'd suggest to save this byte array as file and check if this image can be open by any image viewer.
    Also, it seems Image I/O is applicable in your scenario.
    Consider using it because it is recomeded API to work with images nowadays
    (unless you have something ImageIO can not handle, e.g. animated images)

  • Uncaught error fetching image: java.lang.NullPointerException

    Hi everybody,
    I am developing standalone application using NetBeans,the aplication is running fine in netbeans IDE but not when Jar alone tried to run.I kept all the files related to application with the jar.
    when running jar,the app is running fine upto some extent,and throwing exception at the time of fetching images from images folder which is placed inside "src folder"
    class files package and images folder are in the src folder. the code is like this:
    mLogo = new JLabel();
            URL lUrlLogo =  getClass().getResource("/images/eaze.gif");
            System.out.print(lUrlLogo);
            Image lLogoimage = Toolkit.getDefaultToolkit().createImage(lUrlLogo);//.getImage(lUrlLogo);
            ImageIcon licon = new ImageIcon(lLogoimage);
            mLogo.setIcon(licon);i tried by using Mainclass.class.getResource("/images/eaze.gif");
    and also by using thread but dint solved
    The exception is like this:
    Uncaught error fetching image:
    java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:99)
    at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:113)
    at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
    at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
    at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)

    don't specify an absolute path line "/images/eaze.gif" but use a relative path like "images/eaze.gif" or you might need the complete package path.

  • Uncaught error fetching image

    Hi all,
    It seems that my GNOME Terminal can't open a window with Java (JRE 1.5 update 6) when I call a java-dependent software. I get this kind of error messages:
    Uncaught error fetching image:
    java.lang.NullPointerException
            at sun.awt.image.URLImageSource.getConnection(Unknown Source)
            at sun.awt.image.URLImageSource.getDecoder(Unknown Source)
            at sun.awt.image.InputStreamImageSource.doFetch(Unknown Source)
            at sun.awt.image.ImageFetcher.fetchloop(Unknown Source)
            at sun.awt.image.ImageFetcher.run(Unknown Source)Someone? Any clue?
    Thanks a lot for time and experience.
    Manu

    which image is involved here? an image provided by my
    application software, or by JRE?
    what can I do to make it open this image?
    manu
    PS: I also tried with Xterm, but I receive the same
    error messagesHard to say. The image does probably not belong to the JRE. I guess you need to debug the application.
    Kaj

  • Error Loading Image

    I get the message 'Error Loading Image'.  No explanation, it is just a jpg photo

    Hi, David-
    Did you see the error message in Edge Animate or on the webpage when you tried to preview?  I would like to point out that a 7MB file for most people on the web would be interminable, and certainly files that large are not supported on tablet devices like the iPad for other publishing needs.  I'd wonder what use case most people would have in animating a file that large, as all of the designers we've talked to always work on download optimization for various devices.
    That being said, I can look into it.
    Thanks,
    -Elaine

  • "Error downloading image." message when trying to import movies.

    I recently just about filled up my iPhone 4's memory with videos shot from a family event. I noticed that just before I reached the memory's capacity that the videos started to drop frames then stopped recording.
    When I try to download the videos I get an "Error downloading image." message. I'm running the latest OS and the latest version of iPhoto.
    Any ideas? I hate to have to delete the videos without saving them.
    Thanks!

    Launch Image Capture and see if it can see and download the iPhone's videos to the Desktop. There are some apps, like iPhone Explorer and iPhone Photo Transfer that might be able to download those files to the Desktop,
    You can find them by searching for "iPhone" at MacUpdate.com.
    Happy Holidays

  • Error: Boot image to update:

    Error: Boot image to update:
    Microsoft Windows PE (x64)
    Add ConfigMgr binaries
    Add custom background
    Enable Windows PE command line support
    Add drivers
    Intel(R) ESB2 SATA AHCI Controller
    Intel(R) ESB2 SATA RAID Controller
    Intel(R) ESB2 SATA AHCI Controller
    Intel(R) ESB2 SATA RAID Controller
    Intel(R) 4 Series Chipset Processor to I/O Controller - 2E00
    Intel(R) 5000X Chipset Memory Controller Hub - 25C0
    Intel(R) 5400 Chipset Memory Controller Hub - 4000
    Intel(R) 82852/82855 GM/GME/PM/GMV to Processor I/O Controller - 3580
    Intel(R) 82855PM Processor to I/O Controller - 3340
    Intel(R) 82865G/PE/P/GV/82848P Processor to I/O Controller - 2570
    Intel(R) 915G/P/GV/GL/PL/910GE/GL Processor to I/O Controller - 2580
    Mobile Intel(R) 915GM/PM/GMS/910GML Express Processor to DRAM Controller - 2590
    Intel(R) 945G/GZ/GC/P/PL Processor to I/O Controller - 2770
    Mobile Intel(R) 945GM/GU/PM/GMS/940GML/943GML and Intel(R) 945GT Express Processor to DRAM Controller - 27A0
    Intel(R) 946GZ/PL/GL Processor to I/O Controller - 2970
    Mobile Intel(R) PM965/GM965/GL960/GS965 Express Processor to DRAM Controller - 2A00
    High Precision Event Timer
    Intel(R) 5100 Chipset Memory Controller Hub - 65C0
    Intel(R) 6702PXH PCI Express-to-PCI Bridge A - 032C
    Intel(R) E7230/3000/3010 Processor to I/O Controller - 2778
    Intel(R) 7300 Chipset Memory Controller Hub - 3600
    Intel(R) E7520 Memory Controller Hub - 3590
    Intel(R) E8500/E8501 Hub Interface - 2600
    Intel(R) 631xESB/6321ESB/3100 Chipset Serial ATA Storage Controller - 2680
    Intel(R) 631xESB/6321ESB/3100 Chipset Serial ATA Storage Controller - 2680
    Intel(R) 631xESB/6321ESB/3100 Chipset USB Universal Host Controller - 2688
    Intel(R) Q35 Express Chipset Processor to I/O Controller - 29B0
    Intel(R) 82801EB LPC Interface Controller - 24D0
    Intel(R) 82801EB Ultra ATA Storage Controllers
    Intel(R) 82801EB Ultra ATA Storage Controllers
    Intel(R) 82801EB USB Universal Host Controller - 24D2
    Intel(R) 82801FB LPC Interface Controller - 2640
    Intel(R) 82801FB Ultra ATA Storage Controllers - 2651
    Intel(R) 82801FB Ultra ATA Storage Controllers - 2651
    Intel(R) 82801FB/FBM USB Universal Host Controller - 2658
    Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA
    Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    Intel(R) ICH8 Family Thermal Reporting Device - 284F
    Intel(R) ICH8 4 port Serial ATA Storage Controller - 2820
    Intel(R) ICH8 4 port Serial ATA Storage Controller - 2820
    Intel(R) ICH8 Family SMBus Controller - 283E
    Intel(R) ICH8 Family USB Universal Host Controller - 2830
    Intel(R) ICH9 Family Thermal Subsystem - 2932
    Intel(R) ICH9R/DO/DH 4 port Serial ATA Storage Controller 1 - 2920
    Intel(R) ICH9R/DO/DH 4 port Serial ATA Storage Controller 1 - 2920
    Intel(R) ICH9 Family SMBus Controller - 2930
    Intel(R) ICH9 Family USB Universal Host Controller - 2934
    Intel(R) ICH10 LPC Interface Controller - 3A10
    Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A00
    Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A00
    Intel(R) ICH10 Family SMBus Controller - 3A30
    Intel(R) ICH10 Family USB Universal Host Controller - 3A64
    Intel(R) 31154 133MHz PCI TO PCI Bridge - 537C
    Intel(R) QuickPath Architecture I/O Hub to ESI Port - 3400
    Mobile Intel(R) 45 Express Chipset Series Processor to DRAM Controller - 2A40
    Windows Hardware Error Device
    Intel(R) 4 Series Chipset Processor to I/O Controller - 2E00
    Intel(R) 5000X Chipset Memory Controller Hub - 25C0
    Intel(R) 5400 Chipset Memory Controller Hub - 4000
    Intel(R) 945G/GZ/GC/P/PL Processor to I/O Controller - 2770
     Optional components:
    Scripting (WinPE-Scripting)
    Startup (WinPE-SecureStartup)
    Network (WinPE-WDS-Tools)
    Scripting (WinPE-WMI)
    Intel(R) QuickPath Architecture System Address Decoder - 2C01 - Failed to inject a ConfigMgr driver into the mounted WIM file
    Failed to inject a ConfigMgr driver into the mounted WIM file
    The SMS Provider reported an error.: ConfigMgr Error Object:
    instance of SMS_ExtendedStatus

    Yes as others have said you hardly ever need to inject drivers now into your boot images. There are exceptions to this i.e. Surface Pro USB Ethernet Adapter drivers and some of the newer 2014/2015 Ethernet adapter drivers from Dell and Lenovo. You certainly
    don't need to inject all the drivers from a driver folder source as it appears from your post.
    If your having problems with no network after you boot into your image just inject the Ethernet drivers only.
    If your using WinPE 5 - Use the Windows 8.1 Ethernet Driver (irrespective of what OS your trying to deploy)
    If your using WinPE 4 - Use the Windows 7 Ethernet Driver (irrespective of what OS your trying to deploy).
    Cheers
    Damon

  • Uncaught error fetching image? Help appreciated.

    Hello. I'm currently working on a simple game that is quite similar to Minesweeper. There are 25 JPanels that show an image when they are clicked, the object being to find all the gophers. Everything is working fine, but for some reason I'm getting an error when an image tries to load. This happens randomly throughout the game, with some loading and then crashing when the error appears. The error I get is the following:
    Uncaught error fetching image:
    java.lang.NullPointerException
            at java.io.FileInputStream.<init>(FileInputStream.java:103)
            at java.io.FileInputStream.<init>(FileInputStream.java:66)
            at sun.awt.image.FileImageSource.getDecoder(FileImageSource.java:35)
            at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
            at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
            at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)I'm currently using a modified version of Random that someone created, that makes sure values in a certain range are not repeated, to assign strings containing the image file's name randomly across the JPanels. Here's the method that I'm using to assign the strings:
        public void Generate() {
            for(int i = 0; i <= 24; i++) {
                if(i < maxGophers)
                    imageName = "gopher.jpg";
                else if(i < maxGophers+maxWolves && wolvesJCheckBox.isSelected())
                    imageName = "wolf.jpg";
                else if(i > maxGophers)
                    imageName = "hole.jpg";
                switch(generator.getNextInt(26)) {
                    case 1: panel1 = imageName;
                            break;
                    case 2: panel2 = imageName;
                            break;
                    case 3: panel3 = imageName;
                            break;
                    case 4: panel4 = imageName;
                            break;
                    case 5: panel5 = imageName;
                            break;
                    case 6: panel6 = imageName;
                            break;
                    case 7: panel7 = imageName;
                            break;
                    case 8: panel8 = imageName;
                            break;
                    case 9: panel9 = imageName;
                            break;
                    case 10: panel10 = imageName;
                            break;
                    case 11: panel11 = imageName;
                            break;
                    case 12: panel12 = imageName;
                            break;
                    case 13: panel13 = imageName;
                            break;
                    case 14: panel14 = imageName;
                            break;
                    case 15: panel15 = imageName;
                            break;
                    case 16: panel16 = imageName;
                            break;
                    case 17: panel17 = imageName;
                            break;
                    case 18: panel18 = imageName;
                            break;
                    case 19: panel19 = imageName;
                            break;
                    case 20: panel20 = imageName;
                            break;
                    case 21: panel21 = imageName;
                            break;
                    case 22: panel22 = imageName;
                            break;
                    case 23: panel23 = imageName;
                            break;
                    case 24: panel24 = imageName;
                            break;
                    case 25: panel25 = imageName;
                            break;
                } // end switch
            } // end for
        } // end method Generate{code}This is the code I'm using to load the images once the JPanels are clicked:
    {code:java}        imageIcon = new ImageIcon(panel1);
            image = imageIcon.getImage();
            Graphics g = blankJPanel1.getGraphics();
            g.drawImage (image, 1, 1, blankJPanel1);{code}There's also a JButton that draws all the associated images on all the panels, but that gives the error as well, drawing only some until it encounters it.
    I'm quite sure this isn't the most efficient way to go about it, so I'm open to any changes and suggestions. Thanks to anyone who can help!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    There are 25 JPanelsYou need to hold them in an array. All that panel1, panel2, ... panel25 business is a waste of time and space.
    java.lang.NullPointerExceptionSo something is null that shouldn't be.
    imageIcon = new ImageIcon(panel1);
    image = imageIcon.getImage();
    Graphics g = blankJPanel1.getGraphics();
    g.drawImage (image, 1, 1, blankJPanel1);i.e. one of those variables.

  • Error converting image     get error msg when trying to display thumbnail

    Hi there
    Me again
    I am having some problems displaying thumbnails
    I keep getting the error
    Error converting image (create thumbnail). The "...........public_html/productimages/thumbnails/" folder has no write permissions.
    So I go to my host and change write permissions on the files to 755 and try again and get the same msg
    Then I contacted my host and changed the permissions to 777 and I went to the includes config file and changed the permissions to 777 too and still does not work
    So I go to my cpanel and check all the files are set to 777 I make a new test page with a dynamic table and show thumbnail behavior and get the same error msgs
    So I close DW restart and try again and get the same msg.......
    So then I check the file permissions in the DW split screen window when connected to server..... I right click on some files on my server.... namely the 'thumbnails' file and check its permission and it is only set to 755 but in my host it is set to 777
    So I try to change ppermissions from DW and get the
    "setting access properties failed for: ' error
    So what is the correct permissiion..... 755 or 777?
    I have read two other posts on this forum and I still cant get to work
    Does anyone have any ideas
    I have used up all my options and most of my patience
    I hope I can get this working asap....
    Have a nice day

    Try going through the steps in this document:
    http://support.apple.com/kb/TS1539
    CG

  • Error converting image, cannot create thumbnail, linux server nightmare

    Hi there everyone
    <br />
    <br />Hope everyone is doing really well
    <br />
    <br />I have finally decided to try to fix a problem I have had for almost two years now
    <br />
    <br />I have read all the posts about this problem but I still cannot find the answer
    <br />
    <br />Every time I apply a show thumbnail server behavior I get this error
    <br />
    <br />Error converting image (create thumbnail). The "/home2/mysite/public_html/images/thumbnails/" folder has no write permissions.
    <br />
    <br />Which sounds easy
    <br />SO I reset the file permissions on the image file and the thumbnail fil and I still get the same error over and over again
    <br />
    <br />really frustrating as it means I have to have an extra field in my database and in my upload forms to store a tumb sized image
    <br />
    <br />I have read in one post to create a new php file and paste this code
    <br /><? phpinfo(); ?>
    <br />then check if GD library is enabled it IS enabled
    <br />
    <br />I read in another post that I should change something in my php.ini file on my server .... but I CANNOT find the file and I don't know what how or what to change.....
    <br />
    <br />Has anyone actually got the show thumbnail behavior to work on a linux server
    <br />
    <br />I would REALLY appreciate any help solving this problem
    <br />
    <br />have a great day

    Hi charis,
    Error converting image (create thumbnail). The "/home2/mysite/public_html/images/thumbnails/" folder has no write permissions
    SO I reset the file permissions on the image file and the thumbnail fil and I still get the same error over and over again
    what write permissions value did you now define for the thumbnails directory ?
    For every picture on my site I need to have three copies
    One full size for the detail page
    One thumbnail
    One small picture , bigger than the thumb to display in a tooltip , when you hover over the thumbnail
    please check Emmanuel´s excellent "Spry, ADDT & PHP Dynamic Images" tutorial, which tells you how to create a thumbnail image by using a Custom Trigger: http://www.grafikkaos.co.uk/article/39-Spry-ADDT-PHP-Dynamic-Images/
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • OATS - OLT : Request error : agent image not found on disk: empJAgent.exe

    Hello folks,
    When i am trying to run a OLT scenario using localhost as VU Agent, i get the following message. Although using other VUAgents the test works fine.
    "Request error : agent image not found on disk: empJAgent.exe"
    OLT Version : Oracle Load Testing 12.1.0.1.0 build 383
    Any help regarding this would be helpful.
    Regards,
    Nishant

    I eventually figured this out - it was that the portal management agent hadn't been created yet, I had to create it.

Maybe you are looking for