Hey, I added a few lines to the image import script so that if ecommerce is installed, you can automatically turn the images into products while you import them. You'd still need to go and add price information, but this will help our project some at least.

two snippets added to image_import.module,

around line 80, to add the product dialog to the import form
(after "if module_exists('taxonomy')"):

    if (module_exists('product')) {
      $form['type'] = array('#type' => 'value', '#value' => 'image');
      $form['#node'] = new stdClass();
      $form['#node']->type = 'image';
      product_form_alter('image_node_form', $form);
      unset($form['type']);
      unset($form['#node']);
    }

and around line 205 (after "if ($node)"), to turn the images into products:

            if ($form_values['ptype'] != '0') {
                $node->ptype = $form_values['ptype'];
                product_save($node);
            }

that's it. Someone might want to extend the form so that adding prices (like title and body) is an option before importing.