Skip to main content

Canon EF 24-70mm f/2.8 L USM Lens

The Canon EF 24-70mm f/2.8 L USM Lens is a very sharp lens - few zoom lenses reach this level of sharpness. The 24-70 L is sharp in the center at f/2.8 at all focal lengths and performs very well in the corners. Some corner softness is visible at the wide end of the focal length range and more softness is apparent in the 50-70mm corners. As usual, stopping down (selecting a narrower aperture) to f/5.6 makes a big difference in the longer focal length corners.

The wide open 24mm corners are most-affected by vignetting. Vignetting is very well controlled, but apparent in the corners at f/2.8 at 24mm on a full frame body. Vignetting improves as the focal length increases and the aperture is narrowed. At comparable apertures, the 24-70 L shows less vignetting than the also-excellent Canon EF 24-105mm f/4 L IS USM Lens - a typically-expected result when comparing a fast lens to a slower lens.

Like most 24-xx zoom lenses, the 24-70 L shows some barrel distortion on the wide end. More specifically, a bulge in the middle of the frame. Barrel distortion disappears around 35mm. A very slight pincushion distortion begins at 50mm and becomes moderate by 70mm.

Color, contrast and saturation are excellent. CA (Chromatic Aberration) is very well controlled - especially for a zoom lens. The wide 8-blade aperture produces a nice quality background blur and a nice amount of it.

Prime lenses (fixed focal length lenses) are often compared favorably to the 24-70 L. They are generally less expensive, smaller, lighter, faster (aperture) and very sharp. My personal preference is for zoom lenses for my photography applications in this focal length range. To me personally, the ability to change framing instantly far outweighs the slight image quality advantages fixed focal length lenses offer over the 24-70 L.

I'm often asked - can images shot with a consumer zoom lens be post-processed to result in images similar to 24-70 L images? The answer is: you can adjust contrast and saturation, but you cannot add missing detail. And, color can be very difficult to match later. So, using a better lens will usually result in better post-processed images. Most primes and L lenses are noticeably better than consumer zooms.

Image quality is not the only pro-grade feature of the Canon EF 24-70mm f/2.8 L USM Lens. Excellent AF is part of the equation. A Ring USM (Ultrasonic Motor) AF system delivers quiet, fast and accurate autofocus. The 24-70 L's f/2.8 aperture enables the enhanced-sensitivity of many Canon EOS DSLR body's AF points. As usual for a Ring USM AF system, FTM (Full-Time Manual) focusing is enabled. The 24-70 L does not extend with focus and the 77mm filter ring does not rotate.

Link from: http://www.the-digital-picture.com/Reviews/Canon-EF-24-70mm-f-2.8-L-USM-Lens-Review.aspx

you can buy this lens from: CANON EF 24-70mm f/2.8L II USM

Penampakan:
CANON EF 24-70mm f/2.8L II USM

Comments

Popular posts from this blog

Menginstall Nginx, MySQL, PHP on Ubuntu Bionic Beaver (18.04 LTS)

TAHAP I - INSTALL NGINX ns@ubuntu:~$ sudo apt install nginx TEST INSTALLASI NGINX ns@ubuntu:~$ curl http://ip_localhost TAHAP II - INSTALL MYSQL ans@ubuntu:~$ sudo apt install mysql-server ans@ubuntu:~$ sudo mysql_secure_installation Set password untuk mySql secure connection ans@ubuntu:~$ sudo mysql mysql> SELECT user,authentication_string,plugin,host FROM mysql.user; mysql>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; dimana 'password' di set sesuai keperluan lalu cek lagi, mysql> SELECT user,authentication_string,plugin,host FROM mysql.user; TAHAP III - INSTALL PHP ans@ubuntu:~$ sudo apt install php-fpm php-mysql ubah cgi.fix_pathinfo dari 1 menjadi 0 di file php.ini ans@ubuntu:~$ sudo nano /etc/php/7.2/fpm/php.ini cgi.fix_pathinfo=0 restart service php: ans@ubuntu:~$ sudo systemctl restart php7.2-fpm KONFIG AGAR NGINX MENGGUNAKAN PHP PROCESSOR edit file def

Darkstat - Nework Traffic Analyzer atau Monitor Jaringan

Darkstat - Nework Traffic Analyzer atau Monitor Jaringan Apa itu Darkstat? Darkstat adalah pengumpul statistik jaringan. Secara efektif, ini adalah paket sniffer yang berjalan sebagai proses latar belakang pada Kabel / DSL router, mengumpulkan segala macam statistik berguna tapi menarik, Dan melayani mereka melalui HTTP. Fitur Darkstat Grafik lalu lintas Melacak lalu lintas per host. Melacak lalu lintas per port TCP dan UDP untuk setiap host. Embedded web-server dengan deflate compression. Asynchronous reverse DNS resolution menggunakan proses child. Kecil. Portable. Single-threaded. Efisien. Instalasi Darkstat di Ubuntu ~$ sudo Apt-get install darkstat Ini akan menyelesaikan instalasi. Setelah Anda menyelesaikan instalasi, Anda perlu mengedit file yang terletak di /etc/darkstat/init.cfg START_DARKSTAT = no menjadi START_DARKSTAT = iya Start darkstat  # / Etc / init.d / darkstat start Ini akan memulai proses darkstat Arahkan browser Anda di http:

Mount ISO image file on HP-UX

There are 2 ways to mount iso file in hp-ux 1) using LVM method (to copy ISO into a logical volume) is the same as for older HP-UX releases: 1. Find out the size of the ISO image: # du -k /data/myImage.iso NOTE: The size will be in Kb. 2. Create a logical volume for the ISO image: # lvcreate -L -n iso /dev/vg00 NOTE: The name of the logical volume will be /dev/vg00/iso 3. Copy the ISO file to the raw logical volume: # dd if=/data/myImage.iso of=/dev/vg00/riso bs=64k 4. Create a temporary directory and mount the /dev/vg00/iso volume # mkdir /iso_image # mount /dev/vg00/iso /iso_image NOTE: For HP-UX 11.11 you must install the latest CDFS patches: PHCO_25841 Add Rock Ridge extension to mount_cdfs(1M) PHKL_26269 Rock Ridge extension for ISO-9660 PHKL_34153 CDFS cumulative patch 2) Available in HP-UX 11.31 0909: ISOIMAGE-ENH. Provides a new DLKM module fspd. Required to mount, read and umount the ISO image file. The comm