film – Luigi Barbano Photography https://mail.barbano.com Photography and Marketing since 1994 Wed, 28 Sep 2022 14:07:07 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.1 What if Artificial Intelligence… https://mail.barbano.com/2022/09/what-if-artificial-intelligence/ Wed, 28 Sep 2022 14:07:06 +0000 http://barbano.com/?p=2531 What if Artificial Intelligence…

…is already creating art and most of what we see in the Web and on social media is the digital equivalent of the famous Artist’s Shit by Piero Manzoni?

Just kidding, but after I made the video you can check here, where I talk about the new trend of AI creating photography, this idea came to my mind… what if? lol

Let me know what you think about the use of AI in the creation of art!

Continue reading What if Artificial Intelligence… at Luigi Barbano Photography.

]]>
…is already creating art and most of what we see in the Web and on social media is the digital equivalent of the famous Artist’s Shit by Piero Manzoni?

Just kidding, but after I made the video you can check here, where I talk about the new trend of AI creating photography, this idea came to my mind… what if? lol

Let me know what you think about the use of AI in the creation of art!

]]>
DIY UV Box Tested! https://mail.barbano.com/2022/05/diy-uv-box-tested/ Mon, 23 May 2022 13:43:13 +0000 http://barbano.com/?p=2524 DIY UV Box Tested!

It passed quite a while since I built my UV Box but sometime life gets in the middle of our fun projects! Now finally I tested the UV Box and I can say it works great.

.

.

I made a test with two different negatives: a very soft flower subject lighted with painted light and a very sharp subject lighted with a very contrasted light. I wanted to see how this printing process deals with different subjects.

Continue reading DIY UV Box Tested! at Luigi Barbano Photography.

]]>
It passed quite a while since I built my UV Box but sometime life gets in the middle of our fun projects! Now finally I tested the UV Box and I can say it works great.

.

.

I made a test with two different negatives: a very soft flower subject lighted with painted light and a very sharp subject lighted with a very contrasted light. I wanted to see how this printing process deals with different subjects.

I proceeded with some step test to find the corrected exposure for my negatives. I did 2 seconds steps and as you can see in the video I was a little optimist with my first strip of 2,4,6,8 seconds exposure. At the end the correct exposure resulted of 11 minutes.

.

You can see the tests I made in the video below.

I was expecting shorter exposure times ’cause I seen some other boxes made with the same LED giving short exposure times with other alternative processes.

Still I like the slow times when I work with film and so I kinda like to have time to think while I wait for the paper to be exposed.

The Arduino timer is working greatly and it’s a pleasure to use this box!

.

.

I have to learn to pose the emulsion better on the paper. The thickness came out not uniform and there are spots where the emulsion did not spread at all on the paper. Still I have a lot to learn but as a fist try I’m quite satisfied of the results.

The LabOldTech2000 kit is very easy to use and complete.

See you next time with new projects!

]]>
Luigi’s Drunk UV Box! https://mail.barbano.com/2022/02/luigis-drunk-uv-box/ Thu, 10 Feb 2022 10:41:21 +0000 http://barbano.com/?p=2510 Luigi’s Drunk UV Box!

I was always told: if you have to do something, do it with your own style! So here my Italian style UV box to expose the papers coated with antique photographic processes.

At the origin of photography many technologies of printing required the exposure in UV light. At those time sun was the perfect source and the exposure was usually made outdoor. The quantity of UV light from the sun can vary a lot in different seasons or with different weather, plus, baby it’s cold outside now in winter!

Continue reading Luigi’s Drunk UV Box! at Luigi Barbano Photography.

]]>
I was always told: if you have to do something, do it with your own style! So here my Italian style UV box to expose the papers coated with antique photographic processes.

At the origin of photography many technologies of printing required the exposure in UV light. At those time sun was the perfect source and the exposure was usually made outdoor. The quantity of UV light from the sun can vary a lot in different seasons or with different weather, plus, baby it’s cold outside now in winter! For this reason I decided to build a UV Box.

I was inspired by some similar projects videos on YouTube but I added a personal touch.

