I'm not sure I understand this,but it is ok. Now with jpg I can create drawing(like rectangular or elipse,line etc),am I right? Thank you again,you have helped me a lot. Sorry for bothering you.
V
videhr
@videhr
Posts
-
class Image -
class ImageThanks, i am starting to understand this. Using this mixture should look like this: Image JpgImage= new Bitmap("image1.jpg"); am I right?
-
class ImageOK thanks, Does it mean that I can inherit from Bitmap class my class like this : class JpgImage : Bitmap { .... } and create object JpgImage? Which methods I can use for working with my class (class JpgImage)?
-
class ImageHi I am beginner at C#. I need to create two classes which will represent two picture models(like JPG and bitmap).It should look something like this class JPGImage { .............. } class BMPImage { .............. } I don't know how to describe this classes. In winForm I need 2 panels where I'll put this 2 models. Can you help me with this? Thanks