El artista Daniel Arsham desvela su último proyecto dentro de su serie de “reliquias”, en esta ocasión una bomba de gasolina antigua.
Originalmente el artista compró una bomba real para crear el trabajo, pero finalmente optó por reconstruirla digitalmente en 3D, basádose en las características del original y exagerando los detalles creando diferentes texturas y profundidad en el texto, los números y las imágenes. Sobre esta decisión Arsham ha dicho:
“Si hubiera fundido la bomba de gasolina original, serían solo dos bloques con algunas mangueras, sin detalles”.
La detallada escultura cuenta con publicidad de Coca-Cola y logotipos de Shell en la sección inferior, contadores antiguos de de gasolina en la sección central y tabla de precios en la parte superior con aspecto erosionado.
foreach ($images as $image) {
if ($start <= $i and $i < $stop) {
$img_title = $image->post_title; // title.
$img_description = $image->post_content; // description.
$img_caption = $image->post_excerpt; // caption.
$img_url = wp_get_attachment_url($image->ID); // url of the full size image.
$preview_array = image_downsize( $image->ID, 'thumbnail' );
$img_preview = $preview_array[0]; // thumbnail or medium image to use for preview.
?>
}
$i++;
}
?>
}
}
// LAST NIGHT GALLERY=============================
// Get attached images & spits out a list of them.
function last_night_gallery($size = 'post-parrilla', $limit = '0', $offset = '0') {
global $post;
$images = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') );
if ($images) {
$num_of_images = count($images);
if ($offset > 0) : $start = $offset--; else : $start = 0; endif;
if ($limit > 0) : $stop = $limit+$start; else : $stop = $num_of_images; endif;
$i = 0;
?>