mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Convert 1-bit image to 8-bit one during its loading because only greyscale images are supported by visualization
15 lines
467 B
Plaintext
15 lines
467 B
Plaintext
puts "============="
|
|
puts "0030946: Visualization - Image_AlienPixMap ignores 1-bit pixelformat when using FreeImage"
|
|
puts "============="
|
|
|
|
pload VISUALIZATION
|
|
vinit View
|
|
|
|
vbackground -image [locate_data_file bug30946_img_1bit_256px.png]
|
|
if { [vreadpixel 120 315 rgb name] != "WHITE" } { puts "Error: background image was loaded incorrectly" }
|
|
|
|
vpoint p0 0 0 0
|
|
vaspects p0 -setMarkerType [locate_data_file bug30946_img_1bit_32px.png]
|
|
|
|
vdump $imagedir/${casename}.png
|