Questions tagged [skew]

382 questions
3
votes
1 answer

Skew vs Partition in Hive

After going through Skewed tables in Hive, I got confused with the way the data is stored for Skewed tables and the way it is treated for partitioned tables. Can someone clearly state the differences with marked examples as to where these two…
NeoWelkin
  • 332
  • 1
  • 3
  • 12
3
votes
0 answers

Firefox skew blurring issue

I am using the following transform code to skew an element that I am absolutely positioning after my header tag. The codepen shows the complete code... codepen.io -webkit-transform: skewX(35deg); transform: skewX(35deg); -webkit-transform-origin:…
Wil
  • 31
  • 1
3
votes
3 answers

Skew a button one side whitout changing the HTML

how can I skew a button on one side but without changing the HTML I want to use the code like a Bootstrap button BUTTON It should look like this picture: Button example Thanks a lot for the help
wsd
  • 31
  • 3
3
votes
2 answers

(CSS) skew img frame without distorting image

I'm making a website that contains many skewed elements, like this: This isn't too bad, there are CSS transforms that could skew it. But how about this: The image isn't distorted, just the frame is cropped in a skewed way. What's the easiest/best…
Mirror318
  • 11,875
  • 14
  • 64
  • 106
3
votes
1 answer

C# skew text on image using GraphicsPath

I'm currently adding text to an image using the following code: using (GraphicsPath graphicsPath = new GraphicsPath()) { graphicsPath.AddString( "sample text", new FontFamily("Times New Roman"), (int)FontStyle.Bold, …
William Troup
  • 12,739
  • 21
  • 70
  • 98
3
votes
2 answers

Creating a Skew AngleY from a Skew Factor for a Rhomboid in XAML

I'm not sure if this is possible, but basically I have two degrees that will change the width/size and skew of an image. In a tranformation matrix (), it works like this: M11:cos(x) M12:sin(y)*sin(x) M11:0 M21:0 …
Todd Main
  • 28,951
  • 11
  • 82
  • 146
3
votes
1 answer

Skew image over one vertical side

I am trying to "skew" an image on the left side, by 10%. This way it looks as if it is turned a bit. I thought the easiest way of doiing this is create a custom "skewedimageview" which extends ImageView and with an overriden setFrame method. So to…
Jasper
  • 2,389
  • 4
  • 25
  • 40
3
votes
2 answers

CSS3 skew all corners

I'm trying to skew my menu items like this: I've found a few solution that will let me skew all 4 corners but they use a border-top solution whilst I need to use a background-image solution because of the gradient. Does anybody know how to do this?
3
votes
1 answer

Skew a paragraph in css but keep each line left justified

I'm trying to skew some text that sits within a div, which is all nice a straight forward, but I am trying to find a way to keep each line completely left justified to one side of the div, as currently the first few lines sit in so many pixels and…
Cheg
  • 45
  • 5
3
votes
2 answers

CSS what value does Canvas Skew use in setTransform?

http://www.w3schools.com/tags/canvas_settransform.asp context.setTransform(a,b,c,d,e,f); W3C schools says "Skew the the drawings horizontally", but which value does it use? It seems it's not degrees like the CSS skews things, and neither does it use…
Camathon
  • 514
  • 2
  • 5
  • 22
3
votes
1 answer

CSS Skew Jagged Edges on iPad

I have a site that uses CSS skews extensively as part of the design. Using backface-visibility solved the jagged edge problem, except for on iPad. In every other webkit browser, iphone included, the edges are smooth, but for some reason iPad is not…
briteweb
  • 275
  • 1
  • 3
  • 12
3
votes
1 answer

How can I get two parallelograms to overlap perfectly and resize dynamically in HTML?

I've just begun to get into HTML and CSS, and I'm wanting to create a design that involves parallelograms and resizes dynamically. I want four parallelograms, each starting from the top then going to 25%, 50%, 75%, and 100%, and overlapping. The…
andrewb
  • 5,200
  • 6
  • 36
  • 54
3
votes
2 answers

Deskewing MNIST dateset

I'm currently working on the digit handwritten recognition problem. I found that many state-of -art algorithms adopt some preprocessing methods to the mnist dateset, such as deskewing and jittering (I don't know what 'jittering' is). I googled for a…
Nothing More
  • 873
  • 12
  • 29
3
votes
3 answers

How to evaluate a dataset for class overlapping

I'm using Weka to develop a classifier for a medical problem. This dataset has a class imbalance situation and I want to know if there is also a problem of class overlapping. Each record has 30 attributes, how can I discover if there is class…
Titus Pullo
  • 3,751
  • 15
  • 45
  • 65
2
votes
2 answers

Skew or Distort Image object in Java

Is it possible to skew or distort an Image object in Java? I 'pull' one side of an image out, making it seem closer to me. (LIke 3D). Any suggestions?
Hidde
  • 11,493
  • 8
  • 43
  • 68