Форум программистов, компьютерный форум, киберфорум
JavaScript
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.54/13: Рейтинг темы: голосов - 13, средняя оценка - 4.54
0 / 0 / 0
Регистрация: 04.05.2013
Сообщений: 8

Загрузка аватарок как в вконтакте

28.07.2013, 20:26. Показов 2437. Ответов 1
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Вот нашел скрипт который выделяет область на картинке. а как потом эту выделенную область сохранить?

HTML5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
 
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
    <title>iCropper - Javascript Image Cropper</title>
    <link href="icropper.css" rel="stylesheet"/>
    <script type="text/javascript" src="icropper.js"></script>
 
    <style type="text/css">
        #cropperContainer {
            float: left;
        }
        #previews {
            float: left;
            margin-left: 0px;
        }
        #previewSmall {
            margin: 40px;
            width: 60px;
            height: 60px;
        }
        #previewBig {
            margin: 40px;
            width: 150px;
            height: 150px;
        }
        .icropper img {
            max-width: 500px;
        }
    </style>
 
</head>
 
<body>
    <div id="cropperContainer"></div>
 
    <div id="previews">
        <div id="previewSmall"></div>
        <div id="previewBig"></div>
    </div>
    
</body>
 
 
<script type="text/javascript">
    var ic = new ICropper(
        'cropperContainer'
        ,{
            keepSquare: true
            ,image: 'J0ySudFZ8_w.jpg'
            ,preview: [
                'previewSmall'
            ]
        });
    //use bindPreview to dynamically add preview nodes
    ic.bindPreview('previewBig');
    
</script>
</html>

