top of page
logo.png

We Customize Your Favorite One From The Selected Original in the Artists Portfolio.

 

Please Send Us The ArtWork Number (e.g.0023) By Email And We Will Customize Your Information And Request.

Email:sales@picturadarte.com

Price for 11" X 17" : $14.50.  Per Estimate and more size available.  For 18" X 24".  For 22" X 34".     

 
 
 
as复的.jpg

We customize your favorite from your selection in the Artists Portfolio. 

asas的.jpg
Go to Shop

Remember the product number of the artwork, then click "Go To Link"

sddfh.jpg
Add to Cart

Add the favorite artwork by using the number, and select the size.

Example of Poster by Pictura D'arte

 

Example of Customized Poster or Card With Your Personalized Wishes

 
Outdoor Birthday Table

How The "Digital" Works

How it works

Order The "Artest" Birthday Card Ever

 
 

Please Send Us The ArtWork Number (eg.0023) By Email And We Will Customize Your Information And Request.

Email:sales@picturadarte.com

 
 

Birthday

Wedding Tables

How The "Digital" Works

How it works

Order The "Artest" Wedding Card Ever

Please Send Us The ArtWork Number (eg.0023) By Email And We Will Customize Your Information And Request.

Email: sales@picturadarte.com

 

Wedding

How The "Digital" Works

How it works

Customize More

 
 

Please Send Us The ArtWork Number (eg.0023) By Email And We Will Customize Your Information And Request.

Email:sales@picturadarte.com

 
 

More

Office copying machine

Real Scan & Print

Like The Art Gallery Quality

We use the professional scanner and printers to carefully reproduce a copy of every piece of the original art.

IMG_0261_edited.jpg

Package Protection

Professional Tube Packaging

We have customized packaging for different sizes, this professional package ensures that your reproduction will not be damaged.

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