ImageType
Picture.ImageType property
Resmin resim biçimini alır.
public ImageType ImageType { get; }
Örnekler
[C#]
//Bir Çalışma Kitabı nesnesini başlatma
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
//ilk resmi ekle
int imgIndex1 = worksheet.Pictures.Add(1, 1, "1.png");
// Eklenen resim nesnesini al
Picture pic1 = worksheet.Pictures[imgIndex1];
if(pic1.ImageType == Aspose.Cells.Drawing.ImageType.Png)
{
//Resmin türü png'dir.";
}
//ikinci resmi ekle
int imgIndex2 = worksheet.Pictures.Add(1, 9, "2.jpeg");
// Eklenen resim nesnesini al
Picture pic2 = worksheet.Pictures[imgIndex2];
if(pic2.ImageType == Aspose.Cells.Drawing.ImageType.Jpeg)
{
//Resmin türü jpg.";
}
Ayrıca bakınız
- enum ImageType
- class Picture
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells