[vtkusers] vtkImageActor
Mike Gagnon
mike at gagnon.com
Tue Sep 17 15:22:04 EDT 2013
ok thanks I'll do that for its orientation. But as for the image
boundaries and resizing the image, is the matrix also the best bet? I am
hoping to align the image perfectly with the bottom left of the renderer
and was thinking I could use vtkImageActor::SetDisplayExtent (not
getting the right results with that).
On 9/17/2013 3:09 PM, David Gobbi wrote:
> On Tue, Sep 17, 2013 at 12:26 PM, Mike Gagnon <mike at gagnon.com> wrote:
>> Hi,
>>
>> I'd like to display a bitmap in my renderer - so I do the following:
>>
>> m_pImageActor = vtkImageActor::New();
>> m_pBMPReader = vtkBMPReader::New();
>>
>> m_pBMPReader->SetFileName(strPath.c_str());
>> m_pImageActor->SetInput(m_pBMPReader->GetOutput());
>>
>> m_pRenderer->AddViewProp(m_pImageActor);
>>
>> The image is added, but I don't know what call I need to orient the image
>> and position it... Can anyone help with this?
> I strongly recommend using the actor's SetUserMatrix() method.
>
> David
More information about the vtkusers
mailing list