drawGetDensity method
DrawGetDensity() obtains the vertical and horizontal resolution.
Implementation
String? drawGetDensity() {
final Pointer<Char> resultPtr =
_magickWandBindings.DrawGetDensity(_wandPtr);
final String? result = resultPtr.toNullableString();
_magickRelinquishMemory(resultPtr.cast());
return result;
}