Hi all,
I have a small web site (http://rcp-company.com) where I have inherited a number of images. Now I would like to make some changes, but as I would like to keep the basic look and feel I would like to generate a randon "contour surface" as already used on the existing web site.
But how can one do that in inkscape? I have tried some of the effects, but not found anything that is usefull.
So if anybody knows how to do this, then plase let me know. Alternatively, if anybody just happens to have file handy, then I would be very pleased if I could use it directly
/tonny
-- Tonny Madsen The RCP Company
On Fri, Nov 03, 2006 at 11:45:55AM +0100, Tonny Madsen wrote:
But how can one do that in inkscape? I have tried some of the effects, but not found anything that is usefull.
What about using a graph plotting program? I just tried gnuplot and it seems to be able to generates SVG output these days. Some of the demo's at:
http://gnuplot.sourceforge.net/demo/surface1.html
look similar to what you could want to do. I just tried using the following script:
set terminal svg set output "surface.svg" set samples 51, 51 set isosamples 21, 21 set yrange [ -1.00000 : 1.00000 ] noreverse nowriteback set zrange [ -1.00000 : 1.00000 ] noreverse nowriteback splot [x=-3:3] [y=-3:3] sin(x) * cos(y)
and it seemed to produce something that inkscape could read, with the surface as a seperate path that could be copied into another document. Chosing a good function and viewpoint would be "fun" with gnuplot, but it could work.
Sam
Hi Sam,
Hmm, It might be usable. I'll have to investigate. Thanks.
/tonny
On 11/3/06, Sam Mason <sam@...2002...> wrote:
On Fri, Nov 03, 2006 at 11:45:55AM +0100, Tonny Madsen wrote:
But how can one do that in inkscape? I have tried some of the effects,
but
not found anything that is usefull.
What about using a graph plotting program? I just tried gnuplot and it seems to be able to generates SVG output these days. Some of the demo's at:
http://gnuplot.sourceforge.net/demo/surface1.html
look similar to what you could want to do. I just tried using the following script:
set terminal svg set output "surface.svg" set samples 51, 51 set isosamples 21, 21 set yrange [ -1.00000 : 1.00000 ] noreverse nowriteback set zrange [ -1.00000 : 1.00000 ] noreverse nowriteback splot [x=-3:3] [y=-3:3] sin(x) * cos(y)
and it seemed to produce something that inkscape could read, with the surface as a seperate path that could be copied into another document. Chosing a good function and viewpoint would be "fun" with gnuplot, but it could work.
Sam
Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&da... _______________________________________________ Inkscape-user mailing list Inkscape-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-user
Tonny Madsen wrote:
Hi all,
I have a small web site (http://rcp-company.com) where I have inherited a number of images. Now I would like to make some changes, but as I would like to keep the basic look and feel I would like to generate a randon "contour surface" as already used on the existing web site.
But how can one do that in inkscape? I have tried some of the effects, but not found anything that is usefull.
So if anybody knows how to do this, then plase let me know. Alternatively, if anybody just happens to have file handy, then I would be very pleased if I could use it directly
/tonny
Here are regular contour lines. I not sure how to randomize them.
Thanks Shawn,
It is not exactly what I imagined. Have a look at the attached images. They are more contour like - whatever that is :-)
/tonny
On 11/3/06, Mr. Shawn H. Corey <shawnhcorey@...1487...> wrote:
Tonny Madsen wrote:
Hi all,
I have a small web site (http://rcp-company.com) where I have inherited
a
number of images. Now I would like to make some changes, but as I would like to keep the basic look and feel I would like to generate a randon
"contour
surface" as already used on the existing web site.
But how can one do that in inkscape? I have tried some of the effects,
but
not found anything that is usefull.
So if anybody knows how to do this, then plase let me know.
Alternatively,
if anybody just happens to have file handy, then I would be very pleased
if
I could use it directly
/tonny
Here are regular contour lines. I not sure how to randomize them.
-- __END__
Just my 0.00000002 million dollars worth, Shawn
"For the things we have to learn before we can do them, we learn by doing them." Aristotle
"Where you find the greatest fear, you find the greatest courage."
BRIAN: You're all individuals! CROWD: We're all individuals! LONE VOICE IN THE BACK: I'm not!
Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&da...
Inkscape-user mailing list Inkscape-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-user
On 11/3/06, Tonny Madsen <tonny@...1993...> wrote:
Thanks Shawn,
It is not exactly what I imagined. Have a look at the attached images. They are more contour like - whatever that is :-)
You can get close enough by drawing two paths and Effects > Generate from Path > Interpolate.
Tonny Madsen wrote:
Thanks Shawn,
It is not exactly what I imagined. Have a look at the attached images. They are more contour like - whatever that is :-)
/tonny
Do you want to copy the images or just create something similar?
To create a close copy of main_epilogue.gif:
* Load the GIF.
* Create a new layer above it.
* Use the Bezier tool to create a spline along the top contour. Spline is the official name for a Bezier curve. It is also called a B-spline.
* Use the Edit Nodes tool to adjust the spline to match. One of the advantages of vector graphics is that you can always tweak at any time.
* Select it, copy and paste.
* Align the new spline with the next line down.
* Use the Edit Node tool to adjust it.
* Repeat until all "horizontal" lines are done. Usually it's better if you copy and paste the last line you worked on, rather than just pasting the first over and over.
* Do the same thing for the "vertical" lines.
* Delete the layer with the GIF.
You can try to do the same with header_bg.jpg but the problem is seeing the white lines in the light background. I would first try to make them black using Photoshop or GIMP before I tried to creating splines for them.
Great thanks. I'll try that. /tonny
On 11/3/06, Mr. Shawn H. Corey <shawnhcorey@...1487...> wrote:
Tonny Madsen wrote:
Thanks Shawn,
It is not exactly what I imagined. Have a look at the attached images.
They
are more contour like - whatever that is :-)
/tonny
Do you want to copy the images or just create something similar?
To create a close copy of main_epilogue.gif:
Load the GIF.
Create a new layer above it.
Use the Bezier tool to create a spline along the top contour. Spline
is the official name for a Bezier curve. It is also called a B-spline.
- Use the Edit Nodes tool to adjust the spline to match. One of the
advantages of vector graphics is that you can always tweak at any time.
Select it, copy and paste.
Align the new spline with the next line down.
Use the Edit Node tool to adjust it.
Repeat until all "horizontal" lines are done. Usually it's better if
you copy and paste the last line you worked on, rather than just pasting the first over and over.
Do the same thing for the "vertical" lines.
Delete the layer with the GIF.
You can try to do the same with header_bg.jpg but the problem is seeing the white lines in the light background. I would first try to make them black using Photoshop or GIMP before I tried to creating splines for them.
-- __END__
Just my 0.00000002 million dollars worth, Shawn
"For the things we have to learn before we can do them, we learn by doing them." Aristotle
"Where you find the greatest fear, you find the greatest courage."
BRIAN: You're all individuals! CROWD: We're all individuals! LONE VOICE IN THE BACK: I'm not!
Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&da... _______________________________________________ Inkscape-user mailing list Inkscape-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-user
Hi Shawn,
You method worked. I now have a contour surface I can use to create a new set of images for my web site.
Thanks.
/tonny
On 11/3/06, Mr. Shawn H. Corey <shawnhcorey@...1487...> wrote:
Tonny Madsen wrote:
Thanks Shawn,
It is not exactly what I imagined. Have a look at the attached images.
They
are more contour like - whatever that is :-)
/tonny
Do you want to copy the images or just create something similar?
To create a close copy of main_epilogue.gif:
Load the GIF.
Create a new layer above it.
Use the Bezier tool to create a spline along the top contour. Spline
is the official name for a Bezier curve. It is also called a B-spline.
- Use the Edit Nodes tool to adjust the spline to match. One of the
advantages of vector graphics is that you can always tweak at any time.
Select it, copy and paste.
Align the new spline with the next line down.
Use the Edit Node tool to adjust it.
Repeat until all "horizontal" lines are done. Usually it's better if
you copy and paste the last line you worked on, rather than just pasting the first over and over.
Do the same thing for the "vertical" lines.
Delete the layer with the GIF.
You can try to do the same with header_bg.jpg but the problem is seeing the white lines in the light background. I would first try to make them black using Photoshop or GIMP before I tried to creating splines for them.
-- __END__
Just my 0.00000002 million dollars worth, Shawn
"For the things we have to learn before we can do them, we learn by doing them." Aristotle
"Where you find the greatest fear, you find the greatest courage."
BRIAN: You're all individuals! CROWD: We're all individuals! LONE VOICE IN THE BACK: I'm not!
Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&da... _______________________________________________ Inkscape-user mailing list Inkscape-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/inkscape-user
participants (4)
-
bulia byak
-
Mr. Shawn H. Corey
-
Sam Mason
-
Tonny Madsen