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

Similar Messages

  • Can't save PowerPoint as images with automator

    I am trying to use automator to create a set of slides from power point for a screensaver. I want the user to be able to drag the power point onto the automator App, generate an image from each slide, and save it to the 'Slideshow' folder and delete the pdf used to make the images. Then it should delete the pdf and images generated and either move the power point file to another folder or delete it. I'm using OS 10.8.4.
    Here's what I have so far:
    STEP 1: Convert Format of PowerPoint (to pdf)
    STEP 2: Render PDF Pages as Images
    STEP 3: Move Finder Items (to Slideshow folder)
    STEP 4: Find Finder Items (with extension pdf)
    STEP 5: Move Finder Items to Trash
    When I run a test I get a green checkmark on all the steps, but this workflow does absolutely nothing. At one point I tried saving the photos in iPhoto but that didn't work either. What should I do to make this work?
    Thanks.

    I solved, is it possible to close this topic? thanks.

  • 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

  • How can i save an extracted image to be able to edit it

    How can I save an extracted image in pse9 to be able to edit it - i.e. move it around on the layer to another spot and also to be able to resize it to make it bigger or smaller before repasting it back into another image/background?
    Thanks

      A really simple method is to use the quick selection tool to outline a person or object in a photo. Holding down the alt key changes the tool action from plus to minus - so you can perfect your selection as you go along (e.g. if you accidentally select part of the background)
    When you are happy with your selection of the person or object press Ctrl+J - this will automatically create a new transparent layer with your selection as shown by the checkerboard background.
    You can then add any other picture or background - here I’ve used a simple green background to illustrate the point by selecting Layer > New Fill Layer > Solid Color
    I then clicked on the transparent layer in the layer pallet and dragged it to the top - to reveal the green background behind my person selection.
    I then selected the hand tool and the bounding box appeared - by holding down the shift key you can drag the corner handles or sides of the bounding box to resize and then click the green checkmark to confirm OK. You can then drag the image to any position in the frame of your chosen background. Save as PSD to keep your layers for later or click Layer > Flatten Image to save as Jpeg.
    Click to view

  • 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

  • Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

    Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

    You may be able to drag and drop the icons from one toolbar onto another, you can then hide the toolbar that you no longer need. For details on how to do that see https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • Save the Overlay Figures and Text in an Image File in cvi

    is possible have an examples "Save the Overlay Figures and Text in an Image
    File"
    thanks
    nicola mirasole

    Nicola,
    I am sorry but we do not have an example for "Save the Overlay Figures and Text in an Image File" for CVI. Currently, you are going to need to use Window's API calls in order to get this functionality.
    Regards,
    Mike

  • Just purchased a new iMac running 10.9.5, needing a version of illustrator. Do I go with CS6 hard copy or down load or CC? I have 17 years of illustrator files some il 7 some CS. Can you save back to Legacy with CC?

    Just purchased a new iMac running 10.9.5, needing a version of illustrator. Do I go with CS6 hard copy or down load or CC? I have 17 years of illustrator files some il 7 some CS. Can you save back to Legacy with CC?

    Really need to be able to save back to the older versions, in order to output vector files on an older plotter. Running an older application of Mac sign from Softeam, can't get in touch with them. Total pain to upgrade, been dumbing down for too many years.

  • MapBuilder Error:Can not find a GeoRaster object with specified rdt and rid

    Hello,
    I can't GeoRaster data in the preview of the MapBuilder and MapViewer. The GeoRasterViewer shows the Raster images without problems.
    MapBuilders error message:
    19.11.2008 13:07:11 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    The errror message of MapViewer is nearly the same with some more informations about the spatial query and the coordintes of the query window. If I run that spatial query in the sqldeveloper it returns a result!
    I did following stebs:
    - saved a tiff-Image in a GeoRaster table with pyramid an tiled images.
    - checked the sdo_geom_metadata --> they are correct
    - checked the sdo_georaster object for the rdt table name and rasterid --> they are correct
    - checked the rdt table --> objects with that rid are saved
    - checked the mdsys.sdo_geor_sysdata table --> entry is correct
    - validate the geraster with the sdo_geor.validategeoraster function --> object is valid
    - updated the spatial extend of the image and try again the preview functio--> the same error
    The databse server is a virtual Linux server with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit.
    The web server is a Window 2003 R2 Server with a weblogic server and mapviewer patch 5 (Ver1033p5_B081010).
    For a test I did the same (the same table script, the same raster data, the same import method) on a developer pc (WinXP Pro SP2) with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 (32bit) the same mapbuilder version but with the MapViewer QuickStartKid and it works fine!!!
    Has anyone an idea?
    Greeting,
    Cord
    Edited by: Corti on Nov 19, 2008 2:14 PM

    Hi Joao,
    Thanks so far.
    I'm previewing a GeoRaster theme. I created it with the MapBuilder GeoRaster wizard. The theme difinition is (out of the export file):
    RAS_DGK|
    null|
    RAS_DGK|
    GEORASTER|
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="georaster">
    </styling_rules>|
    (GeoRaster table name is "RAS_DGK", theme name is also "RAS_DGK")
    I get following log information:
    preview without a coordinate or scale:
    MapBuilder Error (as pop up): MAPVIEWER 01005: no spatial data to render
    log file:
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-43
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    preview with a center coordinate of the image and a scale:
    20.11.2008 10:18:43 oracle.sdovis.SRS getOptimalQueryWindow
    AM FEINSTEN: *** isGeodetic=false, unit=METER
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-45
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: 2550045.7746478873,5608500.0,2551954.2253521127,5609500.0
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent, MDSYS.SDO_GEOMETRY(2003, 31466, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(?,?,?,?)), 'querytype=WINDOW') = 'TRUE'
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on loading features: 234ms.
    20.11.2008 10:18:43 oracle.sdovis.RenderingEngine prepareForRendering
    AM FEINSTEN: xfm: 0.284 0.0 0.0 -0.284 -724212.9999999999 1593097.9999999998
    20.11.2008 10:18:43 oracle.sdovis.ImageRenderer renderGeoRasterTheme
    WARNUNG: GeoRaster theme RAS_DGK has no rendered images.
    20.11.2008 10:18:43 oracle.sdovis.VectorRenderer render
    FEINER: time to render theme RAS_DGK with 0 styled features: 0ms
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on rendering: 16ms
    If I run the sql statement in the log file, it returns a result.
    select grt.georid, grt.GEORASTER, grt.GEORASTER.metadata.getClobVal()
    from ras_dgk grt
    WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent,
    MDSYS.SDO_GEOMETRY(2003, 31466, NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
    MDSYS.SDO_ORDINATE_ARRAY(2550045.7746478873,5608500.0,2551954.2253521127,5609500.0)), 'querytype=WINDOW') = 'TRUE';
    GEORID
    2
    GEORASTER
    MDSYS.SDO_GEORASTER(20001,MDSYS.SDO_GEOMETRY(2003,31466,null,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),MDSYS.SDO_ORDINATE_ARRAY(2550000,5608000,2552000,5610000)),RDT_RAS_DGK,522,oracle.xdb.XMLType@194a7ec)
    GEORASTER.metadata.getClobVal()
    <georasterMetadata xmlns="http://xmlns.oracle.com/spatial/georaster">
    <objectInfo>
    <rasterType>20001</rasterType>
    <isBlank>false</isBlank>
    <defaultRed>1</defaultRed>
    <defaultGreen>1</defaultGreen>
    <defaultBlue>1</defaultBlue>
    </objectInfo>
    <rasterInfo>
    <cellRepresentation>UNDEFINED</cellRepresentation>
    <cellDepth>8BIT_U</cellDepth>
    <totalDimensions>2</totalDimensions>
    <dimensionSize type="ROW">
    <size>6299</size>
    </dimensionSize>
    <dimensionSize type="COLUMN">
    <size>6299</size>
    </dimensionSize>
    <ULTCoordinate>
    <row>0</row>
    <column>0</column>
    </ULTCoordinate>
    <blocking>
    <type>REGULAR</type>
    <totalRowBlocks>4</totalRowBlocks>
    <totalColumnBlocks>4</totalColumnBlocks>
    <rowBlockSize>2048</rowBlockSize>
    <columnBlockSize>2048</columnBlockSize>
    </blocking>
    <interleaving>BSQ</interleaving>
    <pyramid>
    <type>DECREASE</type>
    <resampling>NN</resampling>
    <maxLevel>6</maxLevel>
    </pyramid>
    <compression>
    <type>NONE</type>
    </compression>
    </rasterInfo>
    <spatialReferenceInfo>
    <isReferenced>true</isReferenced>
    <SRID>31466</SRID>
    <modelCoordinateLocation>UPPERLEFT</modelCoordinateLocation>
    <modelType>FunctionalFitting</modelType>
    <polynomialModel rowOff="0" columnOff="0" xOff="0" yOff="0" zOff="0" rowScale="1" columnScale="1" xScale="1" yScale="1" zScale="1">
    <pPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>17668678.695368 0 -3.14949718277477</polynomialCoefficients>
    </pPolynomial>
    <qPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </qPolynomial>
    <rPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>-8031218.31607409 3.14949718277477 0</polynomialCoefficients>
    </rPolynomial>
    <sPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </sPolynomial>
    </polynomialModel>
    </spatialReferenceInfo>
    <layerInfo>
    <layerDimension>BAND</layerDimension>
    <subLayer>
    <layerNumber>1</layerNumber>
    <layerDimensionOrdinate>0</layerDimensionOrdinate>
    <layerID>1</layerID>
    <colorMap>
    <colors>
    <cell value="0" blue="255" red="255" green="255" alpha="255"/>
    <cell value="1" blue="0" red="0" green="0" alpha="255"/>
    </colors>
    </colorMap>
    </subLayer>
    </layerInfo>
    </georasterMetadata>
    I checked also the content of rdt table and it contains entries with that raster id (= 522).
    Finally the log file when I use the preview directly on the GeoRaster table without a theme:
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-55
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER from RAS_DGK grt where grt.GEORASTER.rasterid = ? and grt.GEORASTER.rasterdatatable = ?
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    If you need more information - please ask for it.
    Cord

  • Can I save a file to the Mac HD and, automatically, also save it to Dropbox?, Can I save a file to the Mac HD and, automatically, also save it to Dropbox?

    Hi everyone,
    Can I save a file to the Mac HD and, automatically, also save it to Dropbox (or another cloud-based storage)?
    What I would like to do is to have my Mac HD duplicated in the Cloud?
    Is this possible?
    Many thanks!
    Bryan

    Dear dwb
    Many thanks for responding!
    I am not that technical and I would be grateful if you could continue to help, please.
    On the first bit - the Dropbox folder - this I understand - I have been using Dropbox for a number of months and it is fine.
    The linking folders outside Dropbox does sound like it is what I would like to do but I don't know how to do it!
    May I give an example? 
    If I have a folder on my Mac HD in Documents entitled "Tax" (nightmare!!) and in the folder I have some subfolders (e.g. 2011, 2012 and 2013) and in the subfolders I have files such as "Propeties", "Travel Days", "Interest", etc.
    I would like to duplicate this folder (Tax) and all of its subfolders and files in Dropbox and AUTOMATICALLY update the Dropbox files everytime I update the file on the HD.
    Is this possible with Symlink?  And if so, how do I do it?
    I really appreciate your help!!
    Many thanks,
    Bryan

  • Can anyone tell me if you can back save from CS6 to CS5 Illustrator, Indesign and Photoshop OK?

    Can anyone tell me if you can back save from CS6 to CS5 Illustrator, Indesign and Photoshop OK? Want to upgrade to CS6 but must I must still remain compatible with work. They are using CS5.

    To clarify your answer for Illustrator.  The option is not in the "Save As" dialog box.
    The correct answer is
    Open you CS6 Illustrator file.
    File>Save As 
    The Save As dialog box opens
    Type your file name (DIFFERENT THAN ORIGINAL PLEASE!) and the Save as Type is still going to be Adobe Illustrator (*.AI)   **This is where the above instructions threw me, as the Save as type drop down does not list anything about versions to save fo)
    Click Save
    Once you click Save, the Illustrator Options dialog box will come up.  The first option is titled Version and has a drop down menu.  Select the version of illustrator you want to save your file as here, then click ok.
    Your done.
    I strongly suggest you give this file a different name than your original CS6 Illustrator version as you may lose some parts of your design in the conversion.
    Hope this helps.  Enjoy!

  • HT5071 Can I publish my work produced with iBooks Author and make it available (free of charge) for my students only?

    Can I publish my work produced with iBooks Author and make it available (free of charge) for my students only?

    Yes. Put it on your own server, and/or send it out via email.

  • How can the info block be assigned with the view and assign view to users.

    Dear Friends,
    Anyone could plz tell me how can the info block be assigned with the view and assign view to users.  Also how can the info block in sale summary be assigned with a view and how to assign this view for user.
    Regards,
    Ashima

    Hi,
    To define view and to make it default
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Define Reporting Views (Tcode:OVCD).
    To assign default user to the view.
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Assign Default View To User (Tcode:OVCC).
    To assign Elements of SAPScript "SD-SALES-SUMMARY" to information Blocks To A View use
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Assign Information Blocks To A View (Tcode:OVCB).

  • Can i use LTE in Italy with iPad 3 and iOS 6.1?

    Can i use LTE in Italy with iPad 3 and iOS 6.1?

    Unfortunately no. iPad 3rd gen LTE hardware is different than iPad 4th gen LTE hardware. Compatibility list  http://www.apple.com/ipad/LTE/  gives us no hope. Only in US and Canada you can use LTE with iPad 3rd gen. We are so unlucky. I paid for iPad 3rd gen 32Gb, Wifi + Cellular 729 Euros and only 5 months later Apple released iPad 4th gen. I am testing LTE on my iPhone 5 today and it really ROCKS.
    Message was edited by: Ekaradimos

  • Love firefox but am running on MAC OS X 4.0 still. what version of firefox can i download to be compatible with my system and where can i download? jo

    love firefox but am running on MAC OS X 4.0 still. what version of firefox can i download to be compatible with my system and where can i download? jo

    Firefox 3.6.21 - http://www.mozilla.com/en-US/firefox/all-older.html

