Newbie Question I'm sure...
Posted: 2007-08-15T19:47:20-07:00
I'm trying to create a Reflection from an image and 'append' it below it...
now, naturally, i'm coming into some issues... but i'm breaking it down to the basics, and after 8 hours, i'm pulling my hair out - so before I go bald, i figured i'd break down, register on this forum, and inquire - hate to bother you experts in here!
Whenever I get my final images on using the convert -composite combos, i'm getting a lot of black appearing - in my .png images... not sure why... but i broke it down to a basic issue, that won't require me to dump all my code here...
in the plethora of examples on this software - which i love!... i found this, and it doesn't work...
this gives me a solid "firebrick" box only...
am I doing something wrong?
*** in addition ***
Plus, say I've got an image (IMAGE-1), and I wanted to create a reflection for it... with full transparency - for those using Mozilla and/or IE7 (or ie6 God forbid with a png fix .js file )....
the point being... how would i do this.. i believe I'm 98% there, but just not getting it...
many thanks for any replies...
Bill (Dearborn Heights, MI, USA)
now, naturally, i'm coming into some issues... but i'm breaking it down to the basics, and after 8 hours, i'm pulling my hair out - so before I go bald, i figured i'd break down, register on this forum, and inquire - hate to bother you experts in here!
Whenever I get my final images on using the convert -composite combos, i'm getting a lot of black appearing - in my .png images... not sure why... but i broke it down to a basic issue, that won't require me to dump all my code here...
in the plethora of examples on this software - which i love!... i found this, and it doesn't work...
Code: Select all
system("exec 2>&1; convert-orig \
-size 100x100 gradient:firebrick-none gradient_transparent.png");
am I doing something wrong?
*** in addition ***
Plus, say I've got an image (IMAGE-1), and I wanted to create a reflection for it... with full transparency - for those using Mozilla and/or IE7 (or ie6 God forbid with a png fix .js file )....
the point being... how would i do this.. i believe I'm 98% there, but just not getting it...
Code: Select all
$img1="-size $size_dim gradient: -sigmoidal-contrast 8,50% ";
$IMAGE-1=$img_olay;
system("exec 2>&1; convert-orig \
-size $size_dim xc:none \
$blank");
system("exec 2>&1; convert-orig \
$blank $IMAGE-1 $img1 -background none \
+matte -composite final.png");
Bill (Dearborn Heights, MI, USA)