我刚建立了一个网站,用户可以上传图像,图像存储在数据库中,图像显示在其顶部, 它就像是另一个图像之上的图像,真正的问题是:如何自动调整“网格图像”的大小以适应用户上传的图像大小?有可能吗?
这是代码/ css的一部分
我如何打印图像:
typedef struct ForwardClassTest ForwardClassTest;
typedef struct Foo2 Foo2;
typedef struct Bar Bar;
struct ForwardClassTest {
};
struct Bar {
int x;
};
struct Foo2 {
Bar b;
};
int main();
//Foo2 a
Foo2 * a = (Foo2 *) malloc(sizeof(Foo2));
//a=new Foo2()
a = (Foo2*) malloc(sizeof(Foo2));
//a.b=new Bar()
a->b = (Bar*) malloc(sizeof(Bar));
//a.b.x=5
a->b.x = 5;
exit(0);
}
css:
<div id="content">
<img class="imgupl" src="../susana/uploads/images/<?php echo $image; ?>.<?php echo $extension; ?>"/>
<img class="imggrid" src="../susana/media/images/grid1920.png">
</div>