JavaScript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
(function(){
    //Some common utility functions
    var util = {
        mixin: function(dest, src){
            for(var p in src)dest[p] = src[p];
        }
        ,byId: function(id){
            if(typeof id== 'string')return document.getElementById(id);
            else return id;
        }
        ,create: function(tag, attrs){
            var node = document.createElement(tag);
            this.mixin(node, attrs);
            return node;
        }
        ,connect: function(node, evt, context, callback){
            //TODO: use event listeners instead
            var self = this;
            node[evt] = function(evt){
                evt = self.fixEvent(evt);
                context[callback](evt);
            }
        }
        ,style: function(node, args){
            if(typeof args == 'string'){
                var value = node.style[args];
                if(!value){
                    s = window.getComputedStyle ? getComputedStyle(node) : node.currentStyle;
                    value = s[args];
                }
                return value;
            }else this.mixin(node.style, args);
        }
        ,each: function(arr, callback){
            for(var i = 0; i < arr.length; i++)
                callback(arr[i], i);
        }
        ,indexOf: function(arr, value){
            for(var i = 0; i < arr.length; i++)
                if(value == arr[i])return i;
            return -1;
        }
        ,addCss: function(node, css){
            if(!node)return;
            var cn = node.className || '', arr = cn.split(' '), i = util.indexOf(arr, css);
            if(i < 0)arr.push(css);
            node.className = arr.join(' ');
        }
        ,rmCss: function(node, css){
            if(!node)return;
            var cn = node.className || '', arr = cn.split(' '), i = util.indexOf(arr, css);
            if(i >= 0)arr.splice(i, 1);
            node.className = arr.join(' ');
        }
        ,fixEvent: function(evt){
            evt = evt || event; 
            if(!evt.target)evt.target = evt.srcElement;
            if(!evt.keyCode)evt.keyCode = evt.which || evt.charCode;
            if(!evt.pageX){//only for IE
               evt.pageX = evt.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
               evt.pageY = evt.clientY + document.body.scrollTop + document.documentElement.scrollTop;
            }
            return evt;
        }
    };
 
    
 
    window.ICropper = function (container, options){
        // summary:
        //  Constructor of the Image Cropper, the container could be a dom node or id.
 
        container = util.byId(container);
        for(var p in options){
            if(options[p])this[p] = options[p];
        }
        this.domNode = container || util.create('div');
        this._init();
    }
 
    ICropper.prototype = {
 
        //The image url
        image: ''
 
        //The minimal size of the cropping area
        ,minWidth: 200
        ,minHeight: 200
 
        //The default gap between crop region border and container border
        ,gap: 50
 
        //the initial crop region width and height
        ,initialSize: 0
 
        //whether to keep crop region as a square
        ,keepSquare: false
 
        //array: the nodes to show previews of cropped image
        ,preview: null
 
        ,domNode: null
        ,cropNode: null
        ,imageNode: null
 
        //Public APIs
        //------------------------------------------------------------
        ,setImage: function(url) {
            // summary:
            //  Set the image to be cropped. The container size will fit the image.
            var img = new Image();
            img.src = url;
            this.image = url;
            if (!this.imageNode) {
                this.imageNode = util.create('img');
                this.domNode.appendChild(this.imageNode);
                var self = this;
                //TODO: onerror?
                this.imageNode.onload = function(){
                    self._setSize(this.offsetWidth, this.offsetHeight);
                }
            }
            this.imageNode.src = url;
        }
 
        ,bindPreview: function(node){
            // summary:
            //  Bind a node as the preview area. e.g: a real size avatar
            node = util.byId(node);
            util.style(node, {overflow: 'hidden'});
            var width = parseInt(util.style(node, 'width'))
                ,height = parseInt(util.style(node, 'height'))
                ;
            var previewImage = util.create('img', {src: this.image});
            node.appendChild(previewImage);
 
            var _oldOnChange = this.onChange;
            this.onChange = function(info){
                _oldOnChange.call(this, info);
                var rateX =  width/info.w
                    ,rateY = height/info.h
                    ;
                util.style(previewImage , {
                    width: info.cw*rateX + 'px'
                    ,height:info.ch*rateY + 'px'
                    ,marginLeft: -info.l*rateX + 'px'
                    ,marginTop: -info.t*rateY + 'px'
                });
            }
        }
 
        ,getInfo: function() {
            // summary:
            //  Get the cropping infomation. Such as being used by server side for real cropping.
            return {
                w: this.cropNode.offsetWidth - 2    //2 is hard code border width
                ,h: this.cropNode.offsetHeight - 2
                ,l: parseInt(util.style(this.cropNode, 'left'))
                ,t: parseInt(util.style(this.cropNode, 'top'))
                ,cw: this.domNode.offsetWidth //container width
                ,ch: this.domNode.offsetHeight //container height
            };
        }
 
        ,onChange: function() {
            //Event:
            //    When the cropping size is changed.
        }
        ,onComplete: function() {
            //Event:
            //    When mouseup.
        }
 
        //Private APIs
        //------------------------------------------------------------
        ,_init: function() {
            util.addCss(this.domNode, 'icropper');
            this._buildRendering();
            this._updateUI();
            util.connect(this.cropNode, 'onmousedown', this, '_onMouseDown');
            util.connect(document, 'onmouseup', this, '_onMouseUp');
            util.connect(document, 'onmousemove', this, '_onMouseMove');
            this.image && this.setImage(this.image);
 
            if(this.preview){
                var self = this;
                util.each(this.preview, function(node){
                    self.bindPreview(node);
                });
            }
        }
 
        ,_buildRendering: function() {
            this._archors = {};
            this._blockNodes = {};
 
            this.cropNode = util.create('div', {className: 'crop-node no-select'});
            this.domNode.appendChild(this.cropNode);
 
            //Create archors
            var arr = ['lt', 't', 'rt', 'r', 'rb', 'b', 'lb', 'l'];
            for (var i = 0; i < 8; i++) {
                var n = util.create('div', {className: 'archor archor-' + arr[i]});
                this.cropNode.appendChild(n);
                this._archors[arr[i]] = n;
            }
 
            //Create blocks for showing dark areas
            arr = ['l', 't', 'r', 'b'];
            for (var i = 0; i < 4; i++) {
                var n = util.create('div', {className: 'block block-' + arr[i]});
                this.domNode.appendChild(n);
                this._blockNodes[arr[i]] = n;
            }
        }
 
        ,_setSize: function(w, h) {
 
            this.domNode.style.width = w + 'px';
            this.domNode.style.height = h + 'px';
 
            var w2, h2;
            if (this.initialSize) {
                var m = Math.min(w, h, this.initialSize);
                w2 = h2 = m - 2 + 'px';
            }else{
                w2 = w - this.gap * 2 - 2;
                h2 = h - this.gap * 2 - 2;
                if(this.keepSquare){
                    w2 = h2 = Math.min(w2, h2);
                }
                w2 += 'px';
                h2 += 'px';
            }
 
            var s = this.cropNode.style;
            s.width = w2;
            s.height = h2;
 
            var l = (w - this.cropNode.offsetWidth) / 2
                ,t = (h - this.cropNode.offsetHeight) / 2;
 
            if (l < 0) l = 0;
            if (t < 0) t = 0;
 
            s.left = l + 'px';
            s.top = t + 'px';
     
            this._posArchors();
            this._posBlocks();
            this.onChange(this.getInfo());
        }
 
        ,_updateUI: function() {
            this._posArchors();
            this._posBlocks();
        }
 
        ,_posArchors: function() {
            var a = this._archors,
                w = this.cropNode.offsetWidth,
                h = this.cropNode.offsetHeight;
            w = w / 2 - 4 + 'px';
            h = h / 2 - 4 + 'px';
            a.t.style.left = a.b.style.left = w;
            a.l.style.top = a.r.style.top = h;
        }
 
        ,_posBlocks: function() {
            var p = this.startedPos,
                b = this._blockNodes;
            var l = parseInt(util.style(this.cropNode, 'left'));
            var t = parseInt(util.style(this.cropNode, 'top'));
            var w = this.cropNode.offsetWidth;
            var ww = this.domNode.offsetWidth;
            var h = this.cropNode.offsetHeight;
            var hh = this.domNode.offsetHeight;
 
            b = this._blockNodes;
            b.t.style.height = b.l.style.top = b.r.style.top = t + 'px';
 
            b.l.style.height = b.r.style.height = h + 'px';
            b.l.style.width = l + 'px';
 
 
            w = ww - w - l;
            h = hh - h - t;
 
            //fix IE
            if(w < 0)w = 0;
            if(h < 0)h = 0;
 
            b.r.style.width = w + 'px';
            b.b.style.height = h + 'px';
        }
 
        ,_onMouseDown: function(e) {
            var n = this.cropNode, s = n.style;
            this.dragging = (e.target == n) ? 'move' : e.target.className;
            if(this.dragging != 'move'){
                var arr = this.dragging.split(' ');
                this.dragging = arr.pop().split('-')[1];
            }
 
            this.startedPos = {
                x: e.pageX
                ,y: e.pageY
                ,h: n.offsetHeight - 2 //2 is border width
                ,w: n.offsetWidth - 2
                ,l: parseInt(util.style(n, 'left'))
                ,t: parseInt(util.style(n, 'top'))
            }
            var c = util.style(e.target, 'cursor');
            util.style(document.body, {
                cursor: c
            });
            util.style(this.cropNode, {
                cursor: c
            });
            util.addCss(document.body, 'no-select');
            util.addCss(document.body, 'unselectable');//for IE
        }
 
        ,_onMouseUp: function(e) {
            this.dragging = false;
            util.style(document.body, {
                cursor: 'default'
            });
            util.style(this.cropNode, {
                cursor: 'move'
            });
            util.rmCss(document.body, 'no-select');
            util.rmCss(document.body, 'unselectable');
            this.onComplete && this.onComplete(this.getInfo());
        }
 
        ,_onMouseMove: function(e) {
            if (!this.dragging) return;
 
            if (this.dragging == 'move') this._doMove(e);
            else this._doResize(e);
            this._updateUI();
            this.onChange && this.onChange(this.getInfo());
        }
 
        ,_doMove: function(e) {
            var s = this.cropNode.style,
                p0 = this.startedPos;
            var l = p0.l + e.pageX - p0.x;
            var t = p0.t + e.pageY - p0.y;
            if (l < 0) l = 0;
            if (t < 0) t = 0;
            var maxL = this.domNode.offsetWidth - this.cropNode.offsetWidth;
            var maxT = this.domNode.offsetHeight - this.cropNode.offsetHeight;
            if (l > maxL) l = maxL;
            if (t > maxT) t = maxT;
            s.left = l + 'px';
            s.top = t + 'px'
        }
        
        ,_doResize: function(e) {
            var m = this.dragging
                ,s = this.cropNode.style
                ,cw = this.cropNode.offsetWidth
                ,ch = this.cropNode.offsetHeight
                ,p0 = this.startedPos
                ;
            //delta x and delta y
            var dx = e.pageX - p0.x,
                dy = e.pageY - p0.y;
 
            if (this.keepSquare || e.shiftKey) {
                if (m == 'l') {
                    dy = dx;
                    if (p0.l + dx < 0) dx = dy = -p0.l;
                    if (p0.t + dy < 0) dx = dy = -p0.t;
                    m = 'lt';
                } else if (m == 'r') {
                    dy = dx;
                    m = 'rb';
                } else if (m == 'b') {
                    dx = dy;
                    m = 'rb';
                } else if (m == 'lt') {
                    dx = dy = Math.abs(dx) > Math.abs(dy) ? dx : dy;
                    if (p0.l + dx < 0) dx = dy = -p0.l;
                    if (p0.t + dy < 0) dx = dy = -p0.t;
                } else if (m == 'lb') {
                    dy = -dx;
                    if (p0.l + dx < 0) {
                        dx = -p0.l;
                        dy = p0.l;
                    }
                } else if (m == 'rt' || m == 't') {
                    dx = -dy;
                    m = 'rt';
                    if (p0.t + dy < 0) {
                        dy = -p0.t;
                        dx = -dy;
                    }
                }
            }
            if (/l/.test(m)) {
                dx = Math.min(dx, p0.w - this.minWidth);
                if (p0.l + dx >= 0) {
                    
                    s.left = p0.l + dx + 'px';
                    s.width = p0.w - dx + 'px';
                    
                } else {
                    s.left = 0;
                    s.width = p0.l + p0.w + 'px';
                }
            }
            if (/t/.test(m)) {
                dy = Math.min(dy, p0.h - this.minHeight);
                if (p0.t + dy >= 0) {
                    s.top = p0.t + dy + 'px';
                    s.height = p0.h - dy + 'px';
                } else {
                    s.top = 0;
                    s.height = p0.t + p0.h + 'px';
                }
            }
            if (/r/.test(m)) {
                dx = Math.max(dx, this.minWidth - p0.w);
                if (p0.l + p0.w + dx <= this.domNode.offsetWidth) {
                    s.width = p0.w + dx + 'px';
                } else {
                    s.width = this.domNode.offsetWidth - p0.l - 2 + 'px';
                }
            }
            if (/b/.test(m)) {
                dy = Math.max(dy, this.minHeight - p0.h);
                if (p0.t + p0.h + dy <= this.domNode.offsetHeight) {
                    s.height = p0.h + dy + 'px';
                } else {
                    s.height = this.domNode.offsetHeight - p0.t - 2 + 'px';
                }
            }
 
            if (this.keepSquare || e.shiftKey) {
                var min = Math.min(parseInt(s.width), parseInt(s.height));
                s.height = s.width = min + 'px';
            }
        }
 
        ,destroy: function(){
            //TODO: destroy self to release memory
            
        }
    }
})();
CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.icropper {
    position: relative;
}
 
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
 
