Jump to content
  • 0

Масштабирование изображения


Veseloff
 Share

Question

Можно ли бесскриптовым методом сжать изображение ровно в два раза? То есть имеем изображение m х n пикселей (m и n неизвестны) и надо вывести изображение, чтобы оно было m/2 х n/2 пикселей. Это реально?

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0
Ручками не получится

Ну тогда скрипты. Третьего варианта нету.

Картинки с сервера приходят? Почему нельзя на сервере же и ужимать?

shvv, 50% надо брать от чего-то...

Link to comment
Share on other sites

  • 0
Можно ли бесскриптовым методом сжать изображение ровно в два раза? То есть имеем изображение m х n пикселей (m и n неизвестны) и надо вывести изображение, чтобы оно было m/2 х n/2 пикселей. Это реально?

Без скриптов никак. А картинки где жать надо? Если на локали, то прогой мона.

Link to comment
Share on other sites

  • 0

Кагбэ я понимаю, что "чистыми" методами этого не сделать. Меня интересуют "грязные хаки". Я изобрёл такой:

<div style="position: relative; display: inline-block;">
<img src="image.jpg" style="opacity: 0;">
<img src="image.jpg" style="position: absolute; top: 0; left: 0; width: 50%; height: 50%;">
</div>

Но это не до конца подходит - всё-таки остаются торчать "невидимые границы" справа и снизу. Вот и интересуюсь - вдруг кто-то уже делал такое

Link to comment
Share on other sites

  • 0

Пока только так... как влево сдвинуть, чтоб блок ужался ума не приложу + в ИЕ не тестил.


<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>Фильтр</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
* {
margin: 0;
padding: 0;
font: 11px "Trebuchet MS", Verdana, Tahoma, sans-serif;
}

body {
margin: 10px;
}

div {
display: inline-block;
}

.c {
position: relative;
overflow: hidden;
border: 1px solid;
}

.c2 {
position: relative;
margin: -50% 0 0 -50%;
}
</style>

</head>

<body>

<div class="c">
<div class="c2">
<img src="img/test.png" alt="" style="visibility: hidden;" />
<img src="img/test.png" alt="" style="position: absolute; top: 50%; left: 50%; width: 50%; height: 50%;" />
</div>
</div>
text text text

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy