top of page
logo.png

The Original Are For Sale

Buy An Original From The Artists Portfolio

linedrawing.png

Sketch Example

September  1974

Estimated Price:

$500 - $1500

0009 JBD MONOTYPE  24 X 18 1988 FAIRFIEL

 MONOTYPE  Example

August  1988

Estimated Price:

$250 - $850

JBD belle de Denpasar Bali final.jpg

Watercolor Example

May  2020

Estimated Price:

$650 - $2500

10PAL0002%20AL%20Poster%20reproduction%2

Photography Example

August 2018

Estimated Price:

$550 - $1500

152 JBD OIL ON CANVAS 24 X 24 2018 Fairf

Oil Painting Example

August  2018

Estimated Price:

$3500 - $6500

99 JLD INK ON PAPER 31 X 24 1978 Venice

Ink on Paper Example

August  1978

Estimated Price:

$1500 - $2500

© Copyright

Original Framed Artwork by JBD

Original Framed Artwork by JLD

The Price Will Vary In Function of Size and Quality.

bottom of page
#!/usr/bin/env bash # --- Function to split string split_by () { string=$1 separator=$2 tmp=${string//"$separator"/$'\2'} IFS=$'\2' read -a arr <<< "$tmp" echo "${arr[@]}" } # --- Create directories for processed images mkdir -p thumbnails_600 mkdir -p thumbnails_200 mkdir -p watermark_images # --- Loop over all .png images in this directory for image in ./*.png do # --- Don't process the watermark foreground image if [[ $image =~ "pictura_darte" ]] then continue fi echo "Processing "$image # --- Create thumbnails images thumbnail="thumbnails_600/"$image convert -thumbnail 600 $image $thumbnail thumbnail="thumbnails_200/"$image convert -thumbnail 200 $image $thumbnail # --- Get size of image geometry=`identify -verbose $image |grep geometry | head -n 1` separator=': ' tmp=${geometry//"$separator"/$'\2'} ; IFS=$'\2' read -a arr <<< "$tmp" geometry=${arr[1]} separator='+' tmp=${geometry//"$separator"/$'\2'} ; IFS=$'\2' read -a arr <<< "$tmp" geometry=${arr[0]} separator='x' tmp=${geometry//"$separator"/$'\2'} ; IFS=$'\2' read -a arr <<< "$tmp" size_x=${arr[0]} size_y=${arr[1]} # --- Figure out where to position the watermark factor=$size_x if (($size_x > $size_y)) then factor=$size_y fi diff_x=$((size_x - $factor)) pos_x=$((diff_x / 2)) diff_y=$((size_y - $factor)) pos_y=$((diff_y / 2)) watermark="watermark_images/"$image convert $image \( pictura_darte.png -thumbnail x$factor \) -geometry +$pos_x+$pos_y -composite $watermark done