First of all I used an old wood box for wine bottles instead of a modern plastic box. The wood box was in my cellar, free, and wood looks better and more coherent than plastic with old techniques.

Second I decided to add a timer for a precise exposure instead of counting the seconds with an external timer and manually switch the lights on and off.

.

.

Check out the video to know more about the UV Box and see how it works.

.

I used very common components easy to buy online:

LED stripes: BTF-LIGHTING UV Black Light 5m 300 LED Strips, 5050SMD Ultraviolet 395nm-405nm

Arduino Nano

Arduino Display 1602A

Buttons: GUUZI 12mm

Switches: GUUZI 12mm, 16mm

LED: GUUZI 12V-24V 12mm LED

Power: MeanWell LRS-150-12 150W DC 12V IP20

5V Power: Greluma DC 12v 24v to 5v Step Down Converter 5A 25W

The 5V are derived from the 12V Power Supply with the Stepdown Converter.
The relays are on the 12V power supply going to the LED stripes and have the green LED in parallel.

.

Here is the scheme of the circuit:

.

Here the program I wrote for the timer:

#include <LiquidCrystal.h>
#include "Countimer.h"
#include <EEPROM.h>
Countimer tdown;
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);


#define bt_set    A0
#define bt_up     A1
#define bt_down   A2
#define bt_start  A3
#define bt_full   A4
#define LCD_CONTRAST_PIN 11
#define relON LOW
#define relOFF HIGH

int time_s = 0;
int time_m = 0;
int time_h = 0;
int set = 0;
int flag1=0, flag2=0;
int relay = 8;
int relay2 = 9;
int buzzer = A5;
int power = 0;
int contrast = 0;


void setup() {
Serial.begin (9600);
//set some defaults


pinMode(bt_set,   INPUT_PULLUP);
pinMode(bt_up,    INPUT_PULLUP);
pinMode(bt_down,  INPUT_PULLUP);
pinMode(bt_start, INPUT_PULLUP);
pinMode(bt_full,  INPUT_PULLUP);

pinMode(relay, OUTPUT);
pinMode(relay2, OUTPUT);
pinMode(buzzer, OUTPUT);

lcd.begin(16, 2);
analogWrite(LCD_CONTRAST_PIN, contrast); //set some contrast
lcd.clear();
lcd.setCursor(0,0);
lcd.print("   Welcome To   ");
lcd.setCursor(0,1);
lcd.print(" LB's Drunk UV Box ");
tdown.setInterval(print_time, 999);
eeprom_read();
delay(4000);
lcd.clear();
}

void print_time(){
time_s = time_s-1;
if(time_s<0){time_s=59; time_m = time_m-1;}
if(time_m<0){time_m=59; time_h = time_h-1;}
}

void tdownComplete(){
  lcd.setCursor(0,1);
  lcd.print("  Done  ");
  delay(3000);
  lcd.clear();}
 

