Какой рейтинг вас больше интересует?
|
Главная /
Каталог блоговCтраница блогера ТРАМБРОИД/Записи в блоге |
bridal corset
2013-01-09 20:33:30 (читать в оригинале)Styles range from ultra-formal to moderately formal and gold wedding dresses even to semi-casual.There are always some minor adjustments to be made to make sure that the bridal dresses is perfect for the occasion. When planning the overall schedul. there should always be extra time bride dress allowed to be able to carry out some minor alterations to the dresses. This is to be expecte. regardless of whether the dress was custom made or if it ivory satin wedding shoes was bought off the rack.plus size casual wedding dresses create your own wedding dress formal dresses for winter wedding wedding dresses com vintage wedding gown groom attire beach.A plus size beach wedding dress is the perfect accompaniment to a full -figured woman's dream wedding. pecial occasion dress men's beach wedding attir. discount plus size wedding dress slips for girls bridal dress beach theme wedding wedding cake toppers plus size bridal wear winter wedding bridesmaid dresses wedding dress plus size.Those Special occasions are very well looked afte. with amazing plus size prom dresse. wedding dresses and bridesmaid dresses available in all sizes with a huge range of designs to choose from. it is possible to have a dress for every occasion. … Down by the beach or pool there flower girl dresses is a large range of plus size swimwear in the latest styles with all sizes catered for.Are you worried about the most important issue modest wedding dresses and that is your dresses for less wedding dress just because you are on the heavier side. Do not worry about your quinceanera dresses wholesale plus size beach wedding dress as there are many stores and boutiques that specialize in plus size beach wedding dress. It is easy to find wedding dresses in all types of size and style but the choice will depend totally on you as to which size or which style will suit you. Don't hesitate or give a second thought to any other factor besides strapless dresses the budge. make a choice from unique prom dresses the wedding dresses so that what you choose will be the one that you had dreamt of. If you feel hesitant to go to ball gown wedding dresses the shop alon. due to your size ask your sister or bridesmaid or your mother to accompany you for your shopping spree they will not only be a good critique but will provide you all the moral support.dresseslong evening dresses
- Quote
Хо-хо-хо!
2012-12-28 15:44:27 (читать в оригинале)- Quote
Создание аватаров с вебкамеры в Django
2012-12-20 20:48:38 (читать в оригинале)В этой небольшой статейке я расскажу как создавать аватар с помощью WEB камеры, как сделано например в facebook.
Заходим сюда и качаем плагин.
Скомпилированая флешка и JavaScript лежат в htdocs, из этой директории нам нужны следующие файлы:
webcam.swf
webcam.js
shutter.mp3 (Это по вкусу, он нужен для проигрывания звука при создании снимка)
Подключаем js скрипт (у меня например все скрипты лежат в static/js):
<script type="text/javascript" src="{% get_static_prefix %}js/webcam.js"></script>
Вставляем в нашу страницу следующий код:
<script language="JavaScript">
// URL вьюхи которая будет сохранять изображение
webcam.set_api_url("{% url my_django_view %}");
// Качество JPEG (1 - 100)
webcam.set_quality(90);
// Проигрываем звук при снимке.
webcam.set_shutter_sound(true);
// Подключаем флешку
webcam.set_swf_url("{% get_static_prefix %}swf/webcam.swf");
// Подключаем звук снимка(не обязательно)
webcam.set_shutter_url("{% get_static_prefix %}snd/shutter.mp3");
// Если нужно выполнять какието действия,
// например перейти на другую страницу,
// после сохранения снимка, нужно добавить следующее
webcam.set_hook('onComplete', 'callback_function');
function callback_function(response) {
// response это ответ возвращаемый вьюхой my_django_view,
// в данном случае возвращается json:
// {"status": true} или {"status": false}
var json = JSON.parse(response);
if (json.status) {
window.location = "{% url next_view %}";
}
}
// Вставляем flash объект в страницу
document.write(webcam.get_html(320, 240));
</script>
Далее в документе добавляем ссылку, при клике на которую будет создаваться фото.
<a href="#" onclick="webcam.snap(); return false;">Сделать фото</a>
Теперь сама вьюха:
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
import json
@csrf_exempt
def my_django_view(request):
image = request.raw_post_data
filename = '/path/to/save/image/img.jpeg'
if image:
fd = open(filename, 'wa')
fd.write(image)
fd.close()
return HttpResponse(json.dumps({'status': True}),
mimetype='application/json')
else:
return HttpResponse(json.dumps({'status': False}),
mimetype='application/json')
Ну тут все просто, получаем raw_post_data сохраняем все это в файл filename и возвращаем статус.
Все :)
- Quote
Почему Я-шампунь и как с этим справиться?
2012-12-17 19:05:20 (читать в оригинале)
Поколение вспышки
2012-12-14 17:25:55 (читать в оригинале)
- Quote
+557 |
564 |
Виктор Имантович Алкснис |
+548 |
625 |
Все для людей |
+520 |
561 |
krodico |
+519 |
560 |
sich |
+500 |
511 |
Выводы простого человека |
-2 |
15 |
dandr |
-6 |
11 |
Записки океанолога |
-7 |
12 |
Internet business in Ukraine |
-8 |
10 |
Markup |
-9 |
4 |
Linux-дистрибутив Ubuntu (Xubuntu, Kubuntu, Edubuntu) |
Загрузка...
взяты из открытых общедоступных источников и являются собственностью их авторов.