15 lines
336 B
C#
15 lines
336 B
C#
// Copyright (c) 2007-2016 CSJ2K contributors.
|
|
// Licensed under the BSD 3-Clause License.
|
|
|
|
namespace CSJ2K.Util
|
|
{
|
|
using CSJ2K.j2k.image;
|
|
|
|
public interface IImageCreator : IDefaultable
|
|
{
|
|
IImage Create(int width, int height, byte[] bytes);
|
|
|
|
BlkImgDataSrc ToPortableImageSource(object imageObject);
|
|
}
|
|
}
|