सहेजें नोड पर छवि शैली पीढ़ी बल


9

मुझे अभी भी मेरी समस्या यहाँ बताई गई है चित्र शैली, फ़ील्ड संग्रह आइटम में पुन: उपयोग छवि लेकिन मैंने समाधान प्राप्त करने के लिए छोड़ दिया।

मेरे दिमाग में एक वर्कअराउंड आया है, जो कि पीढ़ी दर पीढ़ी कल्पनाओं को बल देने के लिए है। क्या ऐसा करने के लिए कोई अड़चन है?

जवाबों:


12

हां - आप कार्यान्वित कर सकते हैं hook_node_insert()और hook_node_update()एक कस्टम मॉड्यूल में और छवि एपीआई कार्यों का उपयोग करके वहां छवियां बना सकते हैं। उदाहरण के लिए

function MYMODULE_node_insert($node) {
  // Get some field items from a field called 'field_photo.
  if ($image_items = field_get_items('node', $node, 'field_photo')) {
    $image_item = array_shift($image_items);

    // Load the associated file.
    $file = file_load($image_item['fid']);

    // An array of image styles to create.
    $image_styles = array('style_1', 'style_2');

    foreach ($image_styles as $style_name) {
      // Get the location of the new image.
      $derivative_uri = image_style_path($style_name, $file->uri);

      // Create the image.
      image_style_create_derivative($style_name, $file->uri, $derivative_uri);
    }
  }
}

अच्छा लग रहा है धन्यवाद! लेकिन क्या आप जानते हैं कि मेरे नोडोडाइप से संबंधित फ़ील्ड संग्रह आइटम का मूल्य कैसे प्राप्त करें?
पापिनी

वास्तव में - drupal.stackexchange.com/questions/11062/… :) ओह और मामले में आपको इसकी आवश्यकता है: drupal.stackexchange.com/questions/11062/…
Clive

अब मैंने देखा है, कि उत्पन्न छवियों का आकार बदला नहीं जाता है, बस मूल आकार में संग्रहीत किया जाता है। क्या आपके साथ कभी ऐसा हुआ है और आपको इसका समाधान करने का कोई विचार है?
पापिनी


D7 का जीवन सीमित है, लेकिन जैसे ही कोई इस पर आता है, जैसा कि मैंने आज किया, एक सुधार। image_style_create_derivative () पहले पैरामीटर के लिए एक सरणी की अपेक्षा करता है, इसलिए वह पंक्ति होनी चाहिए: image_style_create_derivative (image_style_load ($ style_name), $ फ़ाइल> uri, $ derivative_uri);
मार्क

9

कोड के ब्लॉक के साथ दो जवाब ज्यादातर सही हैं, सिवाय इसके कि वे एक बड़ी बात को नजरअंदाज करते हैं:

Image_style_create_derivative का पहला तर्क एक छवि शैली सरणी होने की उम्मीद है।

वे जो कर रहे हैं वह सिर्फ शैली का नाम है। यदि आप जोड़ते हैं तो फ़ॉर्च में:

$style = image_style_load($style_name);

उसके बाद $ style_name को $ शैली में image_style_create_derivative फ़ंक्शन में बदलें, यह अपेक्षित रूप से काम करना चाहिए और स्टाइल की गई छवि उत्पन्न करना चाहिए।

image_style_create_derivative($style, $file->uri, $derivative_uri);

आशा है कि इस मुद्दे पर किसी और की मदद करता है।


4

आपकी मदद के लिए धन्यवाद, क्लाइव, क्षेत्र संग्रह वस्तुओं के लिए मेरा पूरा काम: (आप से एक और उपयोगी पोस्ट: एक क्षेत्र संग्रह तक पहुँच )

function channelportal_gallery_node_update($node) {

  //get all the id's from the field collection values
  $galleryimages = field_get_items('node', $node, 'field_gallery_and_caption');
  $fieldcollectionids = array();

  foreach ($galleryimages as $key => $value) {
    $fieldcollectionids[] = $value['value'];
  }

  // Load up the field collection items
  $items = field_collection_item_load_multiple($fieldcollectionids);

  foreach ($items as $item) {

    $image_item = field_get_items('field_collection_item', $item, 'field_gallery_image');

    // Load the associated file.
    $file = file_load($image_item[0]['fid']);

    // An array of image styles to create.
    $image_styles = array('gallery_big', 'gallery_thumbnail');

    foreach ($image_styles as $style_name) {
        // Get the location of the new image.
        $derivative_uri = image_style_path($style_name, $file->uri);

        // Create the image.
        image_style_create_derivative($style_name, $file->uri, $derivative_uri);
    }
  }
}


0

यह दोनों हुक_नोड_इन्टर () और हुक_नोड_अपडेट () का उपयोग करने और यह जांचने के लिए अनुशंसित है कि यदि आवश्यक छवि व्युत्पन्न उत्पन्न नहीं हुई है, तो उन्हें उत्पन्न करें, अन्यथा, कुछ भी न करें।

/**
 * Implements hook_node_insert to generate derivative images for the new inserted node in
 * case they are not generated
 * @param object $node
 */
function YOUR_MODULE_node_insert($node) {
  //REPLACE field_YOUR_IMAGE_FIELD WITH YOUR FIELD IMAGE NAME
  if(isset($node->field_YOUR_IMAGE_FIELD['und'][0]['uri'])) {
    _generate_image_style($node->field_YOUR_IMAGE_FIELD['und'][0]['uri']);
  }
}

/**
 * Implements hook_node_update to generate derivative images for the new updated node in
 * case they are not generated
 * @param object $node
 */
function YOUR_MODULE_node_update($node) {
  //REPLACE field_YOUR_IMAGE_FIELD WITH YOUR FIELD IMAGE NAME
  if(isset($node->field_YOUR_IMAGE_FIELD['und'][0]['uri'])) {
    _generate_image_style($node->field_YOUR_IMAGE_FIELD['und'][0]['uri']);
  }
}

/**
 * Generates the needed image styles by the image uri if they are not already generated
 * @param string $image_uri
 */
function _generate_image_style($image_uri) {
  //This should be changed to your image styles names.
  $image_styles = array('image_style_name1', 'large_image', 'promo_image');
  foreach ($image_styles as $style) {
    $derivative_uri = image_style_path($style, $image_uri);
    file_exists($derivative_uri) || image_style_create_derivative(image_style_load($style), $image_uri, $derivative_uri);
  }
}

नोट: यदि आपका छवि क्षेत्र कई चित्र लेता है तो आपको उनके माध्यम से इस तरह लूप करना चाहिए:

if(isset($node->field_main_image['und']) && is_array($node->field_main_image['und'])) {
  foreach($node->field_main_image['und'] as $delta => $image_field) {
    _generate_image_style($node->field_YOUR_IMAGE_FIELD['und'][$delta]['uri']);
  }
}

छवि शैलियों की पीढ़ी यहाँ से ली गई है

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.