<div dir="ltr"><div>Hi Pedro,<br><br></div>The vtkPNGWriter supports either 8-bit or 16-bit integral components with 1, 2, 3, or 4 channels (gray, gray+alpha, rgb, and rgb+alpha). If your vtkImageData uses unsigned short as it's scalar type then the full range should get saved, so it won't be 10-bit but it will be 16-bit and you'll still get all your pixels data correct.  That being said, both the PNG spec and libpng only allow for bitdepths of 1, 2, 4, 8, and 16, so a 16-bit PNG is the best you'll probably get.  I wouldn't worry about the "wasted space" from the extra bits as compression should drop that to effectively nothing.  The consuming application would just need to be aware of the reduced sample range, i.e. [0:1023] instead of [0:65535].<br><br><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr">- Chuck<br></div></div></div>
<br><div class="gmail_quote">On Thu, Dec 3, 2015 at 4:52 PM, Pedro Paulo <span dir="ltr"><<a href="mailto:pedropaulobmjr@hotmail.com" target="_blank">pedropaulobmjr@hotmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div dir="ltr">Hi, is there an way to save a png 10 bit file through vtk using vtkPNGWriter() or other way?<div>Thanks.</div>                                     </div></div>
<br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br></div></div>