Maybe you are looking for

  • Java desktop application run problem

    Hi. I have designed java desktop application which includes some libraries (XMLparserV2.jar, Ojdbc6.jar,xdb.jar, Orai18n-mapping,jar) with XML ini file. Then I have done deploy to jar. After it I relocated jar file and XML ini files to separate direc

  • Films in the Cloud now available in UK!!!!

    and supposedly in 35 other countries: http://www.macrumors.com/2012/07/19/apple-expands-itunes-movies-in-the-cloud-to- uk-canada-australia-and-new-zealand/ This is a huge step forward for users outside of the US. Only 3 Toy Story movies showed initia

  • Oracle 8i communicate with oracle 9i

    I'm planning to do data purging which transfer some old data in date range from oracle 8i to oracle 9i and then delete the old in oracle 8i. as i know, to communicate between database in same server, we need to use "Database Link" but if communicate

  • Pages '09 won't export a readable pdf

    Hello dear Pages People! I'm using Pages '09 to edit a document created on Pages for iPad. It looks fine on the screen of my Mac, but when I export as pdf the pdf file is very small (4 kb) and blank. Can you help please? Thanks, Jawn

  • Incompletely Log

    Hi, I Maintain Copy Control Goto VTAA - Copy control sales document to sales document Copy RE - OR sales Order Document Rename To ZOR6 - ZOR4 then... I'm trying to create a sales order (Doc type - ZOR6) with reference to another sales document (Doc t