コード例 #1
0
ファイル: magick_version.go プロジェクト: palaiyacw/imgry
// Returns the specified resource limit in megabytes.
func GetResourceLimit(rtype ResourceType) int64 {
	return int64(C.MagickGetResourceLimit(C.ResourceType(rtype)))
}
コード例 #2
0
ファイル: magick_wand_prop.go プロジェクト: qwo/abelana-gcp
// Sets the limit for a particular resource in megabytes.
func (mw *MagickWand) SetResourceLimit(rtype ResourceType, limit int64) error {
	C.MagickSetResourceLimit(C.ResourceType(rtype), C.MagickSizeType(limit))
	return mw.GetLastError()
}
コード例 #3
0
ファイル: magick_wand_prop.go プロジェクト: palaiyacw/imagick
// Sets the limit for a particular resource in megabytes.
func (mw *MagickWand) SetResourceLimit(rtype ResourceType, limit int64) error {
	ok := C.MagickSetResourceLimit(C.ResourceType(rtype), C.MagickSizeType(limit))
	return mw.getLastErrorIfFailed(ok)
}