POV-Ray : Newsgroups : povray.binaries.images : The Chronicles of Ziklag Server Time
3 Aug 2024 18:18:46 EDT (-0400)
  The Chronicles of Ziklag (Message 1 to 10 of 11)  
Goto Latest 10 Messages Next 1 Messages >>>
From: Kirk Andrews
Subject: The Chronicles of Ziklag
Date: 21 Apr 2010 10:50:22
Message: <4bcf10ae@news.povray.org>
This is a little graphic I did for a friend of mine.  It's not 
complicated but I'm happy with the result, so I thought I'd share it. 
Yes, the lens flare was done in Photoshop (but it is my own macro!).

To create the embossed text, I created two 16-bit grayscales--one with 
crisp text and a second with the text blurred.  I brought them into POV 
as two different functions and blended them in a third, from which I 
created an HF.

Kirk Andrews
www.tektonart.com


Post a reply to this message


Attachments:
Download 'ziklag-small-flare.jpg' (119 KB)

Preview of image 'ziklag-small-flare.jpg'
ziklag-small-flare.jpg


 

From: Thorsten
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 05:50:31
Message: <4bd01be7@news.povray.org>
Kirk Andrews:

> This is a little graphic I did for a friend of mine.

I like it :))

And... had the idea of making some bevelled text via HFs, too.
Didn't like the results, gave up, trashed it.

> To create the embossed text, ...

Could you please explain your techique of using blurred images in 
detail, and ...

> I brought them into POV ...

May I beg for some lines of code, petty please :))

Greetings :))

Thorsten


Post a reply to this message

From: Paolo Gibellini
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 06:16:33
Message: <4bd02201@news.povray.org>
>Kirk Andrews  on date 21/04/2010 16:50 wrote:
> This is a little graphic I did for a friend of mine.  It's not
> complicated but I'm happy with the result, so I thought I'd share it.
> Yes, the lens flare was done in Photoshop (but it is my own macro!).
>
> To create the embossed text, I created two 16-bit grayscales--one with
> crisp text and a second with the text blurred. I brought them into POV
> as two different functions and blended them in a third, from which I
> created an HF.
>
> Kirk Andrews
> www.tektonart.com
Nice effect!
;-)
Paolo


Post a reply to this message

From: Thomas de Groot
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 08:10:39
Message: <4bd03cbf$1@news.povray.org>
The term *awesome*  comes to mind but it has already been used for another 
image above  ;-)

Very nice work!!

Are those tiny crinkles artefacts from the hfs?

Thomas


Post a reply to this message

From: Kirk Andrews
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 10:21:22
Message: <4bd05b62$1@news.povray.org>
Thorsten wrote:
> I like it :))

Thanks!

> May I beg for some lines of code, petty please :))
> 
> Greetings :))
> 
> Thorsten

Since you begged...

#declare Text1 =
function {
   pigment {
     image_map {
       png "Chronicles-of-Ziklag.png"
       map_type 0
       interpolate 2
     } // image_map
   }
}

#declare Text2 =
function {
   pigment {
     image_map {
       png "Chronicles-of-Ziklag-Blur.png"
       map_type 0
       interpolate 2
     } // image_map
   }
}


#declare T3 =
function {
   Text1(x,y,z).hf*.85 + Text2(x,y,z).hf*.15
}


#declare CZ =
height_field {

   function 4800, 1600 {
     T3(x,y,z)
   }
   water_level .25
   smooth
   hollow
}


Post a reply to this message

From: Kirk Andrews
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 10:21:39
Message: <4bd05b73$1@news.povray.org>
Paolo Gibellini wrote:
> Nice effect!
> ;-)
> Paolo

Thanks!


Post a reply to this message

From: Kirk Andrews
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 10:23:09
Message: <4bd05bcd$1@news.povray.org>
Thomas de Groot wrote:
> The term *awesome*  comes to mind but it has already been used for another 
> image above  ;-)
> 
> Very nice work!!

Thanks!

> Are those tiny crinkles artefacts from the hfs?

Indeed.  They are quite visible when rendered at higher resolutions, but 
at this size it doesn't look too bad.


Post a reply to this message

From: John VanSickle
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 17:34:40
Message: <4bd0c0f0@news.povray.org>
Kirk Andrews wrote:
> This is a little graphic I did for a friend of mine.  It's not 
> complicated but I'm happy with the result, so I thought I'd share it. 
> Yes, the lens flare was done in Photoshop (but it is my own macro!).
> 
> To create the embossed text, I created two 16-bit grayscales--one with 
> crisp text and a second with the text blurred.  I brought them into POV 
> as two different functions and blended them in a third, from which I 
> created an HF.
> 
> Kirk Andrews
> www.tektonart.com
> 
> ------------------------------------------------------------------------
> 

I hear it got burned with fire.

Regards,
John
(Ziklag, that is)


Post a reply to this message

From: Dan Byers
Subject: Re: The Chronicles of Ziklag
Date: 22 Apr 2010 19:25:01
Message: <web.4bd0d9bfa97e4ae0fd1d20bc0@news.povray.org>
I think it's pretty cool.  I've always wondered about a good way to do beveled
text... and now I know ;)

btw I checked out your website... cool stuff :)

--
Dan
GoofyGraffix.com


Post a reply to this message

From: Thorsten
Subject: Re: The Chronicles of Ziklag
Date: 23 Apr 2010 02:52:10
Message: <4bd1439a$1@news.povray.org>
Kirk Andrews:

> Since you begged...

Thank you. Bedankt. Merci. Danke.

Greetings :))

Thorsten


Post a reply to this message

Goto Latest 10 Messages Next 1 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.