void loop(){
tdown.run();

//read power
if(digitalRead (bt_full) == 0){power=1;}
if(digitalRead (bt_full) == 1){power=0;}

if(digitalRead (bt_set) == 0){
if(flag1==0 && flag2==0){flag1=1;
set = set+1;
if(set>4){set=0;}
delay(100); 
}
}else{flag1=0;}

if(digitalRead (bt_up) == 0){
if(set==0){tdown.start(); flag2=1;}
if(set==1){time_s++;}
if(set==2){time_m++;}
if(set==3){time_h++;}
if(set==4){ if(contrast < 254){contrast=contrast+1; analogWrite(LCD_CONTRAST_PIN, contrast);} if (contrast >= 254){contrast=254;};}
if(time_s>59){time_s=0;}
if(time_m>59){time_m=0;}
if(time_h>99){time_h=0;}
if(set>0){eeprom_write();} //EEPROM.write(addrCon, contrast); EEPROM.write(addrLum, luminosity);
delay(200); 
}

if(digitalRead (bt_down) == 0){
if(set==0){tdown.stop(); flag2=0;}
if(set==1){time_s--;}
if(set==2){time_m--;}
if(set==3){time_h--;}
if(set==4){ if(contrast > 0){contrast=contrast-1; analogWrite(LCD_CONTRAST_PIN, contrast);} if (contrast <= 0){contrast=0;};}
if(time_s<0){time_s=59;}
if(time_m<0){time_m=59;}
if(time_h<0){time_h=99;}
if(set>0){eeprom_write();} // EEPROM.write(addrCon, contrast); EEPROM.write(addrLum, luminosity);
delay(200); 
}

if(digitalRead (bt_start) == 0)
  {if(set==0){{ flag2=1; 
  eeprom_read(); 
  if(power == 0){
  digitalWrite(relay, relON);
  digitalWrite(relay2, relOFF);}
else {
   digitalWrite(relay, relON);
   digitalWrite(relay2, relON);}

  tdown.restart(); 
  tdown.start();
}}
  else {set=0;
  }
}


lcd.setCursor(0,0);
if(set==0){
  if(power==1){lcd.print("PW full    Timer");}
  if(power==0){lcd.print("PW half    Timer");}
}
if(set==1){lcd.print("  Set Timer SS  ");}
if(set==2){lcd.print("  Set Timer MM  ");}
if(set==3){lcd.print("  Set Timer HH  ");}
if(set==4){lcd.print("  Contrast:  " + String(contrast)+"  ");}
lcd.setCursor(8,1);
if(time_h<=9){lcd.print("0");}
lcd.print(time_h);
lcd.print(":");
if(time_m<=9){lcd.print("0");}
lcd.print(time_m);
lcd.print(":");
if(time_s<=9){lcd.print("0");}
lcd.print(time_s);
lcd.print("   ");

if(time_s==0 && time_m==0 && time_h==0 && flag2==1){flag2=0;
tdown.stop(); 
digitalWrite(relay, relOFF);
digitalWrite(relay2, relOFF);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
delay(200);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
delay(200);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
tdownComplete();
eeprom_read();
}

if(flag2==1){
    if (power == 1){digitalWrite (relay, relON); digitalWrite(relay2, relON);}
    else {digitalWrite (relay, relON); digitalWrite(relay2, relOFF);}
    }
else{digitalWrite(relay, relOFF);
     digitalWrite(relay2, relOFF);}

delay(1);
}

void eeprom_write(){
EEPROM.write(1, time_s);  
EEPROM.write(2, time_m);  
EEPROM.write(3, time_h);  
}

void eeprom_read(){
time_s =  EEPROM.read(1);
time_m =  EEPROM.read(2);
time_h =  EEPROM.read(3);
}

.

As you see it is easy to build, it just requires some electronic/programming skills and a lot of patience. Buying a full 6 bottles box and drink them during the building can help the morale, I’m not sure about the results!

]]>
Merry Christmas to All… https://mail.barbano.com/2021/12/merry-christmas-to-all/ Thu, 23 Dec 2021 18:14:19 +0000 http://barbano.com/?p=2492 Merry Christmas to All…

Dear Friends,

I wish you a great Christmas, filled with joy and the right personal choices!

.

This is a strange Christmas with too many people trying to cancel it, some for cultural reasons as the European Commission, others finding excuses in a virus that seem to spread only in specific situations.

It is always difficult to find a proper reaction to evil when it’s in charge of our lives, so I was wondering what to do and the question came natural: “What would John Galt do?”.

Continue reading Merry Christmas to All… at Luigi Barbano Photography.

]]>
Dear Friends,

I wish you a great Christmas, filled with joy and the right personal choices!

.

This is a strange Christmas with too many people trying to cancel it, some for cultural reasons as the European Commission, others finding excuses in a virus that seem to spread only in specific situations.

It is always difficult to find a proper reaction to evil when it’s in charge of our lives, so I was wondering what to do and the question came natural: “What would John Galt do?”. The answer was very easy and so here’s my traditional Christmas image for the year 2021!

This year, more than ever, we are in a war, it’s not a traditional war at the moment but a cultural war. One side is the side expressing all the values that permit to appreciate and enjoy Christmas, the other side is the side that is not able to joy and wants to cancel it.

