<div dir="ltr"><div><div>Hi Pablo,<br><br></div>I'm not 100% certain, but I think binaries are not NULL terminated. So, you need to take the length of the binary into account. That obviously makes the code change a bit harder :-(<br>
<br></div><div>Looking at the erl_interface code for the atom conversion, I see quite a bit of shuffling to do with character encodings and explicit setting of \0 terminator.<br><br></div><div>I think you'll need to take a copy of the binary data and slap the \0 onto the end yourself. And you need to be aware of the character encoding you are expecting to exchange and, if required, convert accordingly.<br>
</div><div><br></div>Regards,<br>Robby<br><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On 15 July 2014 16:53, pablo platt <span dir="ltr"><<a href="mailto:pablo.platt@gmail.com" target="_blank">pablo.platt@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Hi,<br><br>I'm using erlycairo to draw on a 2D canvas.<br></div>There are several functions that leak atoms:<br>
erlycairo_server:write_to_png/2<br>erlycairo_server:show_text/2<br>erlycairo_server:text_extents/2<br>
erlycairo_server:surface_create_from_png/2<br><br>I tried to pass a binary to the C node and use (char *)ERL_BIN_PTR(file) but I'm getting another char at the end of the binary.<br><a href="https://code.google.com/p/erlycairo/source/browse/trunk/src/erlycairo/erlycairo_server.erl#143" target="_blank">https://code.google.com/p/erlycairo/source/browse/trunk/src/erlycairo/erlycairo_server.erl#143</a><br>

<a href="https://code.google.com/p/erlycairo/source/browse/trunk/c_src/erlycairo.c#337" target="_blank">https://code.google.com/p/erlycairo/source/browse/trunk/c_src/erlycairo.c#337</a><br><br></div>What is the correct way to use binaries or lists instead of atoms for the write_to_png function?<br>

<br></div>Thanks<br></div>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>