Working with images as data

Hi,
How do I work with image data in HTML DB? I'd like to define a column of type ordimage (or if not that then BLOB)load images in the column, query images based on other related data in the row and display the images with related data. Thx. Bill

hi bill--
i'm pretty sure you'll find the answers you need in an ealier thread from this discussion forum...
BLOB (images) support in MarvelForms
could you take a look at it and let us know if you'd like further assistance, please?
thanks,
raj

Similar Messages

  • How to work with images in Keynote

    Hello,
    I'm a Keynote newbie and am having problems working with images. My basic question is, do I have to resize my .jpgs every time I put them in Keynote? It seems that if I choose to Insert>Choose a .jpg, it will fill my entire presentation and I have to resize. If I drag a .jpg, from iPhoto using the Media browser button, the .jpg will land squarely on the part of my canvas that's meant for the image (in the photo-with-title master slide). BUT, the image will just be masked and I once again need to resize it to fit the designated area.
    My second question is, if resizing is a fact of life in Keynote, are there any shortcuts which would allow me to resize quickly/automatically to the size of the image area on the canvas?

    I think Keynote inserts images in their native size, meaning that if you have a big jpg to begin with, it'll appear big on the slide. If you can't adjust the size of the images you have to begin with (for instance, you could easily adjust their size in a program like GIF Coverter--which would actually allow you to resize several at a time--before you begin to deal with Keynote at all) there is another solution to make it easier. Adjust the magnification of the slide to 50% so that when you insert the big images you can find the corners easily.
    I should add that I've only ever used Keynote 1. But Keynote arrives (inside a new iMac) as soon as tomorrow.

  • Nokia 6124 classic wont work with the USB Data Cab...

    Hi all,
    I'm trying to connett Nokia 6124 classic but its not working with the USB Data Cable. Is there a way to fixing it yourself?
    Thanks
    Jonathan 'Jonnie'

    You should install the drivers first before connecting your phone. Drivers are bundled in with pcsuite/ovi suite which can be downloaded from here.

  • Working with Validation of Data

    Hi. VC Experts.
                             I am currently working with VC 6.0. Where I am working with Validation of Data.
    we have fields like Emp, Earea, Joining date (month & Year),  Ending date((month & Year) etc.,
    Here we have one push button 'select'.
                         Here what my client asks is unless and until, user fills all details then only
    the submit but should be enabled. Otherwise submit button should be in disable mode.
    I could be able to write formula for 'submit' button's properties( Disable) like this.
    BOOL(IF(LEN(@Emp_code)<>0 AND  LEN(@Earea)<>0 AND LEN(@Edept)<>0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')<0 ,false,true))
                     Here condition is always make sure that 'Joining date' should be greater than 'Ending date' .  where it is working fine for all fields except Calender Year month(Joining date & Ending date).
                                the calender year month format is  Example : """" May 2007""""
    But it is considering only month But not year.
                  Can you kindly provide your inputs.
                                                                                 Thanks & Regards

    Hi Vijay,
    sorry
    please rewrite the formula for the button disable as::
    NOTE:: in the formula i have used '<''>'  which nothing but a lessthan symbol and greater than symbol without single quotes (i.e. not equal to)
    BOOL(IF(LEN(@Emp_code) '<''>'0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')<0 ,false,true))
    and make sure you have placed the date picker UI controls for your date functionality.
    this will not work for calender UI control on the form.
    and othe important point is the joining date should be less than ending date then only the button will be enable..
    if you want your joining date should be greater than ending date then write the formaula like this::
    BOOL(IF(LEN(@Emp_code)<>0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')>0 ,false,true))
    i tried this
    its working for me
    Regards
    Srinivas

  • HP Photosmart C2780 All-in-one won't work with Image Capture

    I want to use Image Capture as the scanning software but it won't connect to my scanner (HP Photosmart C2780 All-in-one). When I go to browse devices it shows the scanner but when i click on "Use Twain UI", nothing happens, and it is supposed to ask me if I want to connect. I believe that I have followed all of the instructions correctly but nothing is happening. Does the HP Photosmart C2780 even work with Image Capture? and if it does what am I doing wrong?

    Install the HP Drivers from HP.
    I installed V9.7.1 from the HP website:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-55650-2 &lc=en&cc=us&lang=en&os=219&product=3204785&dlc=en
    This provides 'Hp Device Manager' which will scan images or do OCR on text pages....

  • Why does the color red change from working with images in develop to library?  The color gets lighter and nothing shows a change on histogram but visually you can see it.

    Why does the color red change from working with images in develop to library?  The color gets lighter and nothing shows a change on histogram but visually you can see it.

    That's probably a broken display profile. The conversion from Library's Adobe RGB is different than the conversion from Develop's linear ProPhoto, so if there's a problem with the display profile it can show up this way.
    Recalibrate, or if you don't have a calibrator use sRGB. If your monitor is a wide gamut model use Adobe RGB.
    Assuming Windows, change it in Control Panel > Color Management > Devices, and relaunch Lightroom so that it can pick up the new profile at startup:

  • How do I select one record when working with image data sets?

    David Powers had an example with creating spry data sets and using the filename in the database linked to images in the local files as data sources.  The pages shows the images with the specified information requested, however all of the images display with their content.  I want to pull an individual record with the image and content. HELP!
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $maxRows_rs_getPhoto = 10;
    $pageNum_rs_getPhoto = 0;
    if (isset($_GET['pageNum_rs_getPhoto'])) {
      $pageNum_rs_getPhoto = $_GET['pageNum_rs_getPhoto'];
    $startRow_rs_getPhoto = $pageNum_rs_getPhoto * $maxRows_rs_getPhoto;
    mysql_select_db($database_gepps1_db, $gepps1_db);
    $query_rs_getPhoto = "SELECT last_name, first_name, personal_bio, file_name, width, height FROM mem_profile";
    $query_limit_rs_getPhoto = sprintf("%s LIMIT %d, %d", $query_rs_getPhoto, $startRow_rs_getPhoto, $maxRows_rs_getPhoto);
    $rs_getPhoto = mysql_query($query_limit_rs_getPhoto, $gepps1_db) or die(mysql_error());
    $row_rs_getPhoto = mysql_fetch_assoc($rs_getPhoto);
    if (isset($_GET['totalRows_rs_getPhoto'])) {
      $totalRows_rs_getPhoto = $_GET['totalRows_rs_getPhoto'];
    } else {
      $all_rs_getPhoto = mysql_query($query_rs_getPhoto);
      $totalRows_rs_getPhoto = mysql_num_rows($all_rs_getPhoto);
    $totalPages_rs_getPhoto = ceil($totalRows_rs_getPhoto/$maxRows_rs_getPhoto)-1;
    ?>
    <table width="800" border=" ">
      <tr>
        <td>Image</td>
        <td>thumbnail</td>
        <td>firstname</td>
        <td>lastname</td>
        <td>personal bio</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><img src="<?php echo $row_rs_getPhoto['file_name']; ?>" alt="" width="<?php echo $row_rs_getPhoto['width']; ?>" height="<?php echo $row_rs_getPhoto['height']; ?>"></td>
          <td><img src="<?php echo $row_rs_getPhoto['file_name']; ?>" alt="" width="50" height="35"></td>
          <td><?php echo $row_rs_getPhoto['first_name']; ?></td>
          <td><?php echo $row_rs_getPhoto['last_name']; ?></td>
          <td><?php echo $row_rs_getPhoto['personal_bio']; ?></td>
        </tr>
        <?php } while ($row_rs_getPhoto = mysql_fetch_assoc($rs_getPhoto)); ?>
    </table>
    <?php
    mysql_free_result($rs_getPhoto);
    ?>

    I tried pulling the record by using entered value, but then I would need to create several recordsets.
    It's actually no problem doing that.  Can you explain more what you want the final result of this page to display? You are pulling a recordset of the entire group of photos.  Do you still want that comprehensive recordset on this page?  How many other images do you want?  Are you trying to make a master/detail pair where this page displays only the details for a single image?  See what I mean?

  • Can import TIFF files but not see or work with images

    I previously used Aperture 2 with no problems. I have scanned a large number (hundreds) of negatives using SilverFast current version 6.6.2r2 using a Plustek OpticFilm 7500i scanner. These files are saved as .tif and are all approx 55 MB in size. I was able to view, work with them with no problems in Aperture 2. I can see and work with them in Photoshop CS4, iPhoto, Preview on my iMac and in any program on my PC. However, I cannot view them or work with them in Aperture 3
    When I updated to Aperture 3, the scanned files were visible in the preview mode but not otherwise viewable. Another image from a different project would appear or the image was corrupted. I have done everything in Aperture Library First Aid. I have deleted all of my projects, including my vault, uninstalled and reinstalled Aperture 3 and have the same problem. The image is viewable in Browser (preview mode) but either no image or another image shows up in Viewer or Inspector mode. When looking at the Metadata info, the file name is correct but a different version name is being assigned from a different project.
    Any ideas are appreciated. I am about to give up on A3 as it has been nothing but problems and unusable since installed/reinstalled.
    By the way, JPEGs from camera, cards, etc have been ok. But one of the major goals I have is to capture my old negatives. Unfortunately, the SilverFast JPEG option is not a viable option as not a viewable file by most programs. I have used the VueScan software but have not been happy with the image quality. Besides, I don't want to have to rescan all of these images.

    I wanted to give an update to my issue. The originals are 16-bit TIFFs using RGB color.
    I spoke with Apple Support. After uninstalling, reinstalling, making a new library, importing, generating previews, regenerating previews, attempting importing after saving as JPEGs, 8-bit TIFFs, 16-bit TIFFs from other programs (all of which are able to import and present the orginal .tif files with no problems, Aperture 2 included), the conclusion was that there must be something wrong with my original .tif files.
    I then brought up the only "solution" that had worked to date. That is importing the original TIFF, exporting it (via Aperture 3) as a TIFF and then importing the new TIFF. This has given me usable images and not just the previews. He said that that looked like the only workaround but that it wasn't a problem because of Aperture itself!?
    As cumbersome as this process will be, it may be worth it. I have trialed Lightroom 3 (which can handle the originals with no problem), and at least so far, I much prefer Aperture's workflow and organizational approach.

  • I have a client who was working with Now to Date, which is now obsolete.  She is looking for a mac calendar program that is as close to Now to Date as possible.  She has installed Outlook 2012 but finds that is takes too much time to enter data.  Help?

    I have a client who has been using Now to Date on her Mac.  That program is now obscure and she is looking for software that is extremely similar.  She has tried Outlook for Mac and it is too labor-intensive for her.  She wants a professional look, and something that is not linked to e-mail as she works with a lot of proprietary information.  Help?

    I could not identify that app in macupdate.com. If a Calendar program, what about iCal? did she try it and disliked? If you go to macupdate.com, and type ‘calendar’ in seach filed, you will be given a lot of apps, you or she should test what it most appropriate for your/her needs.

  • ActionListener doesn't work with image command_button

    Hi,
    with EA4, if I set an ActionListener on a command_button without specifying the image attribute, everything just works fine.
    If I now replace the label attribute with an image attribute, the action listener is no longer triggered.
    It seems that nobody reported this problem before, so maybe I've missed something.
    I tried several ways to make it work, but without success.
    Any clue ?
    Here is the code of my test :
    ** index.jsp :
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head>
    <title>
    Action listener and image command button
    </title>
    </head>
    <body>
    <f:use_faces>
    <h:form id="form" formName="form">
    <h:command_button id="clickButton" commandName="click" image="foo.gif">
    <f:action_listener type="foo.MyBeanActionListener" />
    </h:command_button>
    <h:output_text id="text" valueRef="MyBeanActionListener.text" />
    </h:form>
    </f:use_faces>
    </body>
    </html>
    ** faces-config.xml :
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
    <managed-bean>
    <managed-bean-name>MyBeanActionListener</managed-bean-name>
    <managed-bean-class>
    foo.MyBeanActionListener
    </managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    ** MyBeanActionListener :
    package foo;
    import javax.faces.event.*;
    import javax.faces.application.*;
    import javax.faces.FactoryFinder;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    public class MyBeanActionListener implements ActionListener {
    private String text;
    public void processAction(ActionEvent event) throws AbortProcessingException {
    FacesContext context = FacesContext.getCurrentInstance();
    ApplicationFactory factory = (ApplicationFactory)
    FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
    Application application = factory.getApplication();
    ValueBinding binding = application.getValueBinding("MyBeanActionListener.text");
    binding.setValue(context, "Button was Clicked");
    public PhaseId getPhaseId() {
    return PhaseId.ANY_PHASE;
    public void setText(String text) {
    this.text = text;
    public String getText() {
    return text;
    Thanks in advance.
    Michael

    but with EA4 the TLD doesn't
    define any src attribute for tag command_button.
    Do you (or anybody) have another idea ?oh - sorry about that ... i was looking at some other tag on my JSP and wrote this ...
    yeah, but an absolute URL does solve the problem ... or if u want it to work with a relative URL - use the HTML <base href=".." /> tag to establish the base

  • How Mail work with image attachements and HTML image ?

    Hello,
    I'm writing an application that sends html emails with images to Mail.app. When Mail display the mail, everything is okay, images are correctly embedded in html code, using inline attachements.
    But there's still a problem : The images are also displayed at the bottom of the email, as file attachements. I know that Mail's template can hide these attachements, but I cannot reproduce it when sending my own emails.
    Is there anybody here that already get such problem and find the solution ? (apparently, Windows User get the same problem with Outlook, but they have an API under Windows...I'm using my own email API..)
    David

    David can you share how you managed to get the inline images to work. I've got the general idea of how to do it. But I do not seem to be able to change the Content-Type to multipart/mix. Can you point me in the right direction. Should the Content-Type definition and everything else be part of the body? Or should some headers (namely the multipart) be defined in the mailto URL format?
    In other words do you do: mailto:?subject=test&Content-Type=multipart/mix;%20boundary=myBoundary&body=--m yBoundary etc...
    Or id it: mailto:?subject=test&body=Content-Type=multipart/mix;%20boundary=myBoundary%20- -myBoundary etc..
    Neither seems to work for me so I am really stuck. But knowing what the right way is would help me figure things out a bit better.
    Thanks in advance

  • Epson 1640xl does't work with image capture.

    I have an epson 1640XL scanner. I know the epson scan utiliy doesn't work with Snow Leopard. I have been instructed to use Image Capture.
    I see the scanner on the left, and when it "overview" scan's the image the scanner makes noise but doesn't produce anything on the screen.
    Any thoughts on how to get it working?
    seth

    I had all the problems stated above, while trying to scan with Image Capture. I got nothing but the "the scan operation is cancelled", after multiple tries. I called Epson. They said there was no driver that would work with OS X 10.8.4 for this scanner, and suggested that I call Apple. Apple said there was nothing they could do, and that I should call Epson. I followed the advise someone gave above, and downloaded EPSON Scan 3.8.0. The Epson software didn't work. It didn't seem to be able to pick up the 1640 XL. But, suddenly, I could preview with Image Capture. It was progress, but wouldn't work past the Overview step. The Scan button was "greyed out", not allowing me to proceed. I then tried importing through Photoshop. It works! Go to File/Import/Images from Device and you will get beautiful scans. Good luck, everyone.

  • Working with Groups, Region Data Somehow Misaligned Locations in Audio Files.. How to Realign?

    Hello All,
    I'm a nonexpert, so please excuse in advance any lack of knowledge that I probably should have. I've been heavily editing a recording of several days of jams for a long time, basically by cutting and aligning very disparate parts to form something new. I had been working with my drummer's audio tracks in group, so each would be aligned as I cut, pasted and stretched regions. Now to my dismay, the all of the kick drum regions have become unaligned with the other drum tracks. This isn't something I can simply nudge, because it has shifted the location of the audio data of all of the kickdrum regions back 5 or 6 seconds. Therefore, the proper start of the region is not even loaded. If you look at the screenshot below, there are two audio files, one drum overhead (0022 AIRE 2) and the kickdrum (0023 BOMBO). The regions 0022 AIRE 2.89, 107, 108, etc. should correspond in sample location with 0023 BOMBO.89, 107, 108, etc. But, as you can see, the BOMBO samples have been shifted leftwards, all of them.  All of the other drum tracks have the correct alignment for each region.  My question is: Is there a way I can copy the region mapping information between 0022 AIRE 2 and 0023 BOMBO? Or are there any other ways to tell 0023 BOMBO regions 89, 107, etc. to pull audio data from the same location as 0022 AIRE 89, 107, etc.? I really hope so, because if not I'm helpless. Thanks to anyone and all who might have some advice. JS

    Jeez, now it has happened to my other tracks as well.. If someone could please help, I would be grateful. Put too much work into it to have this ruin everything.. Here is another picture, how can I get these samples to realign? Remember, they are supposed to be part of a group and thus aligned. For some reason, the samples for the track 040 BOMBO have been all shifted leftwards in time from where they take the sample from the audio track. How can I fix this? Thank you anyone who can help..

  • Has anyone Worked with the Essbase Data Mining Module?

    I'd appreicate if you could post a message if you have worked with the Predictor and Target Range Expressions, and data mining models in general? I am looking for some insights into what Essbase Data Mining can do...<BR><BR>Thanks.<BR><BR>- Sherwin

    Yeah, unfortunately I am coming to the same conclusion.
    This is the entire response I received for "instructions"
    There are two projects: "fire_text_project" and "fire_text_project_plugin". The first once does not require any plugin because one particle effect is pre-rendred. If you have trapcode particular then you can use the second project and modify it.
    Finally you can create a realistic fire text in after effects!
    It took me a week to do the 3d fire simulation and render out all the 26 letters on fire. This is a very realistic fire thats simulated using advanced 3d software. The video is 621 x 720 px and it is 7 seconds long. All the letters has the color video and the black and white (alpha) video. You can use the alpha matte to create a tranpsarent background for the colored video. That's is how it is done in the two example comps included in the project. You will have to understand that the letters are video so it is not as easy as typing the letters using text tool to edit the text. Open the "1st text  Example comp 1" comp and it has marker that explains in detail on how to edit it.
    The two included comps are "Example_comp 1" and "Example_comp 2". These are great examples of what you can do with fire text but the possiblity is endless.You can create many interesting comps with these text on fire. Just to let you know the text that is rendered in 3d app is Arial Black.
    Think I am going to have no choice but to simply cancel the sale and look for something else.
    Thanks for all the input.
    Mike

  • If i buy a Unlocked iphone 4s and use it in another country will it work with the countrys data Services that are local

    If i buy a Unlocked iphone 4s and use it in another country, will it work with the countrys Local data Services

    hi guys,
    i recently bought a new iphone 4s factory unlocked. in order to avoid sim failures and invalid sim errors or No service errors, Each phone has to be unlocked by connecting it to the Itunes.
    Kindly follow the below steps to avoid any SIM card conflicts
    iPhone FULL Unlock - How it Works:
    -Connect your iphone to itunes without any network sim inside and when connected click on the iphones name.
    - Click Restore install latest version of iTunes on your Pc or Mac or click check for updates
    - Let itunes Backup your phone and then Flash to the Latest Version.
    - Now disconnect phone and reconnect after 10 seconds.
    - Now Enter another network simcard that's not the same network its locked on to
    - Connect phone to iTunes with not accepted (not valid) simcard
    - Wait until iTunes detects the phone
    - iTunes will display (Congratulations, Your iPhone is now unlocked)
    - Phone Unlocked
    - just follow the instructions about activating the Iphone.
    and iphone is unlocked
    NOTE : This is the only FULL LIFE TIME UNLOCK solution for Apple iPhone as the IMEI is registered as UNLOCKED in Apple database.
    This solution should be used ONLY THOSE WHO BOUGHT FACTORY UNLOCKED iPHONE 4S.
    Your phone will always be unlocked even after each new update of your phone firmware !
    All reasons given like bad IMEI series, manufacturing defects etc blah blah are not logical as everything was tested before every sale.

Maybe you are looking for

  • How can I create unique partnerships to deal with like EDI messages?

    I have an EDI to Application partnership setup currently that deals with translating MEDRUC type EDIFACT messages to a mainframe format. The setup is Sender = PARTNERA, Receiver = PARTNERB DocType = MEDRUC. In the Input EDI tab the Sender Qualifier I

  • Trouble getting into iTunes

    I have just bought a new laptop. I have downloaded iTunes but when I try to get into it I am given the following error message - 'The file iTunes library cannot be read because it was created by a newer version of iTunes'- Any ideas what I should do

  • Wipe PlayBook, re-register with another ID, install bought app?

    Hi, I want to make calls from my z10 to my playbook. I used one blackberry ID to register them both. Unfortunately this makes it impossible to make calls from the Z10 to the PlayBook. Therefore I need to wipe on of these. My question is: If I wipe my

  • Nautilus-elementary, icon error after GTK3/Gnome3 update..?

    Nautilus-elementary When I move a file or a folder around with the cursor, I normally see the icon and the text of the file/folder while I move it. But now I see only a little gray icon all the time, when I move a folder or a file around with the cur

  • A simple question: Using the user-folders differently

    Hello, I'm still getting started with my mac, that's why I have a pretty basic question: There are these user-folders on every mac: Documents, Music, Pictures etc. But since I sort my photos and videos by date, I often have pictures and videos in one