Hello there,
I have three small images which I would like to place right at the
beginning of my windows. That is working fine. However. I would like to
place image1 on the top left corner, image2 right on the center and
image3
on the top right corner. All images must be equidistant.
The following code places the images next to each other:
flow do
image “/home/rstudent/MyData/Programs/shoes/image1.jpg”
image “/home/rstudent/MyData/Programs/shoes/image2.jpg”
image “/home/rstudent/MyData/Programs/shoes/image3.png”
end
The following code places the first two images next to each other, and
the
third image below:
stack :width => “50%” do
flow do
image “/home/rstudent/MyData/Programs/shoes/image1.jpg”
image “/home/rstudent/MyData/Programs/shoes/image2.jpg”
image “/home/rstudent/MyData/Programs/shoes/image3.png”
end
end
Probably there is a way to do what I want, but I can’t find it after
searching the web for over one hour.
Any help is appreciated, as usual.