copyString

Our implementation of ImageMagick's CloneString.

We use this since using CloneString forces us to append a \0 to the end of the string, and the realocation whould be wastefull if we are just going to copy it

used for copying a string into a Imagemagick struct

  1. void copyString(ref char[MaxTextExtent] dest, string source)
  2. void copyString(ref char* dest, string source)
    void
    copyString
    (
    ref char* dest
    ,
    string source
    )

Meta