1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-13 16:45:14 +01:00
This commit is contained in:
Matthias Kretschmann 2017-11-25 17:24:23 +01:00
parent bde28aaab4
commit 8625879bd4
Signed by: m
GPG Key ID: 606EEEF3C479A91F
16 changed files with 34 additions and 8 deletions

View File

@ -10,6 +10,7 @@ categories:
- photography
tags:
- aperture
coinhive: true
---
The Adjustment Tool Guide gives an in-depth-view of the Adjustment tool in Aperture. The documentary provided by Apple isn't that what most people were looking for. But Kendall Gelner wrote his own Adjustment Tools Guide originally for the Aperture Version 1.0.1.

View File

@ -7,6 +7,7 @@ author: Matthias Kretschmann
date: 2008-04-04T01:55:54.000Z
wordpress_id: 21
category: goodies
coinhive: true
tags:
- icon
redirect_from:

View File

@ -7,6 +7,7 @@ author: Matthias Kretschmann
date: 2008-04-09 13:13:42+00:00
wordpress_id: 32
category: design
coinhive: true
tags:
- tutorial
- osx

View File

@ -7,6 +7,7 @@ author: Matthias Kretschmann
date: 2008-04-14 13:51:39+00:00
wordpress_id: 37
category: photography
coinhive: true
tags:
- aperture
---

View File

@ -8,6 +8,7 @@ date: 2008-05-04 16:04:48+00:00
wordpress_id: 45
category: photography
coinhive: true
tags:
- tutorial
- osx

View File

@ -7,6 +7,7 @@ author: Matthias Kretschmann
date: 2008-05-05 04:15:11+00:00
wordpress_id: 46
category: photography
coinhive: true
tags:
- aperture
- tutorial

View File

@ -13,6 +13,8 @@ tags:
- aperture
- tutorial
coinhive: true
redirect_from:
- /2008/05/high-quality-watermarks-with-aperture/
---

View File

@ -11,6 +11,8 @@ categories:
- photography
tags:
- aperture
coinhive: true
---
There are already some lists like this available on the web and they are always very subjective so I thought I should add my subjective list too. While Aperture was released I was coding this website and had not much time for writing about it. So although a bit late here is my absolutely biased list of my favorite 15 new features included in Apple's Aperture since version 2.0. It's in a nice countdown order ending with the best new feature (to me) at the bottom. Just click on the little screenshots to smoothly zoom to the full version of them.
@ -113,6 +115,6 @@ Now you can "scroll like butter" (I bet you know who said that) through your who
The best new feature to me just because the whole purpose of Aperture should be producing the best looking images from your RAW files. While the first RAW 1.0 often rendered terrible pictures, the RAW 1.1 algorithm did it a lot better. But now we have a massive improvement to the RAW 1.1 algorithm with crisp highlights and more details in dark areas with less chromatic aberration by default. To me Aperture is now close and sometimes better than the quality of PhaseOne or CameraRAW. Of course Aperture 2 leaves all your old adjustments made in previous versions of Aperture alone and you can optionally migrate them all at once or separately.
And you even get more adjustments for decoding the RAW file. The new Hue Boost slider only applies to the colors of your images rather than to the overall exposure like Boost do.
And you even get more adjustments for decoding the RAW file. The new Hue Boost slider only applies to the colors of your images rather than to the overall exposure like Boost do.
These are my favorite new features of Aperture 2.

View File

@ -10,6 +10,8 @@ categories:
- photography
tags:
- aperture
coinhive: true
---
![Aperture](/media/aperture97.png)With the release of Aperture 2.1 Apple introduced a plugin architecture for adding third party image adjustment and export plugins. Now the first third party image adjustment plugins for Aperture 2.1 have arrived. And they can definitely make you stop roundtripping your pictures to Photoshop and back. For now a total of 14 plugins from 9 companys were announced which are waiting to help you with your Aperture 2 workflow.
@ -132,4 +134,4 @@ Kekus website
[www.kekus.com](http://www.kekus.com/)
Human Software website
[www.humansoftware.com](http://www.humansoftware.com)
[www.humansoftware.com](http://www.humansoftware.com)

View File

@ -10,6 +10,8 @@ categories:
- photography
tags:
- aperture
coinhive: true
---
![ApertureEdit](/media/apertureedit_logo.png)Today [Human Software](http://www.humansoftware.com) released an exciting image editing plug-in for Apple's Aperture. It's called [ApertureEdit](http://www.humansoftware.com/pages1200/ApertureEdit/HSapertureedit11.html) and according to Human Software it offers more than 4000 professional effects which you can achieve right within Aperture.

View File

@ -12,6 +12,8 @@ tags:
- tutorial
- osx
- macos
coinhive: true
---
![Niepce's Aperture Vault](/media/niepces_aperture_vault256.png)When on the road I always take a little mobile hard drive with me where all my referenced Aperture Masters from the past years and my mobile Aperture Vault (backing up the un-referenced Masters from the current year) reside. But being little and mobile also means the external hard drive can easily be lost or stolen exposing all my pictures to the thief. To avoid that you can use encryption so in the case of a lost or theft the data is not accessible by the thief. This can easily be done with [sparse bundle disk images](http://db.tidbits.com/article/9673) so you won't have to encrypt the whole hard drive with additional software.

View File

@ -13,6 +13,8 @@ tags:
- tutorial
- wordpress
coinhive: true
redirect_from:
- /2008/12/how-to-set-a-custom-gravatar-image-in-wordpress-27/
---
@ -39,12 +41,12 @@ So we were able to set a path to our image we wanted to use as the default grava
But we can use the functions.php file in your template directory and add some lines to it: (If you don't have a functions.php file just create one.)
{% highlight php %}
<?php
function my_own_gravatar( $avatar_defaults ) {
$myavatar = get_bloginfo('template_directory') . '/images/gravatar.png';
$avatar_defaults[$myavatar] = 'GRAVATAR NAME DISPLAYED IN WORDPRESS';
return $avatar_defaults;
}
<?php
function my_own_gravatar( $avatar_defaults ) {
$myavatar = get_bloginfo('template_directory') . '/images/gravatar.png';
$avatar_defaults[$myavatar] = 'GRAVATAR NAME DISPLAYED IN WORDPRESS';
return $avatar_defaults;
}
add_filter( 'avatar_defaults', 'my_own_gravatar' );
?>
{% endhighlight %}

View File

@ -12,6 +12,8 @@ categories:
tags:
- tutorial
- wordpress
coinhive: true
---
![Wordpress Logo by kremalicious](/media/wordpress-logo.png)

View File

@ -13,6 +13,8 @@ categories:
tags:
- tutorial
- wordpress
coinhive: true
---
![Coda Clips Teaser](/media/codaclips-teaser.png)

View File

@ -13,6 +13,8 @@ post_format:
- Image
tags:
- instagram
coinhive: true
---

View File

@ -11,6 +11,8 @@ categories:
- design
tags:
- wordpress
coinhive: true
---
Apart from a nicely responsive admin area, WordPress 3.4 now [includes retina assets](http://core.trac.wordpress.org/ticket/20293) for all the icons in the admin area to make them look crisp on devices with high-dpi screens like the iPhone or iPad 3, most flagship Android devices and of course the new ÜberMacBookPro.