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.

8bdaffb1bfb64e1a946cad115a70df91 a479893ad58e4a85ac257b3a11fdebce

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)

68e895b2379e4cd8b4904ec7939e1d55 2e83817db914443e9bb915d7308d456d

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)

a4984da285d84453b2a751141bdb3a80 5a4830d17c454dc4a655ebc3c80bcc40

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)

aeb98b8162df422788808c98a72c9fe4 4d407200832a43c688fc39327bddbd5f

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)

dee8b2567db44af98bbb33eb683d2962 8848b81a69014ee2afd6918dc6516912

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.

4cbe0ff4745c45e4b5cfbd9c1c22d734 185fd1ef82f147e7ad94d0801c8fdb66 67e0fb2bdc9640a49b6d2bb7d636ca6e

020dc100ab844e5bb9f891288a39545c d708cff92d6647188b6ca423d94bdd4a ca53140786674823814d146e4d3aff03

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.