是否可以通过编程方式将图像添加到节点?
答案 0 :(得分:51)
以下是可与node_save一起使用的示例代码
$filepath = drupal_realpath('misc/druplicon.png');
// Create managed File object and associate with Image field.
$file = (object) array(
'uid' => 1,
'uri' => $filepath,
'filemime' => file_get_mimetype($filepath),
'status' => 1,
);
// We save the file to the root of the files directory.
$file = file_copy($file, 'public://');
$node->field_image[LANGUAGE_NONE][0] = (array)$file;
`
答案 1 :(得分:31)
更简单的方法:
$filename = 'image.txt';
$image = file_get_contents('http://www.ibiblio.org/wm/paint/auth/gogh/gogh.white-house.jpg');
$file = file_save_data($image, 'public://' . $filename, FILE_EXISTS_RENAME);
$node->field_image = array(LANGUAGE_NONE => array('0' => (array)$file));
答案 2 :(得分:7)
这对我有用:
$file_temp = file_get_contents('public://someimage.jpg');
// Saves a file to the specified destination and creates a database entry.
$file_temp = file_save_data($file_temp, 'public://' . 'someimage.jpg', FILE_EXISTS_RENAME);
$node->field_page_image = array(
'und' => array(
0 => array(
'fid' => $file_temp->fid,
'filename' => $file_temp->filename,
'filemime' => $file_temp->filemime,
'uid' => 1,
'uri' => $file_temp->uri,
'status' => 1,
'display' => 1
)
)
);
答案 3 :(得分:3)
这是一个额外的一点,让我绊倒了一段时间:这会将图像附加到节点,如果你要添加图像,那么你没事。但是,如果你更新一个图像,并且你关心在页面上显示它,那么在调用node_save()之前需要一个额外的步骤:
image_path_flush($node->field_image['und'][0]['uri']);
这将重新生成所有图像的样式。
答案 4 :(得分:2)
$node->field_image[LANGUAGE_NONE][0] = (array)$file;
我尝试使用多语言网站。它失败了......但可怕的。 我必须指定有问题的语言。简而言之,这有效:
$node->field_image['en'][0] = (array)$file;
没有它,附件可在“视图”屏幕中查看,但不能在“编辑”屏幕中查看。
答案 5 :(得分:0)
是的,保存时将其作为$ node对象的一部分。使用node_save()保存它。
答案 6 :(得分:0)
这对我有用:
define('DRUPAL_ROOT', $_SERVER['DOCUMENT_ROOT']);
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
$node = node_load(99);
$filename = 'image.txt';
chdir(DRUPAL_ROOT);
$image = file_get_contents('http://www.ibiblio.org/wm/paint/auth/gogh/gogh.white-house.jpg');
$file = file_save_data($image, 'public://' . $filename, FILE_EXISTS_RENAME);
$node->field_imagen_producto = array(LANGUAGE_NONE => array('0' => (array)$file));
node_save($node);
答案 7 :(得分:0)
我也想在这里粘贴我的解决方案,我需要创建一个新节点,并以编程方式上传图像。
$filepath = variable_get('file_public_path') . '/xmas_banner.jpg';
$file_temp = file_get_contents($filepath);
$file_temp = file_save_data($file_temp, file_default_scheme() . '://' .'xmas_banner_nl.jpg', FILE_EXISTS_RENAME);
$node = new stdClass();
$node->type = 'carousel'; // custom content type
$node->title = 'XMAS NL';
$node->field_banner_image[LANGUAGE_NONE][0] = (array) $file_temp;
$node->uid = 1;
$node->status = 0;
$node->active = 0;
$node->promote = 0;
node_save($node);