.icropper .crop-node {
    /*blank bg image for IE*/
    background-image: url('data:image/gif;base64,R0lGODlhMgAyAIAAAAAAAP///yH5BAEHAAEALAAAAAAyADIAAAIzjI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8YhMKicFADs=');
    border: 1px dotted #999;
    position: absolute;
    z-index: 8;
    left:0;
    top: 0;
    cursor: move;
}
 
.icropper .archor{
    width: 5px;
    height: 5px;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 10;
}
.icropper .archor-lt    {   cursor: nw-resize; left:-4px; top: -4px;}
.icropper .archor-t     {   cursor: s-resize; top: -4px; }
.icropper .archor-rt    {   cursor: ne-resize; right: -4px; top: -4px;}
.icropper .archor-r     {   cursor: e-resize; right: -4px;}
.icropper .archor-rb    {   cursor: se-resize; right: -4px; bottom: -4px;}
.icropper .archor-b     {   cursor: s-resize; bottom: -4px;}
.icropper .archor-lb    {   cursor: sw-resize; left: -4px; bottom: -4px;}
.icropper .archor-l     {   cursor: e-resize; left: -4px;}
 
.icropper .block    {    
    position: absolute; 
    opacity:0.5;
    z-index: 5;
    background-color: #000;
 
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* IE 5-7 */
    filter: alpha(opacity=50);
}
.icropper .block-l  {    left: 0; }
.icropper .block-t  {    top: 0; width: 100%; }
.icropper .block-r  {    right: 0; }
.icropper .block-b  {    bottom: 0; width: 100%; }
 
