Base the new image reps off of GSImageMagickImageRep since both formats are supported by that image rep. The subclasses will access specific features not exposed in the GSImageMagickImageRep for those formats

This commit is contained in:
Gregory John Casamento 2019-11-29 11:04:03 -05:00
parent 4afa52fb1e
commit 2050631ca6
4 changed files with 12 additions and 65 deletions

View file

@ -35,7 +35,9 @@
self = [super init];
if(self != nil)
{
ASSIGNCOPY(_imageData, imageData);
#if HAVE_IMAGEMAGICK
#endif
}
return self;
}