The premise of Christmas is the freedom to chose between good and evil, Santa made a list and only the nice ones receive his gifts. Christmas is the season when joy must be deserved, it is the season that celebrates the birth of Jesus, a man who taught us that we are all equal and free to chose, a man who at the end gave his life to eliminate the evil represented by the pretense of an original sin defined by evil people to impose their power on others using guilt as their main weapon.

No matter if you look at the Christian faith as believer or simply as an observer of human and political changes, in both ways the meaning of Christmas is clear. The reason why a lot of powerful people is trying to cancel Christmas is exactly to eliminate that meaning.

To be good must be a choice and as a choice we are good toward people deserving it. It’s a season to donate to other deserving people, the nice on Santa’s list. It’s the season to celebrate the fact that we as human are equal and none of us must be considered inferior or guilty for something other people did.

We are in an era when some people in powerful positions want us to believe the opposite of Christmas. They want us to believe we are guilty because we were born with a specific color of our skin, they want us to believe we are guilty if we do not chose to follow their stupidity of the moment also if we see it clearly and think it’s evil, they want us to believe is their right to rule us also when the rules are wrong, they want us to forget reason and substitute our believes in freedom with their believes in controlling us. They want to cancel the basis of freedom and cancel a popular tradition easy to understand by everybody as Christmas, it’s an easy way, much easier than debating the centuries of philosophy that created the western culture of freedom. They want us to forget our power to give to whom deserve, they want us to give them the power to steal all our money so they can decide who is worth of receiving.

In Christmas we can find all the words to express the best of the human kind: freedom, generosity, joy, equality, love, responsibility, choice, etc. etc. They want to substitute all with the new language they use to rule us: a limited freedom, fair share, guilty joy, equity, duty, settled science and so on.

It’s a war, and it’s a war we can win and are winning. To win it we have just to keep to ourselves our values and love for life and give nothing to them. They cannot enjoy Christmas, we can and we must not make the mistake to share it with undeserving people. To win we must not just chant “Let’s go Brandon”, we must deeply feel it and act accordingly.

On the technical side I had some fun using an 8×10″ view camera, a Black and White film, printing in the darkroom and hand painting the image. A video of that will come soon on YouTube… if my GoPro worked properly!


.

]]>
Black and White Tales, Print #45 https://mail.barbano.com/2020/11/black-and-white-tales-print-45/ Mon, 16 Nov 2020 15:37:33 +0000 http://www.barbano.com/?p=2383 Black and White Tales, Print #45

To keep the mind awake, specially in lock downs, books are a great tool.

This image is inspired by a Buzzati’s novel. Not the right book to read right now, being a little bit too much kafkian, but a book that came to my mind this week and inspired this picture years ago.

.

.

.

See you next week… and we will see if the tide brought something useful…

Continue reading Black and White Tales, Print #45 at Luigi Barbano Photography.

]]>
To keep the mind awake, specially in lock downs, books are a great tool.

This image is inspired by a Buzzati’s novel. Not the right book to read right now, being a little bit too much kafkian, but a book that came to my mind this week and inspired this picture years ago.

.

.

.

See you next week… and we will see if the tide brought something useful…

]]>
Black and White Tales, Print #44 https://mail.barbano.com/2020/11/black-and-white-tales-print-44/ Tue, 10 Nov 2020 11:28:32 +0000 http://www.barbano.com/?p=2377 Black and White Tales, Print #44

Sorry guys… there were some glitches in the system when I was printing my image November 3rd… Here all I got…

.

.

See you next week… hoping there will be no more “glitches”!!!

Continue reading Black and White Tales, Print #44 at Luigi Barbano Photography.

]]>
Sorry guys… there were some glitches in the system when I was printing my image November 3rd… Here all I got…

.

.

See you next week… hoping there will be no more “glitches”!!!

]]>
Black and White Tales, Print #43 https://mail.barbano.com/2020/11/black-and-white-tales-print-43/ Tue, 03 Nov 2020 13:22:00 +0000 http://www.barbano.com/?p=2367 Black and White Tales, Print #43

A lot of things are going on right now.

The most important is the vote for the presidential elections in USA.
Dear Americans, vote wisely so I can continue to work on my plans and keep my dreams. If not, I will have to switch to survival mode, exactly as my parents and grandparents did in the 1940s.

.

.

.

See you next week, I hope with my plans still intact.

Continue reading Black and White Tales, Print #43 at Luigi Barbano Photography.

]]>
A lot of things are going on right now.

The most important is the vote for the presidential elections in USA.
Dear Americans, vote wisely so I can continue to work on my plans and keep my dreams. If not, I will have to switch to survival mode, exactly as my parents and grandparents did in the 1940s.

.

.

Black and White Tales, Print 43 by Luigi Barbano

.

See you next week, I hope with my plans still intact.

]]>
Black and White Tales, Print #42 https://mail.barbano.com/2020/10/black-and-white-tales-print-42/ Tue, 27 Oct 2020 13:50:03 +0000 http://www.barbano.com/?p=2359 Black and White Tales, Print #42

The Covid anxiety is back. Media, here in Italy, push continuous news about the cases count and create panic. The numbers don’t add up, but who cares, all they care about is creating enough panic to justify the socialist government grab of power.

In this environment I was thinking at the good old days when the news came from newspapers, just once a day.

.

.

.

Continue reading Black and White Tales, Print #42 at Luigi Barbano Photography.

]]>
The Covid anxiety is back. Media, here in Italy, push continuous news about the cases count and create panic. The numbers don’t add up, but who cares, all they care about is creating enough panic to justify the socialist government grab of power.

In this environment I was thinking at the good old days when the news came from newspapers, just once a day.

.

.

.

See you next time! Still 8 weeks to go…

]]>
It’s not just that I’m an old dinosaur… https://mail.barbano.com/2020/09/its-not-just-that-im-an-old-dinosaur/ Thu, 24 Sep 2020 15:04:17 +0000 http://www.barbano.com/?p=2309 It’s not just that I’m an old dinosaur…

I had been asked many times why I still use film for some of my projects. Sometime the fact that I’m an old dinosaur was implied, but is not just that.

The fact is that I really like film photography for many reasons and not just for the better aesthetic for some situations.

Here my main ten reasons, you can read just the titles or you can open the video below and hear the complete explanation I give:

  • It’s simple
  • Better learning curve
  • More control
  • Film means reality
  • Visible without tools
  • Variety of formats and cameras
  • Aesthetic
  • Value
  • It’s a slow process
  • It’s analogue!

Continue reading It’s not just that I’m an old dinosaur… at Luigi Barbano Photography.

]]>
I had been asked many times why I still use film for some of my projects. Sometime the fact that I’m an old dinosaur was implied, but is not just that.

The fact is that I really like film photography for many reasons and not just for the better aesthetic for some situations.

Here my main ten reasons, you can read just the titles or you can open the video below and hear the complete explanation I give:

  • It’s simple
  • Better learning curve
  • More control
  • Film means reality
  • Visible without tools
  • Variety of formats and cameras
  • Aesthetic
  • Value
  • It’s a slow process
  • It’s analogue!

If you want to see a comparison between film and digital, you can read a couple of articles I wrote some time ago:

Digital Fuji Acros vs Ilford FP4 Film

Fuji Acros Digital vs Fuji Acros Film

Until the next time!

]]>
Gear Talk: Pentax MX https://mail.barbano.com/2020/06/gear-talk-pentax-mx/ Thu, 04 Jun 2020 13:37:49 +0000 http://www.barbano.com/?p=2100 Gear Talk: Pentax MX

There are cameras that remained the preferred, no matter if other cameras were better with more options. For me the Pentax MX is that camera.
I used many cameras and some of them gave the possibility to do more things than the MX, but still, when I take the MX in my hands and I hear the click, something gives me the desire to take pictures.

.

.

See you soon with the Pentax LX!

Continue reading Gear Talk: Pentax MX at Luigi Barbano Photography.

]]>
There are cameras that remained the preferred, no matter if other cameras were better with more options. For me the Pentax MX is that camera.
I used many cameras and some of them gave the possibility to do more things than the MX, but still, when I take the MX in my hands and I hear the click, something gives me the desire to take pictures.

.

.

See you soon with the Pentax LX!

]]>