.icropper img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
как эту выделенную часть сохранить?
0
cpp_developer
Эксперт
20123 / 5690 / 1417
Регистрация: 09.04.2010
Сообщений: 22,546
Блог
28.07.2013, 20:26
Ответы с готовыми решениями:

Загрузка аватарок как в Вконтакте. Где можно найти пример?
Привет всем! Делаю сайт для практики на локалке. И тут наступило время загрузок аватарок. Хочу сделать по типу загрузил фото -&gt;...

как сохранить две копии аватарок?
Привет всем. У меня есть загрузка аватара он автоматически растягивает изображение и сохраняет под нужным названием, но сейчас понадобилось...

Загрузка музыки с ВКонтакте
Привет, форумчане :) Не так давно решил вбить в Google запрос, о загрузке музыки с популярной социальной сети ВКонтакте (ну лень мне...

1
супермизантроп
Эксперт JS
3941 / 2979 / 692
Регистрация: 18.04.2012
Сообщений: 8,629
29.07.2013, 00:10
javascript'ом - никак

этот ваш код должен передать на сервер всю картинку целиком и координаты выделенной области,
и уже там, на сервере, программа на серверном языке (типа PHP, Perl...) должна обработать исходную картинку
и по полученным координатам создать новую (обрезанную) картинку, коя и сохраняется на сервере
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
raxper
Эксперт
30234 / 6612 / 1498
Регистрация: 28.12.2010
Сообщений: 21,154
Блог
29.07.2013, 00:10
Помогаю со студенческими работами здесь

Загрузка аватарки вконтакте xNet
Всем привет, можете подсказать как на c# загрузить аватарку в вк(желательно используя библиотеку xNet) если есть другие способы,...

Загрузка фотографии на сервер Вконтакте API
Хочу отправить фотографию сообщением но тут sil:=idHTTP.Id_HTTPMethodPOST(sil,post); выдает ошибку: Unit1.pas(239): E2066 Missing...

Загрузка фото Вконтакте C# с авторизацией через oauth+api.vkontakte
Всем привет, прошу помощи, т.к. мозги уже кипят, и какие маны курить уже не знаю. Есть внешнее desktop приложение на C# с авторизацией...

API Вконтакте и загрузка большого количества фотографий (Desktop App)
Задача: необходимо загружать в альбомы группы большое количество фотографий с использованием API (например: 5 альбомов и в каждый по 2000...

Загрузка и публикация предварительно скачанного изображения с текстом в группу вконтакте
надо сделать php-скрипт, чтобы он публиковал картинку с текстом (предварительно закачав ее с site.ru/kartinka.png) в группу вконтакте. ...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
2
Ответ Создать тему
Новые блоги и статьи
Access
VikBal 11.12.2025
Помогите пожалуйста !! Как объединить 2 одинаковые БД Access с разными данными.
Новый ноутбук
volvo 07.12.2025
Всем привет. По скидке в "черную пятницу" взял себе новый ноутбук Lenovo ThinkBook 16 G7 на Амазоне: Ryzen 5 7533HS 64 Gb DDR5 1Tb NVMe 16" Full HD Display Win11 Pro
Музыка, написанная Искусственным Интеллектом
volvo 04.12.2025
Всем привет. Некоторое время назад меня заинтересовало, что уже умеет ИИ в плане написания музыки для песен, и, собственно, исполнения этих самых песен. Стихов у нас много, уже вышли 4 книги, еще 3. . .
От async/await к виртуальным потокам в Python
IndentationError 23.11.2025
Армин Ронахер поставил под сомнение async/ await. Создатель Flask заявляет: цветные функции - провал, виртуальные потоки - решение. Не threading-динозавры, а новое поколение лёгких потоков. Откат?. . .
Поиск "дружественных имён" СОМ портов
Argus19 22.11.2025
Поиск "дружественных имён" СОМ портов На странице: https:/ / norseev. ru/ 2018/ 01/ 04/ comportlist_windows/ нашёл схожую тему. Там приведён код на С++, который показывает только имена СОМ портов, типа,. . .
Сколько Государство потратило денег на меня, обеспечивая инсулином.
Programma_Boinc 20.11.2025
Сколько Государство потратило денег на меня, обеспечивая инсулином. Вот решила сделать интересный приблизительный подсчет, сколько государство потратило на меня денег на покупку инсулинов. . . .
Ломающие изменения в C#.NStar Alpha
Etyuhibosecyu 20.11.2025
Уже можно не только тестировать, но и пользоваться C#. NStar - писать оконные приложения, содержащие надписи, кнопки, текстовые поля и даже изображения, например, моя игра "Три в ряд" написана на этом. . .
Мысли в слух
kumehtar 18.11.2025
Кстати, совсем недавно имел разговор на тему медитаций с людьми. И обнаружил, что они вообще не понимают что такое медитация и зачем она нужна. Самые базовые вещи. Для них это - когда просто люди. . .
Создание Single Page Application на фреймах
krapotkin 16.11.2025
Статья исключительно для начинающих. Подходы оригинальностью не блещут. В век Веб все очень привыкли к дизайну Single-Page-Application . Быстренько разберем подход "на фреймах". Мы делаем одну. . .
Фото: Daniel Greenwood
kumehtar 13.11.2025
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2025, CyberForum.ru