Drupal 7 save user picture programmatically
问题 I have found this script http://d.danylevskyi.com/node/7 which I have used as a starter for the below code. The goal is to be able to save a user picture: <?php define('DRUPAL_ROOT', getcwd()); require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); $uid = 99; $account = user_load($uid); // get image information $image_path = 'public://avatars/upload/b8f1e69e83aa12cdd3d2babfbcd1fe27_4.gif'; $image_info = image_get_info($image_path); // create file object