Skip to main content
Ctrl+K
RockVerse documentation - Home RockVerse documentation - Home
  • Installation
  • Tutorials
  • Gallery
  • API reference
  • Release notes
    • Getting Help
    • Mailing list
  • GitHub
  • StackOverflow
  • LinkedIn
  • Installation
  • Tutorials
  • Gallery
  • API reference
  • Release notes
  • Getting Help
  • Mailing list
  • GitHub
  • StackOverflow
  • LinkedIn

Section Navigation

  • Introduction to Voxel Images
    • Creating a voxel image
  • Exploring the orthogonal viewer
    • Bentheimer Sandstone Sample
    • Exploring the Orthogonal Viewer
  • Monte Carlo Dual Energy CT processing
    • Importing the C04B21 dataset
    • Preparing the Dataset
    • Running the Simulation
    • Performance Considerations
  • Using the RockVerse logo
  • Using GPUs
  • Tutorials
  • Using the RockVerse logo

Using the RockVerse logo#

You are encouraged to incorporate the RockVerse logo on websites, presentations, and elsewhere to indicate the use of RockVerse in your work. The RockVerse logo comes in three different models, each with options for white and black backgrounds (a total of six variations).

Use the make_logo function to generate the logo as a Matplotlib figure, which can be saved in various formats and resolutions. This will guarantee the right proportions and margins.

Model 1#

Model 1, the “vertical mode”, builds the rock model with “RockVerse” written below.

[1]:
#For interactive plotting:
%matplotlib qt

import rockverse as rv

#Call the make_logo function for model 1
fig1w = rv.make_logo(model=1, facecolor='white')
fig1b = rv.make_logo(model=1, facecolor='black')

#Outputs are Matplotlib figures, save it to disk with desired format and resolution
fig1w.savefig('rockverse_logo_model1_white.png', dpi=300)
fig1b.savefig('rockverse_logo_model1_black.png', dpi=300)

This generates the two images below with white and black background, respectively. Notice how some of the colors change based on the chosen background color.

9d43c202991b489a96f2901e0cb550a4 e3281db96c6c44c4a1f49b814b61c431

Model 2#

Model 2 is just model 1 without the writing:

[2]:
fig2w = rv.make_logo(model=2, facecolor='white')
fig2b = rv.make_logo(model=2, facecolor='black')
fig2w.savefig('rockverse_logo_model2_white.png', dpi=300)
fig2b.savefig('rockverse_logo_model2_black.png', dpi=300)

37e2f80d55e34d6098b599ac584a241c 58d335e9c35c48a6b713454ad4f6bd7b

Model 3#

Model 3 is the “horizontal mode”, placing more emphasis on the library’s name.

[3]:
fig3w = rv.make_logo(model=3, facecolor='white')
fig3b = rv.make_logo(model=3, facecolor='black')
fig3w.savefig('rockverse_logo_model3_white.png', dpi=300)
fig3b.savefig('rockverse_logo_model3_black.png', dpi=300)

8f7dc30751ec416f87f2e20c9628c47c 273e9ee37c9e499693f160fd97e5d46a

Using transparent background#

If backgrounds are light or dark gray, you have the option of saving the images with transparent background, giving a nice touch to the final design.

Below is a comparison between the white and transparent face colors over a light gray background:

[4]:
fig1w.savefig('rockverse_logo_model1_white_transparent.png', dpi=300, transparent=True)
fig2w.savefig('rockverse_logo_model2_white_transparent.png', dpi=300, transparent=True)
fig3w.savefig('rockverse_logo_model3_white_transparent.png', dpi=300, transparent=True)

3d55b3c682064c1aa044015e8bd5dd97 3630b9db5af940bf953f3a2970f19d5c

Similarly, here is the comparison for the dark mode on a dark gray background:

[5]:
fig1b.savefig('rockverse_logo_model1_black_transparent.png', dpi=300, transparent=True)
fig2b.savefig('rockverse_logo_model2_black_transparent.png', dpi=300, transparent=True)
fig3b.savefig('rockverse_logo_model3_black_transparent.png', dpi=300, transparent=True)

5a0fc7bcd74343cda28671ac575abd60 f83a8dad4c9b4956934a6195134e2fd7

Note! Please be careful not to use a transparent face color over colored backgrounds, which can lead to poor contrast between the logo and the background. In these cases, prefer white face color.

3d3a2e6eca3f4578bf90a633b9eb5299 c7dd4372abe84b52ae3306ce757989f2 f1c2e7f2c95e4334b577b8595002d447

056561d540a54fa695243b9678a392d2 183e17e4ca704c2197539bc6b1136040 16cf99b3240d4786a95eccddcc964370

Download#

Below you can download the images generated in these examples:

  • rockverse_logo_model1_white.png

  • rockverse_logo_model1_white_transparent.png

  • rockverse_logo_model1_black.png

  • rockverse_logo_model1_black_transparent.png

  • rockverse_logo_model2_white.png

  • rockverse_logo_model2_white_transparent.png

  • rockverse_logo_model2_black.png

  • rockverse_logo_model2_black_transparent.png

  • rockverse_logo_model3_white.png

  • rockverse_logo_model3_white_transparent.png

  • rockverse_logo_model3_black.png

  • rockverse_logo_model3_black_transparent.png

previous

Performance Considerations

next

Using GPUs

On this page
  • Model 1
  • Model 2
  • Model 3
  • Using transparent background
  • Download

© Copyright 2024-2025, Rodolfo A. Victor.

Created using Sphinx 8.1.3.

Last updated on Jul 28, 2025.

Built with the PyData Sphinx Theme